/* Nelly's Grill & Dairy Bar - Summer Light Style */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800&family=Pacifico&display=swap');

/* ─── Variables ─────────────────────────────────────── */
:root {
    --teal:          #20b2aa;
    --teal-dark:     #178b85;
    --teal-light:    #cff0ee;
    --coral:         #ff6b6b;
    --coral-light:   #ffe5e5;
    --gold:          #f0b429;
    --gold-light:    #fef3d0;
    --navy:          #1a3545;
    --text:          #1e2d3a;
    --text-muted:    #3d5260;
    --bg:            #cde9e7;
    --white:         #ffffff;
    --card-bg:       #ffffff;
    --card-border:   #96d4d0;
    --shadow-soft:   rgba(32, 178, 170, 0.15);
    --shadow-med:    rgba(0, 0, 0, 0.13);
    --shadow-dark:   rgba(0, 0, 0, 0.28);
    --radius:        14px;
    --radius-sm:     8px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    background-color: #d4eeec;
    background-image:
        linear-gradient(160deg, #c2e8e5 0%, #d8f0ee 35%, #e8f4e8 65%, #d4e8f4 100%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    font-size: 1rem;
}

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

a { color: var(--teal-dark); }

/* ─── Layout ────────────────────────────────────────── */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ─── Header ────────────────────────────────────────── */
header {
    background: linear-gradient(135deg, #0e7a75 0%, #20b2aa 45%, #2ec9c0 75%, #1a9e96 100%);
    border-bottom: 4px solid var(--gold);
    padding: 0.4rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 16px rgba(14, 122, 117, 0.4);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

@keyframes rollInLeft {
    0%   { transform: translateX(-90px) rotate(-270deg); opacity: 0; }
    100% { transform: translateX(0)     rotate(0deg);    opacity: 1; }
}

.logo-img.header-main-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 0;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
    animation: rollInLeft 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.logo-img.header-main-logo:hover {
    transform: scale(1.06) rotate(-4deg);
}

.logo-text {
    font-family: 'Pacifico', cursive;
    font-size: 1.7rem;
    color: var(--white);
    text-shadow: 1px 2px 6px rgba(0,0,0,0.25);
    white-space: nowrap;
}

/* ─── Nav ───────────────────────────────────────────── */
nav ul {
    display: flex;
    gap: 0.35rem;
    list-style: none;
    flex-wrap: wrap;
    align-items: center;
}

nav a {
    color: rgba(220,245,243,0.88); /* soft seafoam — readable on teal, not stark white */
    text-decoration: none;
    padding: 0.45rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid transparent;
    transition: all 0.25s ease;
}

nav a:hover,
nav a.active {
    background: rgba(255,255,255,0.12);
    color: #e8f8f7;
    border-color: rgba(220,245,243,0.3);
}

nav a.active {
    background: var(--gold);
    color: var(--navy);
    border-color: transparent;
}

/* ─── Nav Search Bar (header) - kept for reference, hidden on all pages ── */
.site-search { display: none; }

/* ─── Hamburger Button ──────────────────────────────── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: var(--radius-sm);
    width: 44px;
    height: 44px;
    cursor: pointer;
    padding: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
}
.nav-hamburger:hover {
    background: rgba(255,255,255,0.25);
}
.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
/* Animate to X when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
        order: 2;
    }
    nav {
        position: relative;
    }
    nav ul {
        display: none;
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 0;
        background: linear-gradient(160deg, #0e7a75, #1a9e96);
        border: 2px solid rgba(255,255,255,0.2);
        border-radius: var(--radius);
        box-shadow: 0 12px 40px rgba(0,0,0,0.4);
        flex-direction: column;
        gap: 0;
        min-width: 200px;
        padding: 0.5rem 0;
        z-index: 2000;
        overflow: hidden;
    }
    nav ul.open {
        display: flex;
        animation: menuSlideDown 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    @keyframes menuSlideDown {
        from { opacity: 0; transform: translateY(-8px) scale(0.97); }
        to   { opacity: 1; transform: translateY(0)   scale(1); }
    }
    nav ul li { width: 100%; }
    nav a {
        display: block;
        padding: 0.7rem 1.25rem;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(220,245,243,0.12);
        font-size: 1rem;
    }
    nav ul li:last-child a { border-bottom: none; }
    nav a.active {
        background: rgba(220,245,243,0.1);
        color: var(--gold);
    }
}

/* ─── Full-Width Search Banner ──────────────────────── */
.search-banner {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, #2ec4bb 100%);
    padding: 1rem 1.25rem;
    box-shadow: 0 3px 12px rgba(32,178,170,0.3);
    width: 100%;
}

.search-banner-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.search-banner input[type="search"] {
    flex: 1;
    width: 100%;
    min-width: 0;
    padding: 0.85rem 1.4rem;
    border: none;
    border-radius: 32px;
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    background: #dff0ee;
    outline: none;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.07);
    transition: box-shadow 0.2s;
}
.search-banner input[type="search"]:focus {
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.07), 0 0 0 3px rgba(255,255,255,0.4);
}
.search-banner input[type="search"]::placeholder { color: #7cc; }

.search-banner button {
    background: var(--gold);
    border: none;
    border-radius: 32px;
    padding: 0.85rem 1.8rem;
    color: var(--navy);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
}
.search-banner button:hover {
    background: #d9a010;
    transform: translateY(-1px);
}

/* ─── Simple Hero (inner pages) ────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, #2ec4bb 100%);
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-bottom: 4px solid var(--gold);
}

.hero h1 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
    text-shadow: 1px 2px 6px rgba(0,0,0,0.3);
    margin-bottom: 0.4rem;
}

.hero .tagline {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    font-weight: 600;
}

/* ─── Hero (Ken Burns) ──────────────────────────────── */
.hero-banner {
    position: relative;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
    transform-origin: center center;
}

@keyframes kenBurns {
    0%   { transform: scale(1.0) translate(0%, 0%); }
    33%  { transform: scale(1.08) translate(-1%, 0.5%); }
    66%  { transform: scale(1.05) translate(1%, -0.5%); }
    100% { transform: scale(1.12) translate(-0.5%, 1%); }
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(30, 58, 74, 0.55) 0%,
        rgba(30, 58, 74, 0.3) 50%,
        rgba(30, 58, 74, 0.7) 100%
    );
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 1.5rem;
    color: var(--white);
    max-width: 800px;
}

.hero-banner-content img.hero-logo {
    height: 130px;
    width: auto;
    margin: 0 auto 0.75rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.hero-banner-content h1 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    text-shadow: 2px 3px 8px rgba(0,0,0,0.5);
    margin-bottom: 0.3rem;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.92;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
    margin-bottom: 1rem;
}

/* ─── Status Banner (Open/Closed) ───────────────────── */
.status-banner {
    display: inline-block;
    background: rgba(0,0,0,0.45);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    padding: 0.45rem 1.4rem;
    font-weight: 700;
    font-size: 0.95rem;
    backdrop-filter: blur(4px);
}

.status-banner.open {
    background: rgba(46, 160, 67, 0.85);
    border-color: #7ee787;
}

.status-banner.closed {
    background: rgba(200, 50, 50, 0.8);
    border-color: #ffb3b3;
}

.status-text { color: var(--white); }

/* ─── Today's Special Banner ────────────────────────── */
.todays-special {
    background: linear-gradient(135deg, #fff3c4, var(--gold-light));
    border-left: 8px solid var(--gold);
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    border-radius: var(--radius);
    padding: 1.4rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    box-shadow: 0 4px 18px rgba(240, 180, 41, 0.22);
}

.todays-special .special-badge {
    flex-shrink: 0;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Fredoka One', cursive;
    font-size: 0.95rem;
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-sm);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(240,180,41,0.35);
}

.todays-special .special-info h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    color: #8a5c00;
    margin-bottom: 0.25rem;
}

