@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Poppins:wght@600;700&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Base Colors */
    --bg-base: #0B1020;
    --bg-deep: #1A1F3C;
    
    /* Neon Accents */
    --neon-pink: #FF2E93;
    --neon-purple: #7B61FF;
    --party-blue: #3ABEFF;
    
    /* Highlights */
    --spark-gold: #FFC857;
    --neon-cyan: #00F5D4;
    
    /* Glass UI */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-hover: rgba(255, 255, 255, 0.12);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-alt-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-base);
    color: #ffffff;
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Gradients & Blobs */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(120px);
    opacity: 0.4;
    border-radius: 50%;
    animation: floatBlob 20s infinite alternate linear;
}

.blob-1 { top: -10%; left: -10%; width: 500px; height: 500px; background: var(--neon-purple); }
.blob-2 { bottom: -20%; right: -10%; width: 600px; height: 600px; background: var(--neon-pink); animation-delay: -5s; }
.blob-3 { top: 40%; left: 40%; width: 400px; height: 400px; background: var(--party-blue); animation-delay: -10s; }

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, 50px) scale(1.2); }
    100% { transform: translate(-50px, 150px) scale(0.8); }
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(90deg, var(--neon-cyan), var(--party-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-party {
    background: linear-gradient(90deg, var(--neon-pink), var(--spark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 5%;
    transition: all 0.4s ease;
}

header.scrolled {
    padding: 1rem 5%;
    background: rgba(11, 16, 32, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(123, 97, 255, 0.1);
}

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

.logo {
    font-family: var(--font-alt-heading);
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.logo span {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 245, 212, 0.5);
}

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

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s, text-shadow 0.3s;
    position: relative;
}

.nav-links li a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(0, 245, 212, 0.6);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin-inline: auto;
}

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

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--neon-pink);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 46, 147, 0.4);
}

.btn-primary:hover {
    background: #ff47a1;
    box-shadow: 0 0 30px rgba(255, 46, 147, 0.7);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--glass-bg);
    color: #fff;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--glass-hover);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.3);
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 6rem 5%;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.7);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(16px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, var(--glass-hover) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.glass-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: transform 0.5s;
}

.glass-card:hover img {
    transform: scale(1.05);
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.glass-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* Party Section Specifics */
.party-section {
    position: relative;
}

.party-section .glass-card:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 46, 147, 0.2);
}

/* Spa Section Specifics */
.spa-section {
    background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-deep) 100%);
}

.spa-section .glass-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 245, 212, 0.2);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--party-blue);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 15px rgba(58, 190, 255, 0.3);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Booking Page Layout */
.booking-container {
    max-width: 800px;
    margin: 120px auto 4rem;
}

/* Review Cards */
.review-card {
    border-color: var(--neon-purple);
    box-shadow: inset 0 0 20px rgba(123, 97, 255, 0.05);
}

/* Counters */
.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: var(--glass-bg);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--spark-gold);
    text-shadow: 0 0 20px rgba(255, 200, 87, 0.4);
    font-family: var(--font-alt-heading);
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
}

/* Page Headers */
.page-header {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--bg-base) 0%, rgba(11,16,32,0.6) 100%);
}

.page-header h1 {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
}

/* Footer */
footer {
    background: #050812;
    padding: 5rem 5% 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--spark-gold);
}

.footer-bottom {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.subtle-phone {
    opacity: 0.5;
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Floating Action Button (Mobile Book) */
.fab-book {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--neon-pink);
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 46, 147, 0.5);
    z-index: 999;
}

/* Particle System Canvas */
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Animations */
@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 120px auto 4rem;
    background: var(--glass-bg);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.legal-content h1 { margin-bottom: 2rem; color: var(--neon-cyan); }
.legal-content h2 { margin-top: 2rem; margin-bottom: 1rem; font-size: 1.5rem; color: var(--spark-gold); }
.legal-content p, .legal-content ul { margin-bottom: 1rem; color: rgba(255,255,255,0.8); }
.legal-content ul { padding-left: 2rem; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 3.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(11, 16, 32, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
    }
    .nav-links.active { right: 0; }
    
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .btn-group { flex-direction: column; }
    .fab-book { display: block; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    
    .section { padding: 4rem 5%; }
    .stats-grid { flex-direction: column; gap: 3rem; }
}