/* Google Fonts - Outfit & Raleway */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@600;700;800;900&display=swap');

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

/* Beis Samech Daled */
.bsd {
    position: fixed;
    top: 8px;
    right: 14px;
    font-family: 'Times New Roman', serif;
    font-size: 14px;
    color: var(--text-secondary, #64748b);
    z-index: 10000;
    pointer-events: none;
    user-select: none;
}

/* ===========================================
   THEME CONFIGURATION - DARK RED (Lakewood)
   =========================================== */
:root {
    /* Primary Colors - Red Palette (matching ad) */
    --primary: #C8102E;
    --primary-rgb: 200, 16, 46;
    --primary-dark: #A30D24;
    --primary-light: #E63950;

    /* Secondary/Accent Colors */
    --secondary: #E63950;
    --accent: #D4AF37;
    --accent-warm: #D4AF37;

    /* Background Colors - Dark Theme */
    --bg-dark: #1a1a1a;
    --bg-dark-rgb: 26, 26, 26;
    --bg-card: #1e1e1e;
    --bg-card-rgb: 30, 30, 30;
    --bg-light: #222222;
    --bg-white: #1a1a1a;
    --bg-gradient-1: #1a1a1a;
    --bg-gradient-2: #1a1914;
    --bg-gradient-3: #14181a;
    --bg-faq: #1a1518;
    --bg-footer: #111111;

    /* Text Colors */
    --text-dark: #f0f0f0;
    --text-dark-rgb: 240, 240, 240;

    /* Status Colors */
    --success: #22c55e;
    --success-rgb: 34, 197, 94;
    --error: #ef4444;

    /* Utility */
    --transition: all 0.3s ease;
    --white: #ffffff;
    --white-rgb: 255, 255, 255;

    /* ===========================================
       DESIGN SYSTEM - Visual Polish
       =========================================== */

    /* Typography */
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    --line-height-tight: 1.2;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;

    --letter-spacing-tight: -0.02em;
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.02em;

    /* Consistent Border Radius - Sharp/Angular */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 10px;
    --radius-full: 4px;

    /* Layered Shadow System - Dark Theme */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3),
                 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.3),
                 0 4px 8px rgba(0, 0, 0, 0.2),
                 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 4px 6px rgba(0, 0, 0, 0.2),
                 0 8px 16px rgba(0, 0, 0, 0.25),
                 0 16px 32px rgba(0, 0, 0, 0.2),
                 0 32px 64px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(var(--primary-rgb), 0.3),
                   0 0 40px rgba(var(--primary-rgb), 0.15);

    /* Glassmorphism - Dark */
    --glass-bg: rgba(var(--white-rgb), 0.06);
    --glass-border: rgba(var(--primary-rgb), 0.15);
    --glass-blur: blur(12px);

    /* Computed Values - Don't edit these directly */
    --primary-color: var(--primary);
    --text-light: #f0f0f0;
    --text-muted: rgba(var(--text-dark-rgb), 0.65);
    --card-bg: rgba(var(--primary-rgb), 0.08);
    --success-color: var(--success);
    --error-color: var(--error);

    /* Display font for headings/logo */
    --font-family-display: 'Raleway', sans-serif;

    /* Admin page font */
    --font-family-admin: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    /* Additional semantic colors */
    --color-warning: #d97706;
    --color-warning-dark: #b45309;
    --color-success-text: #16a34a;
    --color-danger-text: #dc2626;
    --color-muted: #94a3b8;
    --color-slate-border: #333333;
    --color-whatsapp: #25D366;
    --color-zelle-start: #6b21a8;
    --color-zelle-end: #7c3aed;
    --primary-darker: #7D0A1A;
    --primary-lighter: #E63950;
    --bg-lightest: #222222;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
    background: linear-gradient(135deg, var(--bg-gradient-1) 0%, var(--bg-gradient-2) 50%, var(--bg-gradient-3) 100%);
    color: var(--text-light);
    line-height: var(--line-height-normal);
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #111111;
    padding: 7.4px 0;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    border-bottom: 3px solid #C8102E;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo with Mascot */
.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    position: relative;
}

.logo-mascot {
    height: 52.2px;
    width: auto;
    object-fit: contain;
}

.logo-img {
    height: 50.6px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.625rem;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Times New Roman', Georgia, serif;
}

.logo-text span {
    color: #C8102E;
    font-weight: 400;
}

.logo-text .i-dot-wrap {
    position: relative;
    display: inline-block;
    color: #FFFFFF;
}

.i-dot {
    position: absolute;
    bottom: 65%;
    left: 65%;
    transform: translateX(-50%);
    width: 0.45em;
    height: auto;
    pointer-events: none;
    z-index: 2;
}

