/* =========================================
   DESIGN TOKENS & VARIABLES
   ========================================= */
:root {
    /* Colors - Pure Minimalist Black & White Theme */
    --bg-primary: #000000;
    /* Pure black */
    --bg-secondary: #0a0a0a;
    /* Slightly elevated black */
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    /* Clean grey */

    /* Brand Accent Colors (drastically reduced for minimalism) */
    --accent-cream: #f4ede4;
    /* Extremely stripped back ivory just for subtle pop */
    --accent-brown: #ffffff;
    /* Replaced with white for minimalist icons */
    --accent-red: #ffffff;
    /* Replaced with white for subtle tags */

    /* Solid Accents */
    --brand-solid: var(--text-primary);
    --glass-bg: rgba(10, 10, 10, 0.8);
    /* Dark clear glass */
    --glass-border: rgba(255, 255, 255, 0.05);
    /* Extremely subtle white border */

    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Shadows & Effects */
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 20px rgba(242, 220, 188, 0.15);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & GLOBAL STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #333333 var(--bg-primary);
}

/* Custom Webkit Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555555;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.2;
}

h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 2px;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 2rem;
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-serif);
    letter-spacing: 0.5px;
}

.section-title {
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    color: var(--accent-cream);
}

.section-title::after {
    display: none;
    /* Removed the colorful underline gradient */
}

.brand-accent {
    color: var(--text-primary);
    /* Remove gradient, use solid minimalist white */
}

/* =========================================
   COMPONENTS
   ========================================= */

/* Closure Banner */
.closure-banner {
    background: linear-gradient(90deg, #1a0a00 0%, #2d1200 50%, #1a0a00 100%);
    border-bottom: 2px solid #f97316;
    padding: 18px 5%;
    position: relative;
    z-index: 101;
}

.closure-inner {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
}

.closure-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.closure-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.closure-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Promo Banner */

.promo-banner {
    display: block;
    /* it's an <a> tag now */
    text-decoration: none;
    background: linear-gradient(90deg, #111111 0%, #222222 50%, #111111 100%);
    color: #ffffff;
    text-align: center;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    font-weight: 400;
    position: relative;
    z-index: 100;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-banner:hover {
    background: linear-gradient(90deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    color: #ffffff;
}

.promo-banner p {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.promo-banner .highlight {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.promo-banner .promo-desktop-only {
    color: #aaaaaa;
}

.promo-banner .promo-cta {
    font-weight: 600;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.3s ease;
}

.promo-banner:hover .promo-cta {
    border-color: #ffffff;
}

.promo-banner i {
    margin-left: 6px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.promo-banner:hover i {
    transform: translateX(3px);
}

.promo-banner.hidden {
    transform: translateY(-100%);
    display: none;
}

/* Header & Navigation */
.glass-header {
    position: sticky;
    top: 0;
    z-index: 90;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.95);
    /* Darker to support overlay */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    min-height: 100px;
    /* Ensure space for nav */
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 100;
}

.brand-logo {
    width: 200px;
    /* Significantly larger */
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
    position: absolute;
    /* Overhang the header slightly */
    top: -40px;
    /* Adjust overhang */
    left: 0;
}

.brand-logo:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

nav a,
nav a:visited {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
}

nav a:hover {
    color: var(--text-primary);
    opacity: 0.8;
}

nav a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    /* Sharper corners for a classier look */
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: inherit;
    font-size: 0.85rem;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    box-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #dedede;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.full-width {
    width: 100%;
}

.mt-4 {
    margin-top: 1rem;
}

/* Effects & Animations */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    /* Sharper corners */
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.12);
}

/* Don't lift the status/location card — it contains a map and feels unstable */
#live-status-card:hover {
    transform: none;
}

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Pulse Animation for Live Status */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

/* =========================================
   SECTIONS
   ========================================= */

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 5%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.5) 75%,
            #000000 100%), url('hero-bg.jpg') center/cover no-repeat,
        linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
}

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

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 2px;
}

.hero .subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin: 1.5rem 0 2.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

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

/* Background Glow Orbs - Removed for pure minimalism */
.glow-orb {
    display: none;
}

.orb-2 {
    display: none;
}

/* Philosophy Section */
.philosophy-section {
    padding: 4rem 5% 2rem;
    text-align: center;
    background: var(--bg-primary);
    display: flex;
    justify-content: center;
}

.philosophy-content {
    max-width: 800px;
}

.philosophy-content p {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    letter-spacing: 1px;
    font-weight: 400;
}

.philosophy-content em {
    font-style: italic;
    color: var(--text-secondary);
}

/* Dashboard / Location Section */
.dashboard-section {
    padding: 5rem 5%;
    position: relative;
    z-index: 2;
    background: var(--bg-primary);
}

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

/* Sections — offset for sticky header */
#location, #menu, #gallery, #giveaway, #schedule {
    scroll-margin-top: 100px;
}

