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

:root {
    --bg-dark: #0A0A0A;
    --bg-gradient-start: #0A0A0A;
    --bg-gradient-end: #0d1a2e; /* Subtle midnight blue */
    --neon-green: #39FF14; /* Electric green */
    --neon-green-darker: #28b40f;
    --text-white: #f0f0f0; /* Soft white */
    --text-neon-white: #ffffff;
    --grey-light: #cccccc;
    --grey-mid: #555555;
    --transparent-black: rgba(10, 10, 10, 0.8); /* For nav */
    --blur-effect: blur(10px);

    --font-heading: 'Oswald', 'Anton', sans-serif; /* Oswald preferred, Anton fallback */
    --font-body: 'Montserrat', 'Poppins', sans-serif; /* Montserrat preferred, Poppins fallback */

    --glow-color: rgba(57, 255, 20, 0.7); /* Neon green glow */
    --glow-spread: 15px;
    --glow-hover-spread: 25px;
    --pulse-animation: pulse 1.5s infinite ease-in-out;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    /* Apply subtle gradient */
    background-image: linear-gradient(to bottom, var(--bg-gradient-start), var(--bg-gradient-end));
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--text-neon-white);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 400; /* Adjust as needed for Oswald/Anton */
}

h1 { font-size: 3rem; } /* Example size, adjust as needed */
h2 { font-size: 2.5rem; color: var(--neon-green); }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--neon-green);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

a:hover, a:focus {
    color: var(--text-neon-white);
    text-shadow: 0 0 10px var(--glow-color);
}

/* --- Layout & Containers --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.content-section {
    padding: 80px 0;
}

/* --- Buttons & Links --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 700; /* Bolder for buttons */
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-neon {
    background-color: var(--neon-green);
    color: var(--bg-dark);
    border-color: var(--neon-green);
    box-shadow: 0 0 var(--glow-spread) var(--glow-color);
}

.btn-neon:hover, .btn-neon:focus {
    background-color: var(--neon-green-darker);
    border-color: var(--neon-green-darker);
    color: var(--bg-dark);
    box-shadow: 0 0 var(--glow-hover-spread) var(--glow-color);
    transform: scale(1.05);
}

.btn-neon-outline {
    background-color: transparent;
    color: var(--neon-green);
    border-color: var(--neon-green);
}

.btn-neon-outline:hover, .btn-neon-outline:focus {
    background-color: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: 0 0 var(--glow-hover-spread) var(--glow-color);
    transform: scale(1.05);
}

.link-neon {
    font-weight: bold;
    display: inline-block; /* Allows transform */
}

.link-neon:hover, .link-neon:focus {
    transform: scale(1.03); /* Subtle scale on hover */
}

/* --- Animations --- */
@keyframes pulse {
    0% { box-shadow: 0 0 var(--glow-spread) var(--glow-color); }
    50% { box-shadow: 0 0 var(--glow-hover-spread) var(--glow-color); }
    100% { box-shadow: 0 0 var(--glow-spread) var(--glow-color); }
}

.cta-button.btn-neon {
    animation: var(--pulse-animation);
}

/* Scroll Fade Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Navigation Bar --- */
.navbar {
    position: fixed; /* Sticky behavior */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent; /* Initially transparent */
    padding: 15px 0;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
    background-color: var(--transparent-black);
    backdrop-filter: var(--blur-effect);
    -webkit-backdrop-filter: var(--blur-effect); /* Safari */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 40px; /* Adjust as needed */
    filter: drop-shadow(0 0 5px var(--glow-color));
    transition: filter 0.3s ease;
}
.nav-logo:hover img {
     filter: drop-shadow(0 0 10px var(--glow-color));
}

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

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: var(--text-white);
    font-family: var(--font-body); /* Or heading font if preferred */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 5px 0;
    position: relative; /* For potential underline effects */
}
.nav-links a::after { /* Underline effect */
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--neon-green);
    transition: width 0.3s ease;
}

.nav-links a:hover, .nav-links a:focus {
    color: var(--neon-green);
    text-shadow: 0 0 8px var(--glow-color);
}
.nav-links a:hover::after {
    width: 100%;
}


.nav-social a {
    color: var(--neon-green);
    font-size: 1.3rem;
    margin-left: 15px;
}

.nav-social a:hover, .nav-social a:focus {
    color: var(--text-neon-white);
    transform: scale(1.1);
    text-shadow: 0 0 10px var(--glow-color);
}

.hamburger {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--neon-green);
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 5px var(--glow-color);
}

/* --- Mobile Nav Overlay --- */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.98); /* Almost opaque */
    backdrop-filter: var(--blur-effect);
     -webkit-backdrop-filter: var(--blur-effect);
    z-index: 1010;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%); /* Start off-screen */
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1); /* Smooth slide */
}