.todays-special .special-info p {
    color: #6b4700;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

/* ─── Contact Banner ────────────────────────────────── */
.contact-banner {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: var(--radius);
    padding: 2rem;
    margin: 1.5rem 0;
    text-align: center;
    box-shadow: 0 6px 24px var(--shadow-soft);
}

.contact-banner h2 {
    font-family: 'Fredoka One', cursive;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
}

.contact-info-large {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-item {
    background: #dff0ee;
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.75rem;
    min-width: 220px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-item h3 {
    font-family: 'Fredoka One', cursive;
    color: var(--teal-dark);
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 600;
}

.contact-item a {
    color: var(--teal-dark);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}
.contact-item a:hover { color: var(--coral); text-decoration: underline; }

.phone-number {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem !important;
}
.phone-number a {
    color: var(--teal-dark) !important;
}
/* Phone number inside teal contact banner needs contrast */
.contact-banner .phone-number a {
    color: var(--gold) !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--teal-dark);
    color: var(--white) !important;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 0.75rem;
    transition: all 0.2s;
    border: 2px solid transparent;
}
.map-link:hover {
    background: var(--white);
    color: var(--teal-dark) !important;
    border-color: var(--teal-dark);
}

/* ─── Panels / Cards ────────────────────────────────── */
.panel {
    background: #dff0ee;
    border: 2px solid var(--card-border);
    border-top: 5px solid var(--teal);
    border-radius: var(--radius);
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 20px var(--shadow-soft);
}

.panel.panel-gold {
    border-top-color: var(--gold);
    background: #faecc8;
}

.panel.panel-coral {
    border-top-color: var(--coral);
    background: #fadede;
}

.panel.panel-teal {
    background: var(--teal-light);
    border-color: var(--teal);
    border-top-color: var(--teal-dark);
}

.panel h2 {
    font-family: 'Fredoka One', cursive;
    color: var(--teal-dark);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--teal-light);
}

.panel h3 {
    font-family: 'Nunito', sans-serif;
    color: var(--teal-dark);
    font-weight: 800;
    font-size: 1.2rem;
    margin: 1.25rem 0 0.6rem;
}

.panel p {
    color: var(--text);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

/* ─── Info Grid ─────────────────────────────────────── */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.info-card {
    background: linear-gradient(145deg, var(--teal-light), #d8f3f2);
    border: 2px solid var(--teal);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 3px 10px var(--shadow-soft);
    transition: transform 0.2s, box-shadow 0.2s;
}
.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px var(--shadow-soft);
}
.info-card:nth-child(2) { background: linear-gradient(145deg, var(--coral-light), #ffd5d5); border-color: var(--coral); }
.info-card:nth-child(3) { background: linear-gradient(145deg, var(--gold-light), #fde89a); border-color: var(--gold); }
.info-card:nth-child(4) { background: linear-gradient(145deg, #e8f8f5, #c8ede9); border-color: #52bfba; }

.info-card h3 {
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
}

.info-card p {
    color: var(--text);
    font-size: 0.95rem;
    margin: 0;
}

/* ─── Hours Table ───────────────────────────────────── */
.hours-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 1rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1.5px solid rgba(32,178,170,0.5);
    box-shadow: 0 2px 14px rgba(32,178,170,0.13), 0 1px 4px rgba(0,0,0,0.05);
}

.hours-table td {
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid rgba(32,178,170,0.18);
    font-size: 1.05rem;
    color: var(--text);
}

/* Round the corner cells */
.hours-table tr:first-child td:first-child { border-top-left-radius: var(--radius-sm); }
.hours-table tr:first-child td:last-child  { border-top-right-radius: var(--radius-sm); }
.hours-table tr:last-child  td:first-child { border-bottom-left-radius: var(--radius-sm); }
.hours-table tr:last-child  td:last-child  { border-bottom-right-radius: var(--radius-sm); }

.hours-table tr:last-child td { border-bottom: none; }

.hours-table tr:nth-child(odd)  { background: #dff0ee; }
.hours-table tr:nth-child(even) { background: var(--teal-light); }

.hours-table td:first-child {
    font-weight: 800;
    color: var(--teal-dark);
    font-size: 1.1rem;
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--navy);
}

.hours-table tr:last-child td {
    color: var(--text-muted);
    font-style: italic;
}

/* ─── Buttons ───────────────────────────────────────── */
.btn {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 3px 10px rgba(32, 178, 170, 0.25);
}

.btn:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(32, 178, 170, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--teal-dark);
    border: 2px solid var(--teal-dark);
}
.btn-outline:hover {
    background: var(--teal-dark);
    color: var(--white);
}

/* ─── Building Feature ──────────────────────────────── */
.building-feature {
    margin: 1.5rem 0;
    text-align: center;
}

.building-image-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow-med);
    border: 3px solid var(--teal);
}

.building-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.building-image:hover { transform: scale(1.02); }

.building-caption {
    margin-top: 0.75rem;
}
.building-caption p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

/* ─── Carousel ──────────────────────────────────────── */
.carousel-section {
    background: linear-gradient(135deg, var(--navy) 0%, #16303f 100%);
    border-radius: var(--radius);
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: 0 6px 24px var(--shadow-dark);
}

.carousel-section h2 {
    font-family: 'Fredoka One', cursive;
    color: var(--white);
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0;
}

.carousel-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
}

.carousel-speed-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 18%;
    z-index: 5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.carousel-speed-zone:hover { opacity: 1; }
.carousel-speed-zone.left {
    left: 0;
    background: linear-gradient(90deg, rgba(30,58,74,0.7), transparent);
}
.carousel-speed-zone.right {
    right: 0;
    background: linear-gradient(-90deg, rgba(30,58,74,0.7), transparent);
}
.carousel-speed-zone.left::after  { content: '‹'; color: var(--white); font-size: 2rem; font-weight: bold; }
.carousel-speed-zone.right::after { content: '›'; color: var(--white); font-size: 2rem; font-weight: bold; }

.carousel-item {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border: 3px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.carousel-item:hover {
    transform: scale(1.06);
    border-color: var(--gold);
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 769px) {
    .carousel-item { width: 220px; height: 220px; }
}
@media (max-width: 480px) {
    .carousel-item { width: 160px; height: 160px; }
}

/* ─── Photo Gallery ─────────────────────────────────── */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.photo-item {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    border: 3px solid var(--card-border);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.photo-item:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px var(--shadow-med);
    border-color: var(--teal);
}
.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── Menu Tabs ─────────────────────────────────────── */
.menu-search-wrapper {
    margin-bottom: 1.5rem;
}

.menu-search-wrapper input {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem 1.2rem;
    border: 2px solid var(--teal);
    border-radius: 30px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: var(--text);
    background: #dff0ee;
    outline: none;
    transition: box-shadow 0.2s;
}
.menu-search-wrapper input:focus {
    box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.2);
}
.menu-search-wrapper input::placeholder { color: #9ab5c0; }

.menu-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--card-border);
}

.menu-tab {
    background: #c8e8e6;
    border: 2px solid var(--teal);
    color: var(--teal-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 24px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}
.menu-tab:hover {
    background: var(--teal-light);
    border-color: var(--teal-dark);
}
.menu-tab.active {
    background: var(--teal);
    color: #e8f8f7;
    border-color: var(--teal-dark);
    box-shadow: 0 3px 10px rgba(32, 178, 170, 0.3);
}

.menu-section { display: none; }
.menu-section.active { display: block; }

.menu-section h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    color: var(--teal-dark);
    margin: 1.25rem 0 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--teal-light);
}

.menu-item {
    background: #eaf6f5;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0.75rem;
    margin: 0.4rem 0;
    background: rgba(255,255,255,0.6);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--teal);
    transition: background 0.2s, border-color 0.2s;
}
.menu-item:hover {
    background: var(--teal-light);
    border-left-color: var(--coral);
}

.menu-item-name {
    font-weight: 800;
    color: var(--text);
    font-size: 1.15rem;
    line-height: 1.4;
}

.menu-item-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    line-height: 1.5;
}

