/* ============================================
   STELLA LANDING PAGE — Conversion Optimised
   ============================================ */

:root {
    --primary: #1e90ff;
    --primary-dark: #0066cc;
    --primary-light: #87ceeb;
    --secondary: #0a1628;
    --accent: #00bfff;
    --text: #ffffff;
    --text-muted: rgba(255,255,255,0.6);
    --bg-dark: #060d1a;
    --bg-card: rgba(255,255,255,0.04);
    --border: rgba(255,255,255,0.08);
    --success: #00c853;
    --warning: #ffd600;
    --danger: #ff3b6f;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ============================================
   AGE VERIFICATION OVERLAY
   ============================================ */
.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.age-overlay.hidden {
    display: none;
}

.age-modal {
    background: var(--secondary);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    border: 1px solid var(--border);
    animation: fadeInUp 0.5s ease;
}

.age-modal h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.age-modal p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-buttons .btn {
    min-width: 120px;
}

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(30,144,255,0.12) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
    max-width: 500px;
    width: 100%;
}

/* Profile Image — OUTER GLOW */
.hero-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-image {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(30,144,255,0.3);
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.hero-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0.3;
    filter: blur(25px);
    animation: glow-pulse 3s ease-in-out infinite;
    z-index: 0;
}

.hero-name {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Active now indicator */
.active-indicator {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    background: none;
    -webkit-text-fill-color: var(--success);
    color: var(--success);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    vertical-align: middle;
    margin-left: 0.3rem;
}

.active-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

.hero-tagline {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    min-height: 1.6rem;
}

/* Location badge */
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--success);
    margin-bottom: 1.2rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.location-badge.visible {
    opacity: 1;
}

.location-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

.location-text {
    font-size: 0.8rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text);
    box-shadow: 0 4px 20px rgba(30,144,255,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(30,144,255,0.6);
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.15rem;
}

.btn-pulse {
    animation: pulse-btn 2s infinite;
}

.hero-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
    opacity: 0.6;
}

/* Scroll hint */
.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin-top: 2.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s;
}

.scroll-hint:hover {
    opacity: 0.8;
}

.scroll-arrow {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
}

.gallery-header {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-header h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 0.3rem;
}

.gallery-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid var(--border);
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(30,144,255,0.3);
    border-color: var(--primary);
}

/* Gallery CTA */
.gallery-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.cta-sub {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.8rem;
    opacity: 0.7;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9998;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--text);
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--primary);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-disclaimer {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.75rem;
    opacity: 0.5;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.25; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.08); }
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 4px 20px rgba(30,144,255,0.4); }
    50% { box-shadow: 0 4px 35px rgba(30,144,255,0.8); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-image {
        width: 220px;
        height: 220px;
    }

    .hero-glow {
        top: -16px;
        left: -16px;
        right: -16px;
        bottom: -16px;
        filter: blur(20px);
    }

    .hero-name {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .gallery-header h2 {
        font-size: 1.8rem;
    }

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

    .gallery-grid img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        width: 180px;
        height: 180px;
    }

    .hero-glow {
        top: -14px;
        left: -14px;
        right: -14px;
        bottom: -14px;
        filter: blur(16px);
    }

    .hero-name {
        font-size: 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid img {
        height: 200px;
    }
}