.mobile-nav.active {
    transform: translateX(0);
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    color: var(--neon-green);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    text-shadow: 0 0 10px var(--glow-color);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 25px 0;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-neon-white);
    padding: 10px;
}
.mobile-nav-links a:hover, .mobile-nav-links a:focus {
     color: var(--neon-green);
     text-shadow: 0 0 10px var(--glow-color);
}

.mobile-nav-social {
    margin-top: 40px;
}
.mobile-nav-social a {
    font-size: 2rem;
    margin: 0 15px;
    color: var(--neon-green);
}
.mobile-nav-social a:hover, .mobile-nav-social a:focus {
     color: var(--text-neon-white);
     text-shadow: 0 0 10px var(--glow-color);
     transform: scale(1.1);
}


/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text visibility */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    max-width: 80%;
    width: 400px; /* Adjust size as needed */
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px var(--glow-color));
}

/* --- About Section --- */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.about-badges {
    margin: 1.5rem 0;
}

.badge {
    display: inline-block;
    background-color: rgba(57, 255, 20, 0.1); /* Subtle neon background */
    color: var(--neon-green);
    padding: 5px 15px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    font-weight: bold;
    border: 1px solid rgba(57, 255, 20, 0.3);
    text-transform: uppercase;
}

/* --- Events Section --- */
.events-section {
    text-align: center;
}

.calendar-widget {
    margin: 30px auto;
    max-width: 800px; /* Limit width */
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05); /* Subtle background */
    border-radius: 8px;
    border: 1px solid var(--grey-mid);
    min-height: 300px; /* Placeholder height */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* --- Gallery Section --- */
.gallery-filters {
    text-align: center;
    margin-bottom: 30px;
}

.filter-btn {
    background: none;
    border: 1px solid var(--grey-mid);
    color: var(--grey-light);
    padding: 8px 20px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.filter-btn:hover, .filter-btn:focus, .filter-btn.active {
    background-color: var(--neon-green);
    border-color: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: 0 0 10px var(--glow-color);
}

.gallery-grid {
    display: grid; /* Basic grid, JS Masonry preferred */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    /* Add styles for Masonry layout if using it */
}

.gallery-item {
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}

.gallery-item img,
.gallery-item video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, border 0.3s ease;
    border: 3px solid transparent;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
    border: 3px solid var(--neon-green);
    box-shadow: 0 0 10px var(--glow-color);
}

/* --- VIP Packages Section --- */
.vip-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vip-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--grey-mid);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.vip-header {
    color: var(--neon-green);
    font-size: 1.5rem;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--neon-green);
}

.vip-icon {
    color: var(--neon-green);
    margin-bottom: 20px;
    text-shadow: 0 0 8px var(--glow-color);
}

.vip-card ul {
    list-style: none;
    margin-bottom: 30px;
    min-height: 120px; /* Ensure consistent height */
}

.vip-card li {
    margin-bottom: 10px;
    color: var(--grey-light);
}

.vip-card .btn {
    width: 80%;
}

/* --- Location Section --- */
.location-section {
    position: relative;
    padding: 0; /* No padding on section itself */
}

.map-container {
    width: 100%;
    height: 450px; /* Or adjust */
}
.map-container iframe {
    filter: grayscale(100%) contrast(1.2) brightness(0.8); /* Dark mode map */
    /* Further customization might need Google Maps JS API */
}


.location-overlay-box {
    position: absolute;
    top: 50%;
    left: 10%; /* Position on the left */
    transform: translateY(-50%);
    background-color: var(--transparent-black);
    backdrop-filter: var(--blur-effect);
    -webkit-backdrop-filter: var(--blur-effect);
    padding: 30px;
    border-radius: 8px;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--grey-mid);
}

.location-overlay-box h3 {
    color: var(--neon-green);
    margin-bottom: 15px;
}

.hours p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}
.hours strong {
    display: inline-block;
    width: 80px; /* Align times */
}

.location-overlay-box .btn {
    margin-top: 15px;
    display: block; /* Make button full width */
}

.taxi-widget {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--grey-mid);
}

.taxi-widget h4 {
    font-size: 1rem;
    color: var(--text-white);
}
.taxi-widget select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    background-color: var(--grey-mid);
    color: var(--text-white);
    border: 1px solid var(--neon-green);
    border-radius: 4px;
}
.taxi-widget p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--neon-green);
}

/* --- Reviews Section --- */
.reviews-section h2 {
    text-align: center;
    margin-bottom: 40px;
}
.reviews-carousel, .instagram-feed {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--grey-mid);
    padding: 20px;
    margin-bottom: 40px;
    min-height: 150px; /* Placeholder */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-align: center;
}
.reviews-section .link-neon {
    display: block;
    text-align: center;
    margin-top: 20px;
}

