/* 
   styles.css - Willow & Smoke Kitchen Design System
   Warm, Southern, Wood-Fired, and Approachable Brand Identity
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- Design Tokens / Variables --- */
:root {
    /* Fonts */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-editorial: 'Lora', Georgia, serif;

    /* Color Palette */
    --clr-bg-warm: hsl(36, 35%, 97%);        /* Cream white */
    --clr-bg-warm-dark: hsl(36, 25%, 92%);   /* Subtle warm beige */
    --clr-charcoal: hsl(15, 12%, 12%);        /* Wood charcoal / primary dark */
    --clr-charcoal-light: hsl(15, 10%, 18%);  /* Charcoal accent card */
    --clr-rust: hsl(22, 62%, 40%);            /* Primary accent - Terracotta/Rust */
    --clr-rust-hover: hsl(22, 62%, 33%);      /* Darker rust on hover */
    --clr-rust-light: hsl(22, 60%, 94%);      /* Rust background tint */
    --clr-amber: hsl(38, 60%, 50%);           /* Secondary accent - Glowing Ember */
    --clr-amber-hover: hsl(38, 60%, 42%);     /* Amber hover */
    --clr-text-dark: hsl(15, 20%, 16%);       /* Main body text */
    --clr-text-muted: hsl(15, 10%, 42%);      /* Secondary/muted text */
    --clr-text-light: hsl(36, 35%, 97%);      /* Light text on dark bg */
    --clr-text-light-muted: hsl(36, 20%, 80%);/* Muted text on dark bg */

    /* Shadows & Transitions */
    --shadow-sm: 0 2px 8px rgba(44, 37, 35, 0.06);
    --shadow-md: 0 8px 24px rgba(44, 37, 35, 0.08);
    --shadow-lg: 0 16px 40px rgba(44, 37, 35, 0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    
    /* Layout Dimensions */
    --header-height: 80px;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-warm);
    color: var(--clr-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-quick);
}

ul {
    list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.25;
    color: var(--clr-charcoal);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--clr-rust);
    margin: 1rem auto 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    font-family: var(--font-editorial);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    text-align: center;
    color: var(--clr-text-muted);
    font-style: italic;
    margin-bottom: 3.5rem;
}

/* --- Button Components --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--clr-rust);
    color: var(--clr-text-light);
    box-shadow: 0 4px 14px rgba(176, 94, 39, 0.3);
}

.btn-primary:hover {
    background-color: var(--clr-rust-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(176, 94, 39, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-text-light);
    border: 2px solid var(--clr-text-light);
}

.btn-secondary:hover {
    background-color: var(--clr-text-light);
    color: var(--clr-charcoal);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-rust);
    border: 2px solid var(--clr-rust);
}

.btn-outline:hover {
    background-color: var(--clr-rust);
    color: var(--clr-text-light);
    transform: translateY(-2px);
}

.btn-amber {
    background-color: var(--clr-amber);
    color: var(--clr-text-light);
    box-shadow: 0 4px 14px rgba(201, 122, 52, 0.3);
}

.btn-amber:hover {
    background-color: var(--clr-amber-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 122, 52, 0.4);
}

/* --- Navigation Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    transition: var(--transition-smooth);
    z-index: 1000;
}

.header.scrolled {
    background-color: rgba(251, 250, 247, 0.95);
    height: 70px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
}

.header.scrolled h1, .header.scrolled a {
    color: var(--clr-charcoal);
}

.header-container {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-text-light);
    transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
    border-color: var(--clr-rust);
    height: 40px;
    width: 40px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--clr-text-light);
    transition: var(--transition-smooth);
}

.header.scrolled .logo-text {
    color: var(--clr-charcoal);
}

.nav-container {
    margin: 0 auto;
}

/* Nav Menu Desktop */
.nav-list {
    display: flex;
    gap: 1.8rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--clr-text-light-muted);
    padding: 0.4rem 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--clr-text-light);
}

.header.scrolled .nav-link {
    color: var(--clr-text-muted);
}

.header.scrolled .nav-link:hover, .header.scrolled .nav-link.active {
    color: var(--clr-rust);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-amber);
    transition: var(--transition-quick);
}