.menu-item-price {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: var(--teal-dark);
    background: var(--teal-light);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-sm);
    border: 2px solid var(--teal);
    white-space: nowrap;
    margin-left: 1rem;
    flex-shrink: 0;
}

.menu-no-results {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-style: italic;
}

/* ─── Contact Form ──────────────────────────────────── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-weight: 700;
    color: var(--teal-dark);
}

.form-group input,
.form-group textarea {
    background: #dff0ee;
    border: 2px solid var(--card-border);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    color: var(--text);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ─── Specials Cards ────────────────────────────────── */
.specials-grid {
    display: grid;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.special-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 1.4rem 1.75rem;
    border-left: 6px solid var(--teal);
    box-shadow: 0 3px 14px var(--shadow-soft);
    transition: transform 0.2s;
}
.special-card:hover { transform: translateX(4px); }
.special-card:nth-child(2) { border-left-color: var(--coral); }
.special-card:nth-child(3) { border-left-color: var(--gold); }
.special-card:nth-child(4) { border-left-color: #98d8c8; }

.special-day {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    color: var(--teal-dark);
    margin-bottom: 0.4rem;
}

.special-title {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.special-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.special-note {
    margin-top: 1.75rem;
    padding: 1.25rem;
    background: var(--teal-light);
    border-radius: var(--radius-sm);
    text-align: center;
    border: 2px solid var(--teal);
}
.special-note p {
    font-size: 1rem;
    color: var(--text);
    margin: 0;
}
.special-note a {
    color: var(--teal-dark);
    font-weight: 700;
}

/* ─── Divider ───────────────────────────────────────── */
.celtic-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--teal), var(--gold), var(--teal), transparent);
    margin: 2rem 0;
    border: none;
    opacity: 0.5;
}

