/* ===================================
   Coach Light Restaurant — Styles
   Classic & Elegant Burgundy + Blush
   =================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --burgundy: #6B1D2A;
    --burgundy-dark: #4A1219;
    --burgundy-light: #8B2E3D;
    --blush: #F2D5D0;
    --blush-light: #F9EAE6;
    --blush-dark: #E8C4BE;
    --cream: #FDF8F6;
    --white: #FFFFFF;
    --charcoal: #2C2424;
    --warm-gray: #5C4F4F;
    --light-gray: #9E8E8E;
    --gold: #C9A96E;
    --gold-light: #D4BA8A;

    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', 'Helvetica Neue', Arial, sans-serif;

    --nav-height: 80px;
    --section-padding: 6rem;
    --container-max: 1200px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ---------- Container ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---------- Section Base ---------- */
.section {
    padding: var(--section-padding) 0;
}

.section--light {
    background-color: var(--cream);
}

.section--white {
    background-color: var(--white);
}

.section--burgundy {
    background-color: var(--burgundy);
}

.section--blush {
    background-color: var(--blush-light);
}

.section--map {
    padding: 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header--center {
    text-align: center;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.section-eyebrow--light {
    color: var(--blush);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
}

.section-title--light {
    color: var(--white);
}

.section-body {
    font-size: 1.05rem;
    color: var(--warm-gray);
    line-height: 1.8;
    max-width: 640px;
}

.section-body--light {
    color: var(--blush-dark);
}

.text-center {
    text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn--primary {
    background-color: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

.btn--primary:hover {
    background-color: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 29, 42, 0.3);
}

.btn--ghost {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--ghost:hover {
    background-color: var(--white);
    color: var(--burgundy);
    transform: translateY(-2px);
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(253, 248, 246, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(107, 29, 42, 0.1);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(44, 36, 36, 0.1);
}

.nav__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--burgundy);
}

.nav__logo-icon {
    color: var(--burgundy);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav__link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--warm-gray);
    transition: color 0.3s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--burgundy);
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: var(--burgundy);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background-color: var(--burgundy);
    color: var(--white) !important;
    padding: 0.6rem 1.25rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background-color: var(--burgundy-dark);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--charcoal);
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(44, 36, 36, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav__overlay.active {
    display: block;
    opacity: 1;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--charcoal);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 36, 36, 0.65) 0%,
        rgba(107, 29, 42, 0.55) 50%,
        rgba(44, 36, 36, 0.75) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    color: var(--white);
}

.hero__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 1.5rem;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero__subheadline {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--blush-light);
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--blush);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
    animation: bobble 2s ease-in-out infinite;
}

@keyframes bobble {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- About ---------- */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__image-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(107, 29, 42, 0.15);
}

.about__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__content {
    padding: 1rem 0;
}

.about__content .section-body {
    margin-bottom: 1.5rem;
}

.about__features {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
}

.about__feature-icon {
    color: var(--burgundy);
}

/* ---------- Experience ---------- */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.experience-card {
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.experience-card__img {
    overflow: hidden;
    aspect-ratio: 5/3.8;
}

.experience-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-card:hover .experience-card__img img {
    transform: scale(1.05);
}

.experience-card__body {
    padding: 2rem;
}

.experience-card__title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.experience-card__text {
    font-size: 0.95rem;
    color: var(--blush-dark);
    line-height: 1.7;
}

/* ---------- Menu ---------- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-category {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(107, 29, 42, 0.08);
    border: 1px solid rgba(107, 29, 42, 0.08);
}

.menu-category__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--blush);
}

.menu-list {
    list-style: none;
}

.menu-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(107, 29, 42, 0.08);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item__name {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.menu-item__desc {
    font-size: 0.85rem;
    color: var(--light-gray);
    font-style: italic;
}

.menu-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--light-gray);
    font-style: italic;
}

/* ---------- Gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* ---------- Visit ---------- */
.visit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.visit__details {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visit__detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.visit__detail-icon {
    color: var(--burgundy);
    flex-shrink: 0;
    margin-top: 2px;
}

.visit__detail strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.visit__detail p {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

.visit__detail a:hover {
    color: var(--burgundy);
    text-decoration: underline;
}

.visit__hours {
    background-color: var(--burgundy);
    border-radius: 8px;
    padding: 3rem;
    color: var(--white);
}

.visit__hours-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(242, 213, 208, 0.3);
}

.hours-list {
    list-style: none;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(242, 213, 208, 0.15);
    font-size: 0.95rem;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item__day {
    color: var(--blush-light);
    font-weight: 500;
}

.hours-item__time {
    color: var(--white);
    font-weight: 400;
}

.hours-note {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--blush-dark);
    font-style: italic;
}

/* ---------- Map ---------- */
.map-wrap {
    width: 100%;
    min-height: 400px;
}

.map-wrap iframe {
    width: 100%;
    height: 400px;
    filter: saturate(0.7) contrast(1.05);
}

/* ---------- Footer ---------- */
.footer {
    background-color: var(--charcoal);
    color: var(--blush-dark);
    padding: 4rem 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(242, 213, 208, 0.15);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer__tagline {
    font-size: 0.9rem;
    color: var(--light-gray);
    line-height: 1.6;
}

.footer__contact p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer__contact a {
    color: var(--blush-dark);
    transition: color 0.3s ease;
}

.footer__contact a:hover {
    color: var(--white);
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__nav a {
    font-size: 0.9rem;
    color: var(--light-gray);
    transition: color 0.3s ease;
}

.footer__nav a:hover {
    color: var(--white);
}

.footer__bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--light-gray);
}

/* ---------- Scroll Reveal (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    :root {
        --section-padding: 4.5rem;
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3.5rem;
        --nav-height: 70px;
    }

    .nav__toggle {
        display: flex;
        z-index: 1001;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 1000;
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__link {
        font-size: 1rem;
    }

    .hero__headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about__image-wrap {
        max-height: 400px;
    }

    .about__features {
        flex-wrap: wrap;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .visit {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero__actions {
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