/* Map container — moved from inline styles */
.map-container {
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Status Card Details */
.status-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.status-header h3 {
    color: var(--text-primary);
}

.detail-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.accent-icon {
    font-size: 1.5rem;
    color: var(--accent-brown);
    margin-top: 0.2rem;
}

.detail-row .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.detail-row .value {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-primary);
    font-family: var(--font-serif);
}

/* Schedule Card */
.schedule-list {
    list-style: none;
    margin-top: 1.5rem;
}

.schedule-card h3 {
    color: var(--text-primary);
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.schedule-list li {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
}

.schedule-list li:last-child {
    border-bottom: none;
}

.schedule-list li.active {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    padding: 1.2rem;
    margin: 0 -1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-list .day {
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.schedule-list .loc {
    font-weight: 400;
    color: var(--text-primary);
}

.schedule-list .time {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Menu Section */
.menu-section {
    padding: 6rem 5%;
    background: var(--bg-secondary);
}

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

.menu-card {
    display: flex;
    flex-direction: column;
}

.menu-card .item-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.item-header h3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--text-primary);
}

.price {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 800;
    color: var(--text-primary);
}

.desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Tags */
.tag {
    font-size: 0.65rem;
    padding: 0.3rem 0.8rem;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: var(--font-sans);
    margin-top: 0.2rem;
}

.tag-hot {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tag-new {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    color: #aaaaaa;
}

/* Footer */
footer {
    background: #000000;
    padding: 5rem 5% 2.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.8;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    opacity: 0.6;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.socials a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.socials a:hover {
    color: #000000;
    background: #ffffff;
    transform: translateY(-3px);
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128C7E;
    color: #ffffff;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .promo-banner .promo-desktop-only {
        display: none;
    }

    nav ul {
        display: none;
    }

    .glass-header {
        justify-content: center;
        min-height: 80px;
    }

    .brand-logo {
        position: relative;
        /* Remove absolute positioning on mobile */
        top: 0;
        width: 150px;
    }

    .schedule-list li {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   INSTAGRAM GALLERY
   ========================================= */
.gallery-section {
    padding: 6rem 5%;
    background: var(--bg-primary);
}

.gallery-header {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instagram-handle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: 0.5rem;
}

.instagram-handle:hover { color: #ffffff; }
.instagram-handle i { font-size: 1.2rem; }

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

.insta-tile {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #111111;
    display: block;
    border: 1px solid rgba(255,255,255,0.06);
}

.insta-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

/* Adjusting focus for images 2-6 as per user request to 'drag up' (show more of the bottom/center) */
.instagram-grid a:nth-child(n+2) img {
    object-position: center 65%;
}

.insta-tile:hover img { transform: scale(1.06); }

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 2rem;
    color: #ffffff;
}

.insta-tile:hover .insta-overlay { opacity: 1; }

/* No-photo fallback — shown until real images are dropped in */
.insta-tile.no-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d0d0d;
    border: 1px dashed rgba(255,255,255,0.1);
    cursor: pointer;
}

.insta-tile.no-photo img { display: none; }

.insta-tile.no-photo .insta-overlay {
    opacity: 1;
    background: transparent;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1.5rem;
}

.insta-tile.no-photo .insta-overlay::after {
    content: 'Add your photo';
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    font-family: var(--font-sans);
}

.gallery-cta {
    text-align: center;
    margin-top: 2.5rem;
    padding-bottom: 1rem;
}

.btn-instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(131, 58, 180, 0.35);
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(131, 58, 180, 0.5);
    color: #ffffff;
    filter: brightness(1.1);
}

.btn-instagram i {
    font-size: 1.1rem;
}

/* =========================================
   GIVEAWAY SECTION
   ========================================= */
.giveaway-section {
    padding: 6rem 5%;
    background: var(--bg-secondary);
    text-align: center;
}

.giveaway-inner {
    max-width: 620px;
    margin: 0 auto;
}

.giveaway-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.giveaway-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.giveaway-sub {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.giveaway-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.giveaway-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 0.9rem 1.2rem;
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.giveaway-step strong { color: var(--text-primary); }

.step-num {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.giveaway-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.giveaway-form input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 0.9rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    outline: none;
}

.giveaway-form input::placeholder { color: rgba(255,255,255,0.3); }
.giveaway-form input:focus { border-color: rgba(255,255,255,0.4); }

.giveaway-submit {
    margin-top: 0.5rem;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

.form-disclaimer {
    color: rgba(255,255,255,0.25);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.giveaway-success {
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    background: rgba(255,255,255,0.03);
    color: var(--text-primary);
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.giveaway-success i {
    font-size: 2rem;
    color: #25d366;
    display: block;
    margin-bottom: 0.75rem;
}

/* =========================================
   PAYMENT MODAL
   ========================================= */
.payment-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.payment-modal-inner {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px 30px;
    width: 100%;
    max-width: 480px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 18px;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.close-modal:hover {
    color: white;
}

.payment-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.payment-modal-header i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.payment-modal-header h3 {
    font-family: var(--font-fancy);
    font-size: 1.6rem;
    margin: 0 0 8px 0;
}

.payment-modal-header p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* =========================================
   CLICK & COLLECT / ORDER SECTION
   ========================================= */
.order-section {
    padding: var(--spacing-mobile) 5%;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

@media(min-width: 768px) {
    .order-section {
        padding: var(--spacing-section) 5%;
    }
}

.order-header {
    text-align: center;
    margin-bottom: 50px;
}

.order-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.4);
    color: var(--color-accent);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.order-header .section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 10px auto 0;
}

.order-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

@media(min-width: 900px) {
    .order-layout {
        grid-template-columns: 1.2fr 1fr;
        align-items: start;
    }
}

.order-sub-title {
    font-family: var(--font-fancy);
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--color-white);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Order Menu Cards */
.order-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.2s ease;
    gap: 15px;
}

.order-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.04);
}

.order-card.has-items {
    border-color: rgba(249, 115, 22, 0.5);
    background: rgba(249, 115, 22, 0.06);
}

.order-card-info {
    flex: 1;
}

.order-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.order-pizza-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-white);
}

.order-card-desc {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.4;
}

.order-card-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

.order-price {
    font-weight: 800;
    color: var(--color-accent);
    font-size: 1.1rem;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 4px 10px;
}

.qty-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.2s;
}

.qty-btn:hover {
    background: rgba(249,115,22,0.3);
    color: var(--color-accent);
}

.qty-display {
    font-size: 1rem;
    font-weight: 700;
    min-width: 18px;
    text-align: center;
}

/* Cart Panel */
.order-cart {
    position: sticky;
    top: 90px;
}

.cart-panel {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 25px;
}

.cart-items {
    min-height: 60px;
    margin-bottom: 15px;
}

.cart-empty {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.8;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.95rem;
}

.cart-item-row span:last-child {
    color: var(--color-accent);
    font-weight: 700;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 15px 0 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 20px;
}

.cart-total-row span:last-child {
    color: var(--color-accent);
}

.cart-checkout h4 {
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    color: var(--color-text-muted);
}

.checkout-field {
    margin-bottom: 14px;
}

.checkout-field label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.checkout-field input,
.checkout-field select {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: white;
    font-size: 0.95rem;
    transition: 0.2s;
}

.checkout-field select option {
    background: #111;
    color: white;
}

.checkout-field input:focus,
.checkout-field select:focus {
    border-color: var(--color-accent);
    outline: none;
}

.cart-note {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}

/* =========================================
   CATERING SECTION
   ========================================= */
.catering-section {
    padding: var(--spacing-mobile) 5%;
    background: var(--color-bg);
}

@media(min-width: 768px) {
    .catering-section {
        padding: var(--spacing-section) 5%;
    }
}

.catering-header {
    text-align: center;
    margin-bottom: 40px;
}

.catering-header .section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 10px auto 0;
}