/* ─── Footer ────────────────────────────────────────── */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    border-top: 3px solid var(--teal);
    padding: 0.9rem 1.25rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}

.footer-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.footer-logo {
    height: 56px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-title {
    font-family: 'Pacifico', cursive;
    color: var(--white);
    font-size: 1rem;
}

.footer-address {
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
}
.footer-address a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 600;
}
.footer-address a:hover { color: var(--gold); }

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

.footer-hours {
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.35rem 0.85rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.08);
}
.footer-hours.open  { color: #7ee787; border-color: #7ee787; }
.footer-hours.closed { color: #ffa07a; border-color: #ffa07a; }

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.social-links { display: flex; gap: 0.5rem; }

.social-link {
    color: var(--white);
    text-decoration: none;
    padding: 0.4rem 0.9rem;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.2s;
    background: rgba(255,255,255,0.08);
}
.social-link:hover {
    background: var(--teal);
    border-color: var(--teal);
}

.footer-credit {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.footer-secret {
    position: absolute;
    left: 8px;
    bottom: 8px;
    opacity: 0.08;
    font-size: 0.75rem;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
    cursor: pointer;
}
.footer-secret:hover { opacity: 0.35; }

/* Hidden page links — bottom left, next to J */
.footer-secret--r1 {
    left: 22px;
    bottom: 8px;
}
.footer-secret--r2 {
    left: 36px;
    bottom: 8px;
}
.footer-secret--r3 {
    left: 50px;
    bottom: 8px;
}

/* Dog-friendly info card highlight */
.info-card--dog {
    background: linear-gradient(135deg, #fff8e8 0%, #fff3d4 100%);
    border: 2px solid var(--gold);
}

/* Main padding for fixed footer */
main { padding-bottom: 110px; }

/* ─── Live Search Dropdown ──────────────────────────── */
.search-banner {
    position: relative;
}

.search-dropdown {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    right: 0;
    background: #dff0ee;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 2000;
    overflow: hidden;
    border: 2px solid var(--teal);
    border-top: none;
}

.search-dropdown__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    border-bottom: 1px solid var(--teal-light);
    transition: background 0.15s;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text);
}
.search-dropdown__item:last-child { border-bottom: none; }
.search-dropdown__item:hover,
.search-dropdown__item.focused {
    background: var(--teal-light);
}

.search-dropdown__name {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text);
    flex: 1;
}

.search-dropdown__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    flex: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-dropdown__price {
    font-family: 'Fredoka One', cursive;
    font-size: 0.95rem;
    color: var(--teal-dark);
    flex-shrink: 0;
}

.search-dropdown__pills {
    display: flex;
    gap: 0.3rem;
    flex-shrink: 0;
}

.search-dropdown__empty {
    padding: 1rem 1.5rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    font-size: 0.95rem;
}

.search-dropdown__more {
    display: block;
    padding: 0.65rem 1.5rem;
    text-align: center;
    background: var(--teal-light);
    color: var(--teal-dark);
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    border-top: 2px solid var(--teal);
    text-decoration: none;
    transition: background 0.15s;
}
.search-dropdown__more:hover { background: var(--teal); color: var(--white); }

.search-dropdown__section {
    padding: 0.3rem 1.2rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-muted);
    background: rgba(32,178,170,0.07);
    border-top: 1px solid var(--card-border);
}
.search-dropdown__section:first-child { border-top: none; }