/* --- Contact Section --- */
.contact-section {
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 30px auto 0;
    text-align: left;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: transparent;
    border: 1px solid var(--grey-mid);
    border-radius: 4px;
    color: var(--text-white);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 5px var(--glow-color);
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 15px;
    color: var(--grey-light);
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

/* Float label effect */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label, /* Assumes a default non-empty value or JS handling */
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.75rem;
    color: var(--neon-green);
    background-color: var(--bg-dark); /* Match page background */
    padding: 0 5px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 15px;
}

/* --- Footer --- */
.footer {
    background-color: #050505; /* Slightly darker than main bg */
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden; /* Needed for parallax */
}

.footer-parallax-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px; /* Adjust height of wave */
    background-image: url('assets/img/wave-silhouette.svg'); /* Add an SVG wave */
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: cover; /* Or adjust */
    opacity: 0.1;
    /* Simple Parallax - requires 'background-attachment: fixed' on body bg or JS */
    /* More advanced JS parallax recommended */
     z-index: 1;
}


.footer-container {
    position: relative; /* Ensure content is above parallax */
    z-index: 2;
    text-align: center;
}

.footer-newsletter {
    margin-bottom: 40px;
}

.footer-newsletter h4 {
    color: var(--neon-green);
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid var(--grey-mid);
    background: var(--bg-dark);
    color: var(--text-white);
    border-radius: 5px 0 0 5px;
}
.newsletter-form input[type="email"]:focus {
     outline: none;
     border-color: var(--neon-green);
     box-shadow: 0 0 5px var(--glow-color) inset;
}

.newsletter-form .btn {
    border-radius: 0 5px 5px 0;
    padding: 10px 20px; /* Adjust padding */
}

.footer-links nav ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.footer-links nav li {
    display: inline-block;
    margin: 0 10px;
}

.footer-links nav a {
    color: var(--grey-light);
    font-size: 0.9rem;
}
.footer-links nav a:hover, .footer-links nav a:focus {
     color: var(--neon-green);
     text-shadow: none; /* Remove default link shadow if needed */
}


.footer-social {
    margin-bottom: 30px;
}

.footer-social a {
    color: var(--neon-green);
    font-size: 1.5rem;
    margin: 0 10px;
}
.footer-social a:hover, .footer-social a:focus {
     color: var(--text-neon-white);
     transform: scale(1.1);
     text-shadow: 0 0 10px var(--glow-color);
}

.footer-contact p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}
.footer-contact a {
     color: var(--grey-light);
}
.footer-contact a:hover, .footer-contact a:focus {
     color: var(--neon-green);
     text-shadow: none;
}


.footer-legal {
    margin-top: 30px;
    font-size: 0.8rem;
    color: var(--grey-mid);
}

/* --- Responsive Design --- */

/* Tablets (e.g., iPads) */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2.2rem; }

    .container { width: 95%; }

    .nav-links { display: none; } /* Hide desktop links */
    .hamburger { display: block; } /* Show hamburger */

    .about-container { grid-template-columns: 1fr; text-align: center;}
    .about-image { margin-bottom: 30px; max-width: 400px; margin-left: auto; margin-right: auto;}

    .vip-cards { grid-template-columns: 1fr; max-width: 450px; margin-left: auto; margin-right: auto; } /* Stack VIP cards */

    .location-overlay-box {
        position: static; /* Unset absolute position */
        transform: none;
        margin: 30px auto; /* Center below map */
        left: auto;
        width: 90%;
        max-width: 400px;
        text-align: center;
    }

    .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

     /* Calendar might need list view styling */
    .calendar-widget { /* Example - make it a simpler list */
        text-align: left;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
     h1 { font-size: 2rem; }
     h2 { font-size: 1.8rem; }
     h3 { font-size: 1.5rem; }

    .content-section { padding: 60px 0; }

    .nav-social { display: none; } /* Hide social icons in top bar on smallest screens */

    .hero-logo { width: 250px; }
    .btn { padding: 10px 20px; font-size: 0.9rem;}

    .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px;}

    .footer-links nav li { display: block; margin: 10px 0;} /* Stack footer links */
    .newsletter-form { flex-direction: column; }
    .newsletter-form input[type="email"] { border-radius: 5px; margin-bottom: 10px; }
    .newsletter-form .btn { border-radius: 5px; width: 100%; }

    .contact-form { max-width: 100%; }
}

@media (max-width: 480px) {
    .hero-logo { width: 200px; }
     .mobile-nav-links a { font-size: 1.5rem; }
     .mobile-nav-social a { font-size: 1.8rem; }
     .badge { font-size: 0.75rem; padding: 4px 10px;}
}