.quote-builder-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media(min-width: 768px) {
    .calculator-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.calc-settings {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.calc-label-row label {
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 1px;
}

#guest-count-display {
    font-size: 1.2rem;
    color: var(--color-accent);
    font-weight: 800;
}

/* Custom Range Slider */
.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    outline: none;
    transition: 0.2s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--color-accent);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--color-accent);
    cursor: pointer;
    border: none;
}

.package-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.package-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.package-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-card input[type="radio"] {
    display: none;
}

.package-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.package-card.active {
    border-color: var(--color-accent);
    background: rgba(249, 115, 22, 0.05);
}

.addons-group {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.addon-checkbox {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: 0.2s;
}

.addon-checkbox:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.addon-checkbox input[type="checkbox"] {
    display: none;
}

.addon-check {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: 0.2s;
}

.addon-checkbox input[type="checkbox"]:checked + .addon-check {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.addon-checkbox input[type="checkbox"]:checked + .addon-check::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.addon-checkbox span {
    font-size: 0.95rem;
    color: var(--color-white);
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
}

.addon-checkbox small {
    color: var(--color-text-muted);
}

.pkg-info h4 {
    margin: 0 0 5px 0;
    font-family: var(--font-fancy);
    font-size: 1.2rem;
}

.pkg-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.pkg-price {
    font-weight: 800;
    color: var(--color-white);
}

.calc-summary {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.estimate-box {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.estimate-box h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin: 0 0 10px 0;
    color: var(--color-white);
}

.estimate-price {
    font-size: 3.5rem;
    font-family: var(--font-fancy);
    color: var(--color-accent);
    margin-bottom: 5px;
    line-height: 1;
}

.estimate-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0;
}

.lead-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 4px;
}

.lead-form input:focus {
    border-color: var(--color-accent);
    outline: none;
}

.lead-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}
@media (max-width: 768px) {
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
}