.search-dropdown__page {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(32,178,170,0.1);
    transition: background 0.15s;
}
.search-dropdown__page:hover { background: var(--teal-light); }
.search-dropdown__page-icon { font-size: 1.2rem; flex-shrink: 0; }
.search-dropdown__page-body { flex: 1; }
.search-dropdown__page-name {
    display: block;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--teal-dark);
}
.search-dropdown__page-desc {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.search-dropdown__page-arrow {
    font-size: 1rem;
    color: var(--teal);
    flex-shrink: 0;
}

/* ─── Tag Pills ─────────────────────────────────────── */
.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    white-space: nowrap;
    border: 1.5px solid currentColor;
    line-height: 1.4;
}

.tag-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 1.25rem;
    padding: 0.75rem 0;
    border-bottom: 2px solid var(--card-border);
    align-items: center;
}

.tag-filter-bar-label {
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 0.25rem;
}

.tag-pill--filter {
    cursor: pointer;
    padding: 0.35rem 0.85rem;
    font-size: 0.85rem;
    border-radius: 24px;
    transition: all 0.2s;
    opacity: 0.9;
    background: #c8e8e6;
}
.tag-pill--filter:hover { opacity: 1; transform: translateY(-1px); }
.tag-pill--filter.active {
    opacity: 1;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

.tag-pill--all {
    cursor: pointer;
    background: var(--teal);
    color: #e8f8f7;
    border: 2px solid var(--teal-dark);
    padding: 0.35rem 0.85rem;
    border-radius: 24px;
    font-size: 0.88rem;
    font-weight: 800;
    transition: all 0.2s;
    opacity: 0.7;
}
.tag-pill--all.active {
    opacity: 1;
    box-shadow: 0 3px 10px rgba(32,178,170,0.35);
}
.tag-pill--all:hover { opacity: 1; }

.tag-pill--clear {
    cursor: pointer;
    background: #c8e8e6;
    color: var(--text-muted);
    border: 2px solid var(--card-border);
    padding: 0.35rem 0.85rem;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    transition: all 0.2s;
    display: none;
}
.tag-pill--clear:hover { background: var(--coral-light); border-color: var(--coral); color: var(--coral); }
.tag-pill--clear.visible { display: inline-flex; align-items: center; gap: 0.3rem; }

.menu-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.4rem;
}

