/* ============================================
   Burleson Brunch House — Custom Styles
   Deep Navy (#0f1c3f) + Warm Gold (#d4a017)
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #1a1a2e;
    background: #faf8f4;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #0f1c3f;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    z-index: 1000;
    font-weight: 600;
}
.skip-link:focus {
    top: 16px;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 244, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 28, 63, 0.06);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
    background: rgba(250, 248, 244, 0.96);
    box-shadow: 0 2px 24px rgba(15, 28, 63, 0.08);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    color: #0f1c3f;
}
.logo-text {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}
.logo-text-light {
    color: #fff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #0f1c3f;
    position: relative;
    transition: color 0.2s;
}
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a017;
    border-radius: 2px;
    transition: width 0.25s ease;
}
.nav-links a:not(.btn):hover::after {
    width: 100%;
}
.nav-links a:not(.btn):hover {
    color: #b8860b;
}

/* Menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 110;
}
.menu-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #0f1c3f;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #d4a017;
    color: #0f1c3f;
    box-shadow: 0 4px 16px rgba(212, 160, 23, 0.35);
}
.btn-primary:hover {
    background: #c4920f;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 160, 23, 0.45);
}

.btn-gold {
    background: #d4a017;
    color: #0f1c3f;
    padding: 10px 20px;
    font-size: 0.85rem;
}
.btn-gold:hover {
    background: #c4920f;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #0f1c3f;
    border: 2px solid rgba(15, 28, 63, 0.2);
}
.btn-outline:hover {
    border-color: #d4a017;
    color: #b8860b;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: #0f1c3f;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
    background: #f5f0e8;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

/* ---------- HERO ---------- */
.hero {
    padding-top: 72px;
    background: #f5f0e8;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: calc(100vh - 72px);
    padding: 60px 0 0;
}

.hero-content {
    padding-bottom: 48px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 28, 63, 0.07);
    color: #0f1c3f;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-headline {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.1;
    color: #0f1c3f;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-headline em {
    font-style: italic;
    color: #b8860b;
}
.gold-text {
    color: #d4a017;
}

.hero-desc {
    font-size: 1.1rem;
    color: #4a4a5a;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-highlights {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0f1c3f;
}

/* Hero image column */
.hero-image-col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(15, 28, 63, 0.15);
    width: 100%;
    max-width: 540px;
}
.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-float {
    position: absolute;
    bottom: -20px;
    left: -40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(15, 28, 63, 0.18);
    border: 4px solid #f5f0e8;
    max-width: 280px;
}
.hero-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge-card {
    position: absolute;
    top: 24px;
    right: -24px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(15, 28, 63, 0.12);
}
.hero-badge-card strong {
    display: block;
    font-size: 0.9rem;
    color: #0f1c3f;
}
.hero-badge-card span {
    font-size: 0.8rem;
    color: #6b6b7b;
}

/* Hero wave */
.hero-wave {
    margin-top: -1px;
    line-height: 0;
}
.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ---------- SECTION COMMON ---------- */
.section {
    padding: 96px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #d4a017;
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #0f1c3f;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.05rem;
    color: #5a5a6a;
    line-height: 1.7;
}

/* ---------- MENU ---------- */
.menu-section {
    background: #faf8f4;
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.cat-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f1c3f;
    background: transparent;
    border: 2px solid rgba(15, 28, 63, 0.12);
    transition: all 0.25s ease;
}
.cat-btn:hover {
    border-color: #d4a017;
    color: #b8860b;
}
.cat-btn.active {
    background: #0f1c3f;
    border-color: #0f1c3f;
    color: #fff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.menu-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15, 28, 63, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(15, 28, 63, 0.12);
}

.menu-card-img {
    height: 200px;
    overflow: hidden;
}
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.menu-card:hover .menu-card-img img {
    transform: scale(1.05);
}

.menu-card-body {
    padding: 20px 24px 24px;
}
.menu-card-body h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.2rem;
    color: #0f1c3f;
    margin-bottom: 8px;
}
.menu-card-body p {
    font-size: 0.9rem;
    color: #5a5a6a;
    line-height: 1.6;
}

.menu-card.hidden-card {
    display: none;
}

/* ---------- ABOUT ---------- */
.about-section {
    background: #f5f0e8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(15, 28, 63, 0.12);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(15, 28, 63, 0.15);
    border: 4px solid #f5f0e8;
    max-width: 260px;
}
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .section-tag {
    text-align: left;
}

