/* ==========================================================================
   Atrium Restaurant - Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
    --color-cream: #FBF7F0;
    --color-warm-white: #FEFDFB;
    --color-terracotta: #C4704F;
    --color-terracotta-dark: #A85A3C;
    --color-olive: #5C6B4A;
    --color-olive-light: #7A8B66;
    --color-charcoal: #2C2C2C;
    --color-warm-gray: #6B6460;
    --color-gold: #C9A96E;
    --color-gold-light: #E0C992;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    
    --shadow-soft: 0 4px 20px rgba(44, 44, 44, 0.08);
    --shadow-medium: 0 8px 40px rgba(44, 44, 44, 0.12);
    --shadow-strong: 0 16px 60px rgba(44, 44, 44, 0.16);
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   Navigation - FIXED: Now transparent at top with white text
   -------------------------------------------------------------------------- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: var(--transition-smooth);
}

/* Scrolled state - solid background */
nav.scrolled {
    background: rgba(251, 247, 240, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    padding: 1rem 4rem;
}

/* Logo - white when at top, dark when scrolled */
.logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-warm-white);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

nav.scrolled .logo {
    color: var(--color-charcoal);
    text-shadow: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

/* Nav links - white when at top, dark when scrolled */
.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    letter-spacing: 0.02em;
    position: relative;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

nav.scrolled .nav-links a {
    color: var(--color-warm-gray);
    text-shadow: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-warm-white);
    transition: var(--transition-smooth);
}

nav.scrolled .nav-links a::after {
    background: var(--color-terracotta);
}

.nav-links a:hover {
    color: var(--color-warm-white);
}

nav.scrolled .nav-links a:hover {
    color: var(--color-terracotta);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-warm-white);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

nav.scrolled .mobile-menu-btn span {
    background: var(--color-charcoal);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(44, 44, 44, 0.4) 0%,
        rgba(44, 44, 44, 0.2) 50%,
        rgba(196, 112, 79, 0.2) 100%
    );
}

.hero-content {
    text-align: center;
    color: var(--color-warm-white);
    z-index: 1;
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.1em;
    opacity: 0.95;
    margin-bottom: 3rem;
}

.hero-cta {
    display: inline-flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--color-terracotta);
    color: var(--color-warm-white);
}

.btn-primary:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 112, 79, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--color-warm-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-warm-white);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-warm-white);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Section Styling
   -------------------------------------------------------------------------- */
section {
    padding: 8rem 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

.section-header .subtitle {
    font-size: 1rem;
    color: var(--color-warm-gray);
    letter-spacing: 0.05em;
}

.decorative-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-terracotta), var(--color-gold));
    margin: 1.5rem auto;
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about {
    background: var(--color-warm-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: var(--shadow-strong);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-gold);
    z-index: -1;
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--color-charcoal);
}

.about-text p {
    font-size: 1.05rem;
    color: var(--color-warm-gray);
    margin-bottom: 1.5rem;
}

.about-signature {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-terracotta);
    margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   Cuisines Section
   -------------------------------------------------------------------------- */
.cuisines {
    background: var(--color-cream);
}

.cuisines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.cuisine-card {
    position: relative;
    height: 550px;
    overflow: hidden;
    cursor: pointer;
}

.cuisine-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.cuisine-card:hover img {
    transform: scale(1.08);
}

.cuisine-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(44, 44, 44, 0.9) 0%,
        rgba(44, 44, 44, 0.3) 50%,
        rgba(44, 44, 44, 0.1) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.cuisine-card:hover .cuisine-overlay {
    background: linear-gradient(
        to top,
        rgba(196, 112, 79, 0.9) 0%,
        rgba(44, 44, 44, 0.4) 60%,
        rgba(44, 44, 44, 0.2) 100%
    );
}

.cuisine-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cuisine-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-warm-white);
    margin-bottom: 0.75rem;
}

.cuisine-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Menu Section
   -------------------------------------------------------------------------- */
.menu {
    background: var(--color-charcoal);
    color: var(--color-warm-white);
}

.menu .section-header h2 {
    color: var(--color-warm-white);
}

.menu .section-header .subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 0.75rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--color-terracotta);
    border-color: var(--color-terracotta);
    color: var(--color-warm-white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item-info {
    flex: 1;
    padding-right: 2rem;
}

.menu-item h4 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.menu-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.menu-item .price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-gold);
    white-space: nowrap;
}

.menu-item .dietary {
    display: inline-flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.menu-item .dietary span {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    background: rgba(92, 107, 74, 0.3);
    color: var(--color-olive-light);
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.menu-section {
    display: none;
}

.menu-section.active {
    display: grid;
}

.menu-note {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.menu-note h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.menu-note p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------------------------------
   Full Menu Accordion
   -------------------------------------------------------------------------- */
.full-menu-container {
    max-width: 1200px;
    margin: 4rem auto 0;
}

.full-menu-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-expand,
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-expand {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-warm-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-expand:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-gold);
}

.btn-expand.active {
    background: var(--color-terracotta);
    border-color: var(--color-terracotta);
}

.btn-expand .btn-icon {
    transition: transform 0.3s ease;
}

.btn-expand.active .btn-icon {
    transform: rotate(180deg);
}

.btn-download {
    background: var(--color-gold);
    color: var(--color-charcoal);
}

.btn-download:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.35);
}