/* ─── Utilities ─────────────────────────────────────── */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* ─── Scroll Reveal ─────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Today's Special — shiny centered banner ───────── */
.todays-special {
    background: linear-gradient(90deg, #6b3d00 0%, #b87a00 30%, #f0b429 50%, #b87a00 70%, #6b3d00 100%);
    background-size: 200% auto;
    animation: specialShimmer 5s ease-in-out infinite alternate;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: 4px solid #f0b429 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.4rem 2rem;
    gap: 0.5rem;
    box-shadow: 0 6px 30px rgba(240,180,41,0.4) !important;
}
@keyframes specialShimmer {
    from { background-position: left center; }
    to   { background-position: right center; }
}
.todays-special.is-next {
    background: linear-gradient(90deg, #0d3340 0%, #1a5568 30%, #20b2aa 50%, #1a5568 70%, #0d3340 100%);
    background-size: 200% auto;
    animation: nextShimmer 5s ease-in-out infinite alternate;
    border-bottom-color: var(--teal) !important;
    box-shadow: 0 6px 30px rgba(32,178,170,0.4) !important;
}
@keyframes nextShimmer {
    from { background-position: left center; }
    to   { background-position: right center; }
}
.todays-special.is-next .special-badge {
    background: rgba(255,255,255,0.15) !important;
    color: #b8f0ee !important;
    border: 1px solid rgba(255,255,255,0.25);
}
.todays-special.is-next .special-info h3 { color: #e8fffe !important; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.todays-special.is-next .special-info p  { color: rgba(220,250,248,0.9) !important; }
.todays-special.is-next .special-cta     { color: rgba(220,250,248,0.9); border-color: rgba(255,255,255,0.3); }
.todays-special .special-badge {
    background: rgba(255,255,255,0.18) !important;
    color: #fff8e0 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
    font-size: 0.75rem !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
}
.todays-special .special-info h3 {
    color: #fff !important;
    font-size: 1.6rem !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.todays-special .special-info p {
    color: rgba(255,255,255,0.88) !important;
    font-size: 1rem !important;
}
.todays-special .special-cta {
    display: inline-block;
    margin-top: 0.4rem;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-family: 'Fredoka One', cursive;
    font-size: 0.9rem;
    padding: 0.35rem 1.1rem;
    border-radius: 20px;
    border: 1.5px solid rgba(255,255,255,0.4);
    text-decoration: none;
    transition: background 0.2s;
}
.todays-special .special-cta:hover { background: rgba(255,255,255,0.32); }

/* ─── Fan Favourite Badge ────────────────────────────── */
.menu-item.fan-fave {
    position: relative;
    padding-top: 1.5rem;
    border-left-color: var(--gold) !important;
    background: linear-gradient(to right, #fffbe6, #fffef5);
}
.menu-item.fan-fave::before {
    content: '⭐ Fan Favourite';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #c8820a, #f0b429 40%, #fdd85d 60%, #f0b429 80%, #c8820a);
    background-size: 200% auto;
    animation: fanShimmer 2.5s linear infinite;
    color: #5a3200;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.18rem 0.75rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
@keyframes fanShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ─── Floating Status Pill ───────────────────────────── */
.status-pill {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 8999;
    font-family: 'Fredoka One', cursive;
    font-size: 0.92rem;
    padding: 0.55rem 1.1rem 0.55rem 0.85rem;
    border-radius: 30px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.22);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    animation: pillFloat 4s ease-in-out infinite;
    transition: transform 0.2s;
}
.status-pill:hover { transform: translateY(-3px) !important; animation: none; }
.status-pill.open  { background: var(--teal); color: #e8f8f7; }
.status-pill.closed { background: rgba(26,53,69,0.92); color: rgba(220,240,238,0.8); border: 1px solid rgba(255,255,255,0.12); }
.pill-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}
.status-pill.open  .pill-dot { background: #6dffc0; animation: pillPulse 1.6s ease-in-out infinite; }
.status-pill.closed .pill-dot { background: rgba(255,120,100,0.8); }
@keyframes pillPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.45;transform:scale(0.75)} }
@keyframes pillFloat  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

/* ─── Inner Page Hero (Ken Burns) ────────────────────── */
.hero-banner--inner { height: 260px; }
.hero-banner--inner .hero-banner-content { padding: 0.5rem 1.5rem; }
.hero-banner--inner .hero-banner-content h1 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--white);
    text-shadow: 2px 3px 10px rgba(0,0,0,0.55);
    margin-bottom: 0.3rem;
}
.hero-banner--inner .hero-tagline {
    font-size: 1rem;
    color: rgba(255,255,255,0.88);
    font-weight: 600;
    text-shadow: 1px 2px 6px rgba(0,0,0,0.4);
}

/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    nav ul { justify-content: flex-end; }

    .logo-img.header-main-logo { height: 60px; }
    .logo-text { font-size: 1.3rem; }

    .site-search { display: none; }

    .search-banner { padding: 0.8rem 1rem; }
    .search-banner button { padding: 0.7rem 1rem; font-size: 0.9rem; }

    .hero-banner { height: 300px; }
    .hero-banner-content img.hero-logo { height: 90px; }

    .menu-tabs { justify-content: center; }

    .contact-info-large {
        flex-direction: column;
        align-items: center;
    }
    .contact-item { width: 100%; max-width: 320px; }

    .todays-special {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    footer { padding: 0.5rem 0.75rem; }
    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .footer-logo { height: 36px; }
    .footer-title { font-size: 0.8rem; }
    .footer-address { font-size: 0.68rem; }
    .footer-center { order: 3; width: 100%; text-align: center; }
    .footer-hours { font-size: 0.68rem; }
    .footer-right .social-links { display: none; }
    .footer-credit { font-size: 0.6rem; }
    .footer-secret { display: none; }
    main { padding-bottom: 80px; }
}

@media (max-width: 480px) {
    .hero-banner { height: 240px; }
    .panel { padding: 1.25rem; }
    footer { padding: 0.3rem 0.5rem; }
    .footer-logo { height: 26px; }
    .footer-title { font-size: 0.72rem; }
    .footer-address { display: none; }
    .footer-hours { font-size: 0.62rem; }
    .footer-credit { font-size: 0.55rem; }
    main { padding-bottom: 65px; }
}

/* ─── Mobile sticky call button ────────────────────── */
.mobile-call-btn {
    display: none; /* desktop: hidden */
}

@media (max-width: 768px) {
    .mobile-call-btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        position: fixed;
        bottom: 22px;
        right: 18px;
        z-index: 8500;
        background: var(--teal);
        color: #fff;
        font-family: 'Fredoka One', cursive;
        font-size: 1.05rem;
        font-weight: 400;
        text-decoration: none;
        padding: 0.7rem 1.2rem 0.7rem 1rem;
        border-radius: 50px;
        box-shadow: 0 4px 18px rgba(0,0,0,0.35);
        transition: background 0.2s, transform 0.15s;
        -webkit-tap-highlight-color: transparent;
    }
    .mobile-call-btn:active {
        background: #189490;
        transform: scale(0.96);
    }
    .mobile-call-icon { font-size: 1.2rem; }
    /* nudge main content up so the button doesn't cover the footer text */
    main { padding-bottom: 90px; }
}

/* ─── Lightbox ──────────────────────────────────────── */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    cursor: zoom-out;
    animation: lb-fade-in 0.2s ease;
}
.lightbox-overlay.open { display: flex; }

