/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 25%, #8e24aa 50%, #1a237e 75%, #0d1b2a 100%);
    background-attachment: fixed;
}

/* Background Overlays and Textures */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 182, 193, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mandala" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/><circle cx="25" cy="25" r="15" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.3"/><circle cx="25" cy="25" r="10" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23mandala)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

/* Background Watermark */
.background-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    font-size: clamp(8rem, 20vw, 20rem);
    font-weight: 100;
    color: rgba(255, 255, 255, 0.03);
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.2em;
    z-index: 2;
    pointer-events: none;
    user-select: none;
}

/* Cultural Brushstrokes */
.cultural-brushstrokes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.brushstroke {
    position: absolute;
    border-radius: 50px;
    opacity: 0.1;
}

.brushstroke-1 {
    width: 300px;
    height: 8px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    top: 20%;
    left: -50px;
    transform: rotate(15deg);
    animation: float 8s ease-in-out infinite;
}

.brushstroke-2 {
    width: 200px;
    height: 6px;
    background: linear-gradient(90deg, transparent, #9c27b0, transparent);
    top: 60%;
    right: -30px;
    transform: rotate(-20deg);
    animation: float 10s ease-in-out infinite reverse;
}

.brushstroke-3 {
    width: 250px;
    height: 10px;
    background: linear-gradient(90deg, transparent, #3f51b5, transparent);
    bottom: 30%;
    left: 10%;
    transform: rotate(8deg);
    animation: float 12s ease-in-out infinite;
}

/* Accent Icons */
.accent-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.accent-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 215, 0, 0.15);
    animation: pulse 4s ease-in-out infinite;
}

.globe-icon {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.thread-icon {
    top: 70%;
    right: 15%;
    animation-delay: 1.5s;
}

.goddess-icon {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

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

/* Glassmorphic Hero Card */
.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 750px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: cardFloat 6s ease-in-out infinite;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    pointer-events: none;
}

/* Coming Soon Badge */
.coming-soon-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

/* Logo/Emblem */
.logo-emblem {
    margin-bottom: 2rem;
}

.crown-silhouette {
    font-size: 4rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: crownGlow 3s ease-in-out infinite;
}

/* Main Headline */
.main-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

/* Tagline */
.tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* Mission Statement */
.mission-statement {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Signup Form */
.signup-form {
    margin-bottom: 2rem;
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.notify-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    min-width: 140px;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 215, 0, 0.4);
}

.notify-btn:active {
    transform: translateY(0);
}

.signup-subtext {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    color: #ffd700;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(var(--rotation, 0deg)); }
    50% { transform: translateY(-10px) rotate(var(--rotation, 0deg)); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.05); }
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes badgePulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

@keyframes crownGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    50% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 1rem;
    }
    
    .hero-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .input-group {
        flex-direction: column;
        align-items: center;
    }
    
    .email-input {
        min-width: 100%;
        margin-bottom: 1rem;
    }
    
    .notify-btn {
        width: 100%;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .accent-icons {
        display: none;
    }
    
    .cultural-brushstrokes {
        opacity: 0.5;
    }
    
    .background-watermark {
        font-size: clamp(6rem, 15vw, 12rem);
    }
}

@media (max-width: 480px) {
    .hero-card {
        padding: 1.5rem 1rem;
    }
    
    .coming-soon-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
    
    .crown-silhouette {
        font-size: 3rem;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .hero-card {
        background: rgba(0, 0, 0, 0.8);
        border: 2px solid #fff;
    }
    
    .email-input {
        background: rgba(0, 0, 0, 0.6);
        border: 2px solid #fff;
    }
    
    .social-icon {
        background: rgba(0, 0, 0, 0.6);
        border: 2px solid #fff;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}