:root {
    --primary-color: #39FF14;
    /* Neon Green from logo */
    --secondary-color: #ffffff;
    /* White for contrast */
    --accent-color: #32CD32;
    /* Slightly darker green for depth */
    --dark-bg: #050505;
    /* Deep black background */
    --card-bg: #121212;
    /* Dark grey for cards */
    --text-color: #f1f1f1;
    --text-muted: #b3b3b3;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.125rem;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 16, 32, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
/* Hero Section */
.hero-section {
    padding-top: 100px;
    /* Space for fixed header */
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 3rem;
}

/* Dark overlay for readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}


.hero-content {
    z-index: 2;
    position: relative;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

/* Video Highlight Section */
.video-section {
    padding: 4rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0d0e1b;
    /* Slightly darker than main bg for contrast */
}

/* Adjusted video container for standalone section */
.video-container {
    width: 100%;
    max-width: 900px;
    padding: 0;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-top: 1rem;
}



.video-container iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
    display: block;
}

/* Restaurants Section */
.restaurants-section {
    padding: 4rem 5%;
    background-color: var(--dark-bg);
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.restaurant-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: none;
    /* Hide icons in favor of images where present */
}

.partner-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.restaurant-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.restaurant-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 5%;
    background-color: #111;
    text-align: center;
}

.reviews-carousel-container {
    position: relative;
    max-width: 1400px;
    /* Wider for multiple items */
    margin: 0 auto;
    overflow: hidden;
    padding: 2rem 0;
}

.reviews-carousel {
    display: flex;
    gap: 20px;
    cursor: grab;
    /* transition: transform 0.5s ease-out;  <-- Managed by JS for infinite loop mostly, but kept for simple slide */
}

.reviews-carousel:active {
    cursor: grabbing;
}

.review-card {
    flex: 0 0 100%;
    /* Default Mobile: 1 item */
    background-color: transparent;
    /* No white bg */
    border-radius: 15px;
    overflow: visible;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.review-card img {
    width: auto;
    max-width: 300px;
    /* Phone-like width */
    height: auto;
    max-height: 550px;
    /* Taller for phone ratio */
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    display: block;
}

.review-card:hover img {
    transform: scale(1.02);
}

/* Responsive sizes */
@media (min-width: 600px) {
    .review-card {
        flex: 0 0 48%;
        /* Tablet: ~2 items */
    }
}

@media (min-width: 1024px) {
    .review-card {
        flex: 0 0 30%;
        /* Desktop: ~3 items */
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: var(--primary-color);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: #000;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.carousel-dots {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #555;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Contact Section */
.contact-section {
    padding: 4rem 5%;
    background-color: #151628;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.contact-info,
.map-container {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.whatsapp-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 1rem;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

/* Kids Section */
.kids-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, var(--dark-bg), #111);
}

.kids-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.kids-text {
    margin-bottom: 2rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.price-tag .small {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.kids-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-placeholder {
    height: 200px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #777;
    border: 1px dashed #555;
    background-image: url('data:image/svg+xml;charset=utf-8, ...');
    /* Could add pattern */
}

/* About Section */
.about-section {
    padding: 4rem 5%;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* Birthday Section */
.birthday-section {
    padding: 4rem 5%;
    background-color: var(--card-bg);
    text-align: center;
}

.birthday-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #ddd;
}

.birthday-gallery {
    display: none;
}

/* Birthday Carousel */
.birthday-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 2rem auto;
    overflow: hidden;
    padding: 0 40px;
}

.birthday-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    will-change: transform;
}

.birthday-card {
    min-width: 300px;
    max-width: 300px;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.birthday-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    display: block;
}

.birthday-card:hover img {
    transform: scale(1.03);
}

.carousel-btn.prev-btn-birthday,
.carousel-btn.next-btn-birthday {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(57, 255, 20, 0.8);
    border: none;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.prev-btn-birthday {
    left: 0;
}

.next-btn-birthday {
    right: 0;
}

.carousel-btn.prev-btn-birthday:hover,
.carousel-btn.next-btn-birthday:hover {
    background: var(--primary-color);
}

/* Kids Carousel (Mirrors Birthday Carousel) */
.kids-gallery {
    display: none;
}

.kids-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 2rem auto;
    overflow: hidden;
    padding: 0 40px;
}

.kids-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    will-change: transform;
}

.kids-card {
    min-width: 300px;
    max-width: 300px;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.kids-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    display: block;
}

.kids-card:hover img {
    transform: scale(1.03);
}

.carousel-btn.prev-btn-kids,
.carousel-btn.next-btn-kids {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(57, 255, 20, 0.8);
    border: none;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.prev-btn-kids {
    left: 0;
}

.next-btn-kids {
    right: 0;
}

.carousel-btn.prev-btn-kids:hover,
.carousel-btn.next-btn-kids:hover {
    background: var(--primary-color);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.25rem;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #000;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.social-links a {
    color: #fff;
    font-size: 2.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background-color: rgba(15, 16, 32, 0.98);
        padding: 2rem 0;
        text-align: center;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* Language Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 90%;
    width: 500px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.2);
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-logo {
    height: 80px;
    margin-bottom: 2rem;
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-content p {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.language-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: transparent;
    border: 2px solid #333;
    color: #fff;
    padding: 1rem;
    font-size: 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: var(--font-main);
}

.lang-btn img {
    width: 30px;
    height: auto;
    border-radius: 4px;
}

.lang-btn:hover {
    border-color: var(--primary-color);
    background: rgba(57, 255, 20, 0.1);
    transform: translateX(5px);
}

.dev-link {
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition);
    margin-left: 5px;
    text-decoration: none;
}

.dev-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Nav Button Style */
.nav-btn {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: var(--primary-color) !important;
    /* Override default nav link color */
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: var(--primary-color);
    color: #000 !important;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
}

/* Footer Language Button */
.footer-lang-btn {
    display: inline-block;
    background-color: transparent;
    border: 2px solid #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: #fff !important;
    /* Override .social-links a color */
    font-size: 1rem !important;
    /* Override .social-links a font-size */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    vertical-align: middle;
}

.footer-lang-btn:hover {
    background-color: var(--primary-color);
    color: #000 !important;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
}