.header.scrolled .nav-link::after {
    background-color: var(--clr-rust);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--clr-text-light);
    border-radius: 2px;
    transition: var(--transition-quick);
}

.header.scrolled .nav-toggle span {
    background-color: var(--clr-charcoal);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--clr-charcoal) !important;
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--clr-charcoal) !important;
}

/* --- Main Layout Sections --- */
section {
    padding: 6.5rem 1.5rem;
    position: relative;
}

.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(15, 12, 12, 0.6) 0%, rgba(15, 12, 12, 0.8) 100%), 
                      url('images/willow-smoke-exterior-hero-placeholder.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: zoomOut 20s forwards;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1.5rem;
}

.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 2rem auto;
    border: 3px solid var(--clr-amber);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h1 {
    font-size: clamp(2.8rem, 8vw, 5rem);
    color: var(--clr-text-light);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-tagline {
    font-family: var(--font-editorial);
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    color: var(--clr-amber);
    font-style: italic;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--clr-text-light-muted);
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
    animation: fadeInUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

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

.about-img-container {
    position: relative;
}

.about-img-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--clr-amber);
    z-index: 1;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.about-img {
    position: relative;
    z-index: 2;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-label {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--clr-rust);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}

.about h2 {
    font-size: clamp(2rem, 4vw, 2.7rem);
    margin-bottom: 1.5rem;
}

.about-text {
    font-family: var(--font-editorial);
    font-size: 1.15rem;
    color: var(--clr-text-dark);
    line-height: 1.8;
}

/* --- Menu Section --- */
.menu-section {
    background-color: var(--clr-bg-warm-dark);
}

.menu-card {
    background-color: var(--clr-bg-warm);
    border-radius: 6px;
    padding: 3.5rem 2.5rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    border-top: 5px solid var(--clr-rust);
}

.menu-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.menu-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.menu-card p {
    font-family: var(--font-editorial);
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.menu-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* --- Food Gallery --- */
.gallery {
    background-color: var(--clr-bg-warm);
}

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

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 12, 12, 0.9) 0%, rgba(15, 12, 12, 0.2) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    z-index: 2;
}