.ea-wrap {
    position: relative;
    display: inline-block;
}

.ea-bubble {
    position: absolute;
    bottom: 64%;
    left: 60%;
    transform: translateX(-50%);
    width: 1.23em;
    height: auto;
    pointer-events: none;
    z-index: 2;
}

.footer-logo-text {
    color: var(--dark);
}

/* Spray cone + animated droplets from logo nozzle */
.spray-effect {
    position: absolute;
    top: 4px;
    left: 222px;
    pointer-events: none;
    width: 25px;
    height: 12px;
    background: linear-gradient(to right, rgba(200, 16, 46, 0.35), rgba(230, 57, 80, 0.1) 70%, transparent);
    clip-path: polygon(0 40%, 100% 0%, 100% 100%);
    animation: conePulse 2s ease-in-out infinite;
}

/* Droplet group A */
.spray-effect::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(200, 16, 46, 0.6);
    box-shadow:
        8px -3px 0 1px rgba(230, 57, 80, 0.5),
        16px 1px 0 0.5px rgba(200, 16, 46, 0.4),
        12px 3px 0 1.5px rgba(230, 57, 80, 0.35);
    animation: sprayDrops 1.6s linear infinite;
}

/* Droplet group B — offset for seamless loop */
.spray-effect::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 4px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(230, 57, 80, 0.55);
    box-shadow:
        7px 2px 0 1px rgba(200, 16, 46, 0.45),
        14px -2px 0 0.5px rgba(230, 57, 80, 0.35),
        10px -4px 0 1px rgba(230, 57, 80, 0.3);
    animation: sprayDrops 1.6s linear infinite;
    animation-delay: -0.8s;
}

@keyframes conePulse {
    0%, 100% { opacity: 0.6; transform: scaleX(1) scaleY(1); }
    50% { opacity: 0.9; transform: scaleX(1.1) scaleY(1.15); }
}

@keyframes sprayDrops {
    0% { opacity: 0; transform: translateX(0) scale(0.8); }
    12% { opacity: 0.8; }
    80% { opacity: 0.4; }
    100% { opacity: 0; transform: translateX(18px) scale(0.5); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.nav-links a:hover {
    color: #D4AF37;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-wide);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

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

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.btn-book-active {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
    transform: scale(0.92);
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.8);
}

.mt-sm {
    margin-top: 10px;
}

.mt-md {
    margin-top: 20px;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-family: var(--font-family-display);
    font-weight: var(--font-weight-extrabold);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-light);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 12px auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.1rem;
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-relaxed);
}

/* Footer */
.footer {
    background: var(--bg-footer);
    padding: 50px 0 20px;
    position: relative;
    border-top: 4px solid var(--primary);
}


.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-bottom: 15px;
    font-family: 'Times New Roman', Georgia, serif;
    font-weight: 700;
}

.footer-mascot {
    height: 54px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 59px;
    width: auto;
    object-fit: contain;
}

.footer-info p {
    color: var(--text-muted);
}

.footer-contact h4,
.footer-hours h4 {
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
}

.footer-contact p,
.footer-hours p {
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-notice {
    text-align: center;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-top: 1px solid rgba(var(--primary-rgb), 0.2);
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(var(--primary-rgb), 0.2);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Loading Animation */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* WhatsApp Floating Button */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1000;
}

.whatsapp-label {
    display: block;
    background: var(--white);
    color: #333;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* ========== BASE RESPONSIVE ========== */

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #111111;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

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

    .logo-section {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .logo-mascot {
        height: 36px;
    }

    .logo-text {
        font-size: 1.375rem;
    }

    .logo-img {
        height: 36px;
    }

    .spray-effect {
        left: 145px;
        top: 1.3px;
    }

    .mobile-quick-links {
        display: flex;
        gap: 8px;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .mobile-quick-links a {
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
    }

    .mobile-quick-links a:hover {
        color: #D4AF37;
    }

    .mobile-quick-links span {
        color: rgba(255, 255, 255, 0.5);
        font-weight: 500;
    }

    .section-title {
        font-size: 2rem;
    }

    .whatsapp-container {
        bottom: 20px;
        right: 20px;
        flex-direction: row;
    }

    .whatsapp-label {
        display: block;
        opacity: 0;
        transform: translateX(10px);
        transition: all 0.3s ease;
    }

    .whatsapp-label.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

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

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

    .footer-mascot {
        height: 45px;
    }

    .footer-logo-img {
        height: 47px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* Cancellation Policy Note */
.cancellation-policy {
    margin-top: 12px;
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
    line-height: 1.4;
}