.about-content h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: #0f1c3f;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 1rem;
    color: #4a4a5a;
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 36px;
}

.stat {
    text-align: center;
    padding: 20px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(15, 28, 63, 0.06);
    flex: 1;
}
.stat-number {
    display: block;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: #d4a017;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #0f1c3f;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---------- GALLERY ---------- */
.gallery-section {
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 20px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 28, 63, 0.08);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.tall {
    grid-column: span 4;
    grid-row: span 2;
}
.gallery-item.tall img {
    height: 100%;
}
.gallery-item:nth-child(2) {
    grid-column: span 4;
}
.gallery-item:nth-child(3) {
    grid-column: span 4;
}
.gallery-item:nth-child(4) {
    grid-column: span 6;
}
.gallery-item.short {
    grid-column: span 6;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
    background: #0f1c3f;
    color: #fff;
}
.testimonials-section .section-tag {
    color: #d4a017;
}
.testimonials-section .section-header h2 {
    color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    transition: background 0.3s ease, transform 0.3s ease;
}
.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.author-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}
.author-location {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- CTA ---------- */
.cta-section {
    background: #d4a017;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}
.cta-circle-1 {
    width: 400px;
    height: 400px;
    top: -120px;
    right: -80px;
}
.cta-circle-2 {
    width: 260px;
    height: 260px;
    bottom: -80px;
    left: 10%;
}
.cta-circle-3 {
    width: 140px;
    height: 140px;
    top: 20%;
    left: 5%;
}

.cta-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
}

.cta-tag {
    color: #0f1c3f;
}

.cta-content h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #0f1c3f;
    line-height: 1.15;
    margin: 16px 0 20px;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(15, 28, 63, 0.75);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ---------- VISIT ---------- */
.visit-section {
    background: #faf8f4;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visit-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(15, 28, 63, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.visit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(15, 28, 63, 0.1);
}

.visit-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(212, 160, 23, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f1c3f;
    margin-bottom: 6px;
}

.visit-card p {
    font-size: 0.9rem;
    color: #5a5a6a;
    line-height: 1.65;
}
.visit-card a {
    color: #d4a017;
    font-weight: 600;
    transition: color 0.2s;
}
.visit-card a:hover {
    color: #b8860b;
}

.visit-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15, 28, 63, 0.1);
    min-height: 400px;
}

/* ---------- FOOTER ---------- */
.footer {
    background: #0a1429;
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #d4a017;
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 8px;
}
.footer-contact a {
    color: #d4a017;
    transition: color 0.2s;
}
.footer-contact a:hover {
    color: #f0c040;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- MOBILE NAV OVERLAY ---------- */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 28, 63, 0.5);
    backdrop-filter: blur(4px);
    z-index: 90;
}
.nav-overlay.active {
    display: block;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-content {
        order: 1;
    }
    .hero-image-col {
        order: 2;
        max-width: 480px;
        margin: 0 auto;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-highlights {
        justify-content: center;
    }
    .hero-img-float {
        left: -16px;
        bottom: -12px;
    }
    .hero-badge-card {
        right: -12px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .about-img-secondary {
        right: -16px;
        bottom: -20px;
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #faf8f4;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        box-shadow: -8px 0 32px rgba(15, 28, 63, 0.12);
        transition: right 0.35s ease;
        z-index: 100;
        padding: 24px;
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links a {
        font-size: 1.1rem;
    }
    .menu-toggle {
        display: flex;
    }

    .hero {
        padding-top: 72px;
    }
    .hero-container {
        padding: 40px 0 0;
        min-height: auto;
    }
    .hero-img-float {
        display: none;
    }
    .hero-badge-card {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 16px;
        align-self: flex-start;
    }

    .section {
        padding: 64px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item.tall {
        grid-column: span 2;
        grid-row: span 1;
    }
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3) {
        grid-column: span 1;
    }
    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }
    .gallery-item.short {
        grid-column: span 2;
    }
    .gallery-item {
        height: 200px;
    }
    .gallery-item.tall {
        height: 280px;
    }

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

    .about-stats {
        flex-direction: column;
        gap: 16px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero-headline {
        font-size: 2.2rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .menu-categories {
        gap: 8px;
    }
    .cat-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
