.contact-hero {
    width: 100vw;
    height: 100vh;
    background: url("../images/contact_bg.png") center center no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-box {
    background: rgba(243, 233, 208, 0.85);
    padding: 30px 40px;
    border-radius: 12px;
    color: #3a2a1d;
    width: 55%;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
}
.wood-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    background: url("../images/wood_plank.png") center/cover no-repeat;
    color: #F3E9D0;
    font-size: 20px;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 6px;

    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);
}

