/* Smooth scroll + anchor offset */
html {
    scroll-behavior: smooth;
}

/* Section offset (keeps section headings below fixed navbar) */
.contact-section {
    scroll-margin-top: var(--nav-h, 96px);
}

/* NEW: land exactly at the form, below the fixed navbar on mobile/desktop */
#contact-form {
    scroll-margin-top: calc(var(--nav-h, 96px) + 16px);
}

/* ============ HERO ============ */
.contact-hero {
    position: relative;
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.45)), url('../images/dishes10.png') center / cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

    .contact-hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        margin: 0;
    }

    .contact-hero p {
        font-size: 1.2rem;
        margin-top: 1rem;
    }

/* CTA button */
.cta-scroll {
    display: inline-block;
    margin-top: 1rem;
    background: linear-gradient(180deg, #e6d386, #caa94b);
    color: #1e1e1e;
    font-weight: 700;
    text-decoration: none;
    padding: .8rem 1.3rem;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.35);
    transition: transform .15s ease, box-shadow .2s ease;
}

    .cta-scroll:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.45);
    }

/* Little chevron */
.scroll-chevron {
    display: block;
    width: 16px;
    height: 16px;
    margin: 10px auto 0;
    border-right: 2px solid rgba(255,255,255,.9);
    border-bottom: 2px solid rgba(255,255,255,.9);
    transform: rotate(45deg);
    animation: chevron 1.8s infinite;
    opacity: .9;
}

@keyframes chevron {
    0% {
        transform: translateY(0) rotate(45deg);
        opacity: .9;
    }

    50% {
        transform: translateY(6px) rotate(45deg);
        opacity: .5;
    }

    100% {
        transform: translateY(0) rotate(45deg);
        opacity: .9;
    }
}

/* ============ CONTACT CONTENT ============ */
.contact-section {
    padding: 4rem 2rem;
    background: #fffaf3;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    font-size: 1.1rem;
    color: #444;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

    .contact-info h2 {
        color: #bfa06c;
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .contact-info a {
        color: #bfa06c;
        text-decoration: none;
    }

.contact-form {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

    .contact-form h2 {
        font-family: 'Playfair Display', serif;
        color: #bfa06c;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 1rem;
        margin-bottom: 1rem;
        border: 1px solid #ccc;
        border-radius: 10px;
        font-size: 1rem;
    }

    .contact-form button {
        background: #bfa06c;
        color: #fff;
        padding: .8rem 1.5rem;
        border: none;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
        transition: background .3s;
    }

        .contact-form button:hover {
            background: #a88b54;
        }

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    margin-top: -2rem;
}

/* ============ MOBILE ============ */
@media (max-width: 768px) {
    .contact-hero {
        height: 100vh;
        min-height: 100svh;
        padding: 2rem 1.25rem;
    }

        .contact-hero h1 {
            font-size: 2.4rem;
        }

        .contact-hero p {
            font-size: 1.05rem;
        }

    .contact-container {
        flex-direction: column;
    }

    .contact-info, .contact-form {
        width: 100%;
        margin-bottom: 2rem;
    }
}

/* Subhead */
.contact-info .subhead {
    margin: 1.25rem 0 .5rem;
    font-size: 1.25rem;
    color: #bfa06c;
    font-weight: 700;
}

/* Info list */
.info-list {
    list-style: none;
    margin: 0 0 .75rem;
    padding: 0;
}

    .info-list li {
        display: grid;
        grid-template-columns: 140px 1fr;
        gap: .5rem;
        padding: .35rem 0;
        border-bottom: 1px solid #f3eee4;
    }

        .info-list li:last-child {
            border-bottom: 0;
        }

    .info-list .label {
        font-weight: 700;
        color: #222;
    }

    .info-list .value a {
        color: #bfa06c;
        text-decoration: none;
    }

        .info-list .value a:hover {
            text-decoration: underline;
        }

/* Hours */
.hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .hours-list li {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 1rem;
        padding: .35rem 0;
        border-bottom: 1px dashed #efe8d9;
    }

        .hours-list li:last-child {
            border-bottom: 0;
        }

    .hours-list .day {
        font-weight: 600;
        color: #222;
    }

    .hours-list .time {
        color: #555;
        font-variant-numeric: tabular-nums;
    }

/* Narrow labels on very small screens */
@media (max-width: 480px) {
    .info-list li {
        grid-template-columns: 110px 1fr;
    }
}
