body {
    margin: 0;
    padding: 0;
    font-family: 'Cormorant Garamond', serif;
}

/* Background image, no zoom cropping */
.about-hero {
    width: 100vw;
    height: 100vh;
    background: url("../images/about2_bg.png") center center no-repeat;
    background-size: cover;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}


/* Text panel */
.about-panel {
    width: 55%;
    background: rgba(243, 233, 208, 0.85);
    padding: 25px 40px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4),
                inset 0 4px 6px rgba(255,255,255,0.25);
}

.about-panel h1 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 36px;
    color: #3a2a1d;
    text-align: center;
}

.about-panel p {
    font-size: 20px;
    line-height: 1.5;
    color: #3a2a1d;
    margin-bottom: 15px;
}

/* Wood button restored */
.wood-btn {
    display: inline-block;
    padding: 12px 28px;
    background: url("../images/wood_plank.png") center/cover no-repeat;
    color: #F3E9D0;
    font-size: 20px;
    text-decoration: none;
    border-radius: 6px;
    letter-spacing: 1px;

    box-shadow:
        0 4px 8px rgba(0,0,0,0.6),
        inset 0 -3px 3px rgba(0,0,0,0.4),
        inset 0 3px 3px rgba(255,255,255,0.15);
    transition: 0.2s;
}

.wood-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 6px 15px rgba(90,150,70,0.6),
        inset 0 -3px 3px rgba(0,0,0,0.5),
        inset 0 3px 3px rgba(255,255,255,0.2);
}

