/* ============================================
   VIBELORD - Luxury Coming Soon Landing Page
   ============================================ */

:root {
    --color-bg: #0a0a0a;
    --color-text: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.85);
    --color-accent: #c9a227;
    --color-accent-glow: rgba(201, 162, 39, 0.4);
    --color-glass: rgba(255, 255, 255, 0.05);
    --color-glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Bebas Neue', 'Anton', sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    font-weight: 400;
}

/* Full-page fixed background */
.page-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.page-bg-image {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.page-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.5) 30%,
        rgba(0, 0, 0, 0.65) 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
    transition: opacity 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    width: 100%;
    max-width: 900px;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--color-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 60px var(--color-accent-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Hero Typography */
.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-headline .line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-headline .line.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-headline .line.brand {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 0.45em;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.35em;
    color: var(--color-accent);
    margin-top: 0.5rem;
}

.hero-subtext {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    color: var(--color-text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-subtext.visible {
    opacity: 1;
    transform: translateY(0);
}

.hype-lines {
    min-height: 2.5rem;
    margin-bottom: 2rem;
    overflow: hidden;
    text-align: center;
}

.hype-line {
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    font-style: italic;
    color: var(--color-accent);
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
}

.hype-line .cursor {
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {
    50% { opacity: 0; }
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1px solid var(--color-accent);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.coming-soon-badge.visible {
    opacity: 1;
}

.badge-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-accent);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    animation: float-down 2s ease-in-out infinite;
}

@keyframes float-down {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* About Section */
.about {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
}

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

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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

/* Coming Soon Banner */
.coming-soon-section {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
}

.coming-soon-banner {
    position: relative;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 24px;
    overflow: hidden;
}

.coming-soon-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: 1px solid var(--color-glass-border);
    border-radius: 24px;
    z-index: 0;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.banner-title {
    position: relative;
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: 0.2em;
}

.banner-subtitle {
    position: relative;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* Social Section */
.social-section {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
}

.social-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--color-glass-border);
    background: var(--color-glass);
    color: var(--color-text);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: 0 0 30px var(--color-accent-glow);
    transform: scale(1.1);
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    padding: 2rem;
    text-align: center;
}

.footer p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-copyright {
    margin-bottom: 0.5rem;
}

.footer-powered {
    font-size: 0.75rem;
    opacity: 0.7;
}

.footer-powered a {
    color: var(--color-text-muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.footer-powered a:hover {
    color: var(--color-accent);
    opacity: 1;
}

/* Page Load Fade-in */
body.page-loaded .hero-content {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .glass-card {
        padding: 2rem 1.5rem;
    }
    
    .hero-headline {
        letter-spacing: 0.02em;
    }
    
    .hero-subtext {
        letter-spacing: 0.08em;
    }
    
    .badge-text {
        letter-spacing: 0.1em;
        font-size: 0.8rem;
    }
    
    .social-links {
        gap: 1.5rem;
    }
    
    .social-link {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .hero-headline .line.brand {
        letter-spacing: 0.2em;
    }
}