.gallery-overlay h3 {
    color: var(--clr-text-light);
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-overlay p {
    color: var(--clr-amber);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    transition-delay: 0.05s;
}

.gallery-item:hover .gallery-photo {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* --- Specials Section --- */
.specials {
    background-color: var(--clr-bg-warm-dark);
}

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

.special-card {
    background-color: var(--clr-bg-warm);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
    border-bottom: 3px solid transparent;
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--clr-rust);
}

.special-badge {
    background-color: var(--clr-rust-light);
    color: var(--clr-rust);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    align-self: flex-start;
    border-radius: 50px;
    margin: 2rem 2rem 0.5rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.special-card:nth-child(2) .special-badge {
    background-color: hsla(15, 12%, 12%, 0.08);
    color: var(--clr-charcoal);
}

.special-card:nth-child(3) .special-badge {
    background-color: hsla(38, 60%, 50%, 0.12);
    color: var(--clr-amber-hover);
}

.special-card h3 {
    font-size: 1.5rem;
    padding: 0.5rem 2rem;
    margin-bottom: 0.5rem;
}

.special-desc {
    font-family: var(--font-editorial);
    font-size: 1.02rem;
    color: var(--clr-text-muted);
    padding: 0 2rem 2.5rem 2rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* --- Reservations and Online Ordering --- */
.reservations {
    background-color: var(--clr-charcoal);
    color: var(--clr-text-light);
    position: relative;
    padding: 7.5rem 1.5rem;
    background-image: linear-gradient(to right, rgba(15, 12, 12, 0.9) 0%, rgba(15, 12, 12, 0.95) 100%), 
                      url('images/willow-smoke-exterior-hero-placeholder.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.reservations h2 {
    color: var(--clr-text-light);
}

.reservations .section-subtitle {
    color: var(--clr-text-light-muted);
}

.action-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.action-card {
    background-color: var(--clr-charcoal-light);
    border-radius: 6px;
    padding: 4rem 3rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid rgba(251, 250, 247, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.action-card:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 122, 52, 0.3);
}

.action-card-icon {
    font-size: 2.8rem;
    color: var(--clr-amber);
    margin-bottom: 1.5rem;
}

.action-card h3 {
    color: var(--clr-text-light);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.action-card p {
    font-family: var(--font-editorial);
    color: var(--clr-text-light-muted);
    font-size: 1.05rem;
    margin-bottom: 2.2rem;
    max-width: 320px;
    line-height: 1.6;
}

/* --- Hours Section --- */
.hours-section {
    background-color: var(--clr-bg-warm);
}

.hours-card {
    background-color: var(--clr-bg-warm);
    border-radius: 6px;
    padding: 4rem;
    box-shadow: var(--shadow-sm);
    max-width: 650px;
    margin: 0 auto;
    border: 1px solid rgba(44, 37, 35, 0.06);
}

.hours-table {
    width: 100%;
    margin-bottom: 2.5rem;
    border-collapse: collapse;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.9rem 0;
    border-bottom: 1px dashed rgba(44, 37, 35, 0.12);
    font-size: 1.05rem;
}

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

.hours-day {
    font-weight: 600;
    color: var(--clr-charcoal);
}

.hours-time {
    color: var(--clr-text-muted);
}

.hours-row.closed .hours-time {
    color: var(--clr-rust);
    font-weight: 500;
}

.holiday-notice {
    background-color: var(--clr-rust-light);
    border-left: 4px solid var(--clr-rust);
    padding: 1.2rem 1.8rem;
    border-radius: 0 4px 4px 0;
    font-family: var(--font-editorial);
    color: var(--clr-text-dark);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* --- Location and Contact --- */
.contact {
    background-color: var(--clr-bg-warm-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--clr-rust);
    margin-top: 0.2rem;
}

.contact-item-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.contact-item-info p {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
}

.contact-item-info a:hover {
    color: var(--clr-rust);
    text-decoration: underline;
}

/* Mock Map Container */
.map-container {
    background-color: var(--clr-bg-warm);
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(44, 37, 35, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.map-mockup {
    flex-grow: 1;
    background-image: radial-gradient(circle, hsla(22, 60%, 40%, 0.15) 10%, transparent 10.5%),
                      radial-gradient(circle, hsla(38, 60%, 50%, 0.1) 10%, transparent 10.5%);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    background-color: var(--clr-bg-warm-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-pin {
    width: 60px;
    height: 60px;
    background-color: var(--clr-rust);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    box-shadow: var(--shadow-md);
    animation: bounce 2s infinite alternate;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pin::after {
    content: '';
    width: 24px;
    height: 24px;
    background-color: var(--clr-bg-warm);
    border-radius: 50%;
    transform: rotate(45deg);
}

.map-pulse {
    position: absolute;
    width: 20px;
    height: 10px;
    background-color: rgba(44, 37, 35, 0.2);
    border-radius: 50%;
    transform: translateY(35px);
    z-index: 1;
}

.map-bar {
    background-color: var(--clr-bg-warm);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(44, 37, 35, 0.08);
    z-index: 2;
}

.map-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.map-text p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

/* --- Parking Section --- */
.parking {
    background-color: var(--clr-bg-warm);
}

.parking-box {
    background-color: var(--clr-rust-light);
    border: 1px solid rgba(176, 94, 39, 0.15);
    border-radius: 6px;
    padding: 4rem 3rem;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.parking-icon {
    font-size: 3.5rem;
    color: var(--clr-rust);
    background-color: var(--clr-bg-warm);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.parking-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--clr-rust);
}

.parking-info p {
    font-family: var(--font-editorial);
    font-size: 1.1rem;
    color: var(--clr-text-dark);
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    background-color: var(--clr-charcoal);
    color: var(--clr-text-light);
    padding: 5rem 1.5rem 3rem 1.5rem;
    border-top: 4px solid var(--clr-rust);
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.footer-logo-img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-amber);
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-text-light);
}

.footer-desc {
    color: var(--clr-text-light-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(251, 250, 247, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--clr-text-light-muted);
    transition: var(--transition-quick);
    border: 1px solid rgba(251, 250, 247, 0.1);
}

.social-btn:hover {
    background-color: var(--clr-rust);
    color: var(--clr-text-light);
    border-color: var(--clr-rust);
    transform: translateY(-2px);
}

.footer-links-col h4 {
    color: var(--clr-amber);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    font-size: 0.95rem;
    color: var(--clr-text-light-muted);
}

.footer-link:hover {
    color: var(--clr-text-light);
    padding-left: 4px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--clr-text-light-muted);
}

.footer-contact-icon {
    color: var(--clr-amber);
    margin-top: 0.2rem;
}

.footer-contact-text a:hover {
    color: var(--clr-text-light);
    text-decoration: underline;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(251, 250, 247, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--clr-text-light-muted);
}

.footer-credit {
    font-size: 0.85rem;
    color: var(--clr-text-light-muted);
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- Image Modal (PDF Viewer Mock/Direct) --- */
.pdf-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 12, 12, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.pdf-modal-container {
    background-color: var(--clr-bg-warm);
    width: 100%;
    max-width: 900px;
    height: 90vh;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    animation: zoomInModal 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdf-modal-header {
    background-color: var(--clr-charcoal);
    color: var(--clr-text-light);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pdf-modal-header h3 {
    color: var(--clr-text-light);
    font-size: 1.2rem;
}

.pdf-modal-close {
    font-size: 1.8rem;
    color: var(--clr-text-light-muted);
    cursor: pointer;
    transition: var(--transition-quick);
}

.pdf-modal-close:hover {
    color: var(--clr-text-light);
}

.pdf-modal-body {
    flex-grow: 1;
    width: 100%;
    height: 100%;
    border: none;
    background-color: var(--clr-bg-warm-dark);
}

/* --- KEYFRAMES --- */
@keyframes zoomOut {
    0% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0% { transform: rotate(-45deg) translateY(0); }
    100% { transform: rotate(-45deg) translateY(-8px); }
}

@keyframes zoomInModal {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- RESPONSIVENESS (MOBILE-FIRST) --- */

/* Mobile (Landscape) & Tablets (max-width: 992px) */
@media (max-width: 992px) {
    :root {
        --header-height: 70px;
    }

    /* Nav bar toggle showing */
    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    /* Navigation list as drawer */
    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--clr-bg-warm);
        box-shadow: var(--shadow-lg);
        z-index: 1050;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition-smooth);
    }

    .nav-container.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2.2rem;
        text-align: center;
    }

    .nav-link {
        font-size: 1.1rem;
        color: var(--clr-text-muted);
    }

    .nav-link:hover, .nav-link.active {
        color: var(--clr-rust);
    }

    .nav-link::after {
        background-color: var(--clr-rust);
    }

    /* Sections adjust */
    section {
        padding: 5rem 1.2rem;
    }

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

    .about-img-container {
        max-width: 550px;
        margin: 0 auto;
    }

    .specials-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .action-cards {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .action-card {
        padding: 3.5rem 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-details {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }

    .map-container {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
        min-height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand, .footer-links-col {
        align-items: center;
        text-align: center;
    }

    .footer-logo-row {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contact-list {
        align-items: center;
    }

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

/* Small Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .btn {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .menu-card {
        padding: 2.2rem 1.2rem;
    }

    .menu-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .parking-box {
        flex-direction: column;
        padding: 2.5rem 1.5rem;
        gap: 1.5rem;
        text-align: center;
    }

    .parking-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }

    .hours-card {
        padding: 2.2rem 1.2rem;
    }

    .hours-row {
        font-size: 0.95rem;
    }

    .pdf-modal {
        padding: 0.8rem;
    }
}

/* --- RVA Sites Notice Bar --- */
.rva-notice-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background-color: var(--clr-charcoal-light, #1A1A1A);
    color: var(--clr-text-light, #fff);
    border-bottom: 2px solid var(--clr-rust, #b05e27);
    font-size: 0.85rem;
    padding: 8px 16px;
    text-align: center;
    line-height: 1.4;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.rva-notice-bar a {
    color: var(--clr-amber, #C97A34);
    text-decoration: underline;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition-quick, all 0.2s ease);
}

.rva-notice-bar a:hover {
    color: var(--clr-text-light);
}

/* Adjust header to sit below fixed notice bar */
.header {
    top: 36px !important;
}

@media (max-width: 768px) {
    .header {
        top: 56px !important;
    }
}

@media (max-width: 480px) {
    .header {
        top: 76px !important;
    }
}
