/* --- CSS VARIABLES & RESET --- */
:root {
    --bg-color: #050505;       /* Ultra Dark Grey */
    --surface-color: #1a1a1a;  /* Slightly lighter for cards */
    --text-primary: #F2F2F2;   /* Off-white for readability */
    --text-secondary: #a0a0a0;
    --accent-color: #CCFF00;   /* Acid Lime - High Contrast */
    
    --font-display: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    --spacing-section: 6rem;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 0;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 3rem;
    border-bottom: 1px solid var(--accent-color);
    display: inline-block;
    margin-bottom: 2rem;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.accent-text {
    color: var(--accent-color);
}

.small-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero-subtext {
    max-width: 500px; 
    font-size: 1.2rem; 
    color: var(--text-secondary);
}

.section-subtext {
    margin-bottom: 2rem; 
    color: var(--text-secondary);
}

/* --- ACCESSIBILITY --- */
a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 4px;
}

/* --- UTILITY CLASSES --- */
.feature-suppressed {
    display: none !important;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(204, 255, 0, 0.2);
    color: #fff;
}

/* --- HEADER & NAV --- */
header {
    padding: 1rem 0; /* Reduced padding for neatness */
    position: fixed; /* CHANGED from absolute to fixed */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;   /* High Z-index to sit on top of everything */
    background-color: rgba(5, 5, 5, 0.9); /* Semi-transparent black */
    backdrop-filter: blur(10px); /* The "Frosted Glass" effect */
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    font-size: 1.5rem;
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background-image: linear-gradient(rgba(5,5,5,0.3), var(--bg-color)), url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?q=80&w=2074&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.status-badge {
    display: inline-block;
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* --- GALLERY SECTION --- */
section {
    padding: var(--spacing-section) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--surface-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(100%);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.insta-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* --- SUPPRESSED SECTIONS --- */
.booking-widget {
    background-color: var(--surface-color);
    padding: 3rem;
    text-align: center;
    border: 1px solid #333;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--surface-color);
    padding: 2rem;
    border: 1px solid #333;
    text-align: center;
}

.product-price {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent-color);
    margin: 1rem 0;
}

/* --- FOOTER --- */
footer {
    border-top: 1px solid #333;
    padding: 4rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-col p {
    color: var(--text-secondary);
    margin: 0.5rem 0;
}

.footer-socials {
    font-size: 1.2rem;
}

.copyright {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: #555;
}

/* --- MOBILE ADJUSTMENTS (FIXED) --- */
@media (max-width: 768px) {
    h1 { font-size: 3.5rem; }
    .hero { background-position: 70% center; }
    
    .nav-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    .main-menu {
        margin: 0.5rem 0;
        gap: 1.5rem;
    }
    .map-buttons {
        flex-direction: column;
    }
    .btn-map {
        width: 100%;
        justify-content: center;
    }
} 
/* END OF MEDIA QUERY - THIS WAS THE MISSING PIECE */

/* --- NEW NAVIGATION MENU --- */
.main-menu {
    display: flex;
    gap: 2rem;
    margin: 0 2rem;
}

.main-menu a {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

.main-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-menu a:hover::after,
.main-menu a.active::after {
    width: 100%;
}

/* --- PRICES PAGE STYLES --- */
.prices-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(rgba(5,5,5,0.7), var(--bg-color)), url('https://images.unsplash.com/photo-1542834759-47919739db06?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.price-list-section {
    padding-bottom: 6rem;
}

/* 1. The "Highlighter" Header Style */
.price-category h3 {
    background-color: var(--accent-color); /* The Green Highlight */
    color: var(--bg-color);                /* Black Text */
    padding: 0.5rem 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    display: inline-block;
    margin-bottom: 2.5rem;
    
    /* A slight angle for that "Ultra Modern" feel */
    transform: skew(-10deg); 
    box-shadow: 5px 5px 0px rgba(255,255,255,0.1);
}

/* Fix text inside the skewed box so it stands straight */
.price-category h3 span {
    display: block;
    transform: skew(10deg);
}

/* 2. Better Definition for Price Items */
.price-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; 
    padding-bottom: 1.5rem; 
    margin-bottom: 2rem;
    border-bottom: 1px dotted rgba(204, 255, 0, 0.3);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item:hover {
    border-bottom-color: var(--accent-color);
}

.price-info h4 {
    margin: 0;
    font-size: 1.2rem;
    font-family: var(--font-display);
    color: #fff; /* Kept white for contrast against background */
}

.price-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.price-cost {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-left: 3rem; 
}

/* 3. New Dark Background Class */
.textured-bg {
    background-color: var(--bg-color);
    background-image: 
        linear-gradient(rgba(5,5,5,0.92), rgba(5,5,5,0.95)), 
        url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=2564&auto=format&fit=crop');
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
}

/* --- MAP BUTTONS --- */
.map-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    font-family: var(--font-body);
}

.btn-map:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: white; 
}

.apple-map {
    background-color: #333; 
    color: #fff;
    border: 1px solid #555;
}

.google-map {
    background-color: #4285F4;
    color: #fff;
    border: 1px solid #4285F4;
}

/* --- LEGAL PAGE STYLES --- */
.page-header {
    padding-top: 8rem; 
    padding-bottom: 4rem;
    background-color: var(--surface-color);
    text-align: center;
    border-bottom: 1px solid #333;
}

.legal-content {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.legal-content h2 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-top: 3rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.legal-content p, .legal-content li {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style-type: disc;
    padding-left: 2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.footer-legal-menu {
    margin-top: 1rem;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.footer-legal-menu a {
    color: var(--text-secondary);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-legal-menu a:hover {
    color: var(--accent-color);
}



/* --- TESTIMONIALS / REVIEWS SECTION --- */
.reviews-section {
    background-color: var(--bg-color);
    /* Subtle diagonal stripe pattern for texture */
    background-image: repeating-linear-gradient(
        45deg,
        var(--surface-color),
        var(--surface-color) 10px,
        var(--bg-color) 10px,
        var(--bg-color) 20px
    );
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background-color: var(--surface-color);
    padding: 2rem;
    border: 1px solid #333;
    border-radius: 4px; /* Sharp corners for modern look */
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

/* The Google "G" Icon */
.google-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 24px;
    height: 24px;
    background: white;
    mask: url('https://upload.wikimedia.org/wikipedia/commons/5/53/Google_%22G%22_Logo.svg') no-repeat center;
    mask-size: contain;
    -webkit-mask: url('https://upload.wikimedia.org/wikipedia/commons/5/53/Google_%22G%22_Logo.svg') no-repeat center;
    -webkit-mask-size: contain;
    background-color: var(--text-secondary); /* Dimmed initially */
}

.review-card:hover .google-icon {
    background-color: #4285F4; /* Google Blue on hover */
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--accent-color);
    font-family: var(--font-display);
}

.reviewer-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: block;
}

.review-stars {
    color: #F4B400; /* Official Google Star Yellow */
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

/* --- MISSING REVIEWS CSS --- */
.reviews-section {
    background-color: var(--bg-color);
    margin-top: 4rem;
    padding-bottom: 4rem;
    /* Subtle diagonal stripe pattern for texture */
    background-image: repeating-linear-gradient(
        45deg,
        var(--surface-color),
        var(--surface-color) 10px,
        var(--bg-color) 10px,
        var(--bg-color) 20px
    );
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background-color: var(--surface-color);
    padding: 2rem;
    border: 1px solid #333;
    border-radius: 4px; 
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

/* The Google "G" Icon */
.google-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 24px;
    height: 24px;
    background: white;
    mask: url('https://upload.wikimedia.org/wikipedia/commons/5/53/Google_%22G%22_Logo.svg') no-repeat center;
    mask-size: contain;
    -webkit-mask: url('https://upload.wikimedia.org/wikipedia/commons/5/53/Google_%22G%22_Logo.svg') no-repeat center;
    -webkit-mask-size: contain;
    background-color: var(--text-secondary); 
}

.review-card:hover .google-icon {
    background-color: #4285F4; 
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--accent-color);
    font-family: var(--font-display);
}

.reviewer-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: block;
}

.review-stars {
    color: #F4B400; /* Google Yellow */
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    font-style: italic;
}

/* --- MOBILE STICKY BOTTOM BAR --- */
.mobile-bottom-bar {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--surface-color);
        border-top: 1px solid var(--accent-color);
        padding: 1rem;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    }

    .mobile-bottom-bar .status {
        font-size: 0.9rem;
        font-weight: bold;
        color: white;
    }

    .mobile-bottom-bar .btn {
        padding: 0.5rem 1.5rem; /* Smaller button for bar */
        font-size: 0.9rem;
        margin: 0; /* Reset margins */
    }
    
    /* Push footer up so it's not hidden behind the bar */
    footer {
        padding-bottom: 5rem;
    }
}


/* --- NEW BOOKING SECTION STYLES --- */
.booking-section {
    background-color: var(--bg-color);
    border-top: 1px solid #333;
    padding-bottom: 4rem;
}

.booking-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.booking-card {
    background: var(--surface-color);
    padding: 2.5rem;
    border: 1px solid #333;
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Highlight the "Priority" card subtly */
.highlight-card {
    border-color: rgba(204, 255, 0, 0.3);
    background: linear-gradient(180deg, var(--surface-color) 0%, rgba(204, 255, 0, 0.05) 100%);
}

.booking-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.booking-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.booking-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* List of Perks */
.booking-perks {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.booking-perks li {
    color: #ccc;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.booking-perks i {
    color: var(--accent-color);
    margin-right: 0.8rem;
}

/* Buttons */
.full-width-btn {
    width: 100%;
    text-align: center;
}

.btn-outline {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.8rem;
    border: 1px solid #555;
    color: white;
    text-decoration: none;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    transition: all 0.2s;
}

.btn-outline:hover {
    background-color: white;
    color: black;
    border-color: white;
}

/* Traffic Light Status */
.wait-time-indicator {
    background: rgba(0,0,0,0.3);
    padding: 1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    border: 1px solid #333;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px currentColor;
}

.live-green {
    background-color: #00ff00;
    color: #00ff00; /* For shadow */
    animation: pulse 2s infinite;
}

.live-orange {
    background-color: orange;
    color: orange;
}

.live-red {
    background-color: red;
    color: red;
}

.status-text {
    color: white;
    font-size: 0.9rem;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}