@keyframes lb-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.lightbox-img-wrap {
    position: relative;
    max-width: min(92vw, 1100px);
    max-height: 90vh;
    cursor: default;
    animation: lb-zoom-in 0.22s ease;
}
@keyframes lb-zoom-in {
    from { transform: scale(0.88); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.lightbox-img-wrap img {
    display: block;
    max-width: 100%;
    max-height: 88vh;
    border-radius: 10px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.7);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    border: none;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    transition: background 0.2s, transform 0.2s;
}
.lightbox-close:hover {
    background: #e8b84b;
    transform: scale(1.1);
}

.lightbox-caption {
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-top: 0.75rem;
}

.carousel-item { cursor: pointer; }

/* ─── Ice Cream page ────────────────────────────────── */
.icecream-intro {
    text-align: center;
    padding: 2.5rem 1rem 1rem;
}
.icecream-intro h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.2rem;
    color: var(--teal);
    margin-bottom: 0.5rem;
}
.icecream-intro p {
    font-size: 1.15rem;
    color: var(--text-muted);
}
.icecream-coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 30vh;
    gap: 1rem;
    padding: 3rem 1rem;
    text-align: center;
}
.icecream-coming-soon .big-icon {
    font-size: 5rem;
    line-height: 1;
}
.icecream-coming-soon h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: var(--gold);
}
.icecream-coming-soon p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 480px;
}

/* ─── Photo filter bar ──────────────────────────────── */
.photo-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 1.25rem;
}
.photo-filter-btn {
    padding: 0.4rem 1rem;
    border: 2px solid var(--teal);
    border-radius: 999px;
    background: transparent;
    color: var(--teal);
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
}
.photo-filter-btn:hover {
    background: var(--teal);
    color: #fff;
}
.photo-filter-btn.active {
    background: var(--teal);
    color: #fff;
}