.full-menu-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.full-menu-content.open {
    max-height: 15000px;
}

.full-menu-inner {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    margin-top: 1rem;
}

.full-menu-category {
    margin-bottom: 2.5rem;
}

.full-menu-category:last-child {
    margin-bottom: 0;
}

.full-menu-category h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.category-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-bottom: 1.25rem;
    padding-left: 0.5rem;
}

.full-menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 3rem;
}

.full-menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.35rem 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.item-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-warm-white);
    grid-column: 1;
    grid-row: 1;
}

.item-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    grid-column: 1;
    grid-row: 2;
}

.item-price {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--color-gold);
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    white-space: nowrap;
}

/* Responsive Full Menu */
@media (max-width: 1024px) {
    .full-menu-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .full-menu-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-expand,
    .btn-download {
        justify-content: center;
    }

    .full-menu-inner {
        padding: 1.5rem;
    }

    .full-menu-item {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .item-price {
        grid-column: 1;
        grid-row: 3;
        justify-self: start;
        margin-top: 0.25rem;
    }
}

/* --------------------------------------------------------------------------
   Daily Specials
   -------------------------------------------------------------------------- */
.specials {
    background: linear-gradient(135deg, var(--color-olive) 0%, #4A5A3A 100%);
    color: var(--color-warm-white);
}

.specials .section-header h2 {
    color: var(--color-warm-white);
}

.specials .section-header .subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.specials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.special-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.special-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.special-card .time {
    font-size: 0.85rem;
    color: var(--color-gold-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.special-card p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.special-card .price-tag {
    display: inline-block;
    margin-top: 1.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-gold-light);
}

/* --------------------------------------------------------------------------
   Events
   -------------------------------------------------------------------------- */
.events {
    background: var(--color-warm-white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.event-card {
    background: var(--color-cream);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.event-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.event-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-charcoal);
}

.event-card .date {
    font-size: 0.85rem;
    color: var(--color-terracotta);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.event-card p {
    font-size: 0.95rem;
    color: var(--color-warm-gray);
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gallery {
    background: var(--color-cream);
    padding: 6rem 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1rem;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(196, 112, 79, 0);
    transition: var(--transition-smooth);
}

.gallery-item:hover::after {
    background: rgba(196, 112, 79, 0.2);
}

/* --------------------------------------------------------------------------
   Catering
   -------------------------------------------------------------------------- */
.catering {
    background: var(--color-charcoal);
    color: var(--color-warm-white);
}

.catering .section-header h2 {
    color: var(--color-warm-white);
}

.catering-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.catering-text h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.catering-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.catering-features {
    list-style: none;
    margin: 2rem 0;
}

.catering-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.catering-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

.catering-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials {
    background: var(--color-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--color-warm-white);
    padding: 3rem;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--color-terracotta);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--color-warm-gray);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author .name {
    font-weight: 500;
    color: var(--color-charcoal);
}

.testimonial-author .stars {
    color: var(--color-gold);
    font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   Info Section
   -------------------------------------------------------------------------- */
.info {
    background: var(--color-warm-white);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--color-charcoal);
}

.info-card p {
    font-size: 1rem;
    color: var(--color-warm-gray);
    margin-bottom: 0.5rem;
}

.info-card .highlight {
    color: var(--color-terracotta);
    font-weight: 500;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.reservation-box {
    background: var(--color-terracotta);
    color: var(--color-warm-white);
    padding: 3rem;
    text-align: center;
}

.reservation-box h3 {
    color: var(--color-warm-white);
}

.reservation-box p {
    color: rgba(255, 255, 255, 0.85);
}

.phone-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-warm-white);
    text-decoration: none;
    display: block;
    margin-top: 1.5rem;
    transition: var(--transition-smooth);
}

.phone-number:hover {
    color: var(--color-gold-light);
}

/* --------------------------------------------------------------------------
   Map
   -------------------------------------------------------------------------- */
.map-container {
    height: 400px;
    background: var(--color-warm-gray);
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) contrast(1.1);
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--color-warm-white);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-medium);
}

.map-overlay h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.map-overlay p {
    font-size: 0.9rem;
    color: var(--color-warm-gray);
}

/* --------------------------------------------------------------------------
   Accessibility Info
   -------------------------------------------------------------------------- */
.accessibility {
    background: var(--color-cream);
    padding: 3rem 4rem;
}

.accessibility-content {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.accessibility-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-warm-gray);
}

.accessibility-item .icon {
    font-size: 1.5rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
footer {
    background: var(--color-charcoal);
    color: var(--color-warm-white);
    padding: 5rem 4rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: var(--color-warm-white);
    display: block;
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-warm-white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--color-terracotta);
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-warm-white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-section ul a:hover {
    color: var(--color-terracotta);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    margin-left: 2rem;
    transition: var(--transition-smooth);
}

.footer-bottom a:hover {
    color: var(--color-warm-white);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .cuisines-grid,
    .events-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 250px);
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 1024px) {
    section {
        padding: 5rem 2rem;
    }

    nav {
        padding: 1rem 2rem;
    }

    .about-content,
    .catering-content,
    .specials-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .cuisines-grid,
    .events-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cuisine-card {
        height: 400px;
    }

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

    .gallery-item,
    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
        height: 250px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
    }

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

    .footer-bottom a {
        margin-left: 0;
        margin: 0 1rem;
    }
}
