/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-xl);
    border-radius: var(--radius-2xl);
    background: var(--glass-frosted);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid var(--glass-border);
    margin-bottom: var(--spacing-2xl);
    box-shadow:
        0 8px 32px rgba(71, 125, 180, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-gradient);
    opacity: 0.9;
    z-index: -1;
}

.logo-container {
    margin-bottom: var(--spacing-lg);
}

.logo-text .small {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 300;
    opacity: 0.8;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    animation: fadeIn 1s ease-out 0.2s both;
}

.logo-text .large {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin: 0;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.collection-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.85;
    margin: var(--spacing-lg) auto 0;
    max-width: 600px;
    font-weight: 300;
    animation: fadeIn 1s ease-out 0.5s both;
}

/* Content Section (for About, etc.) */
.content {
    max-width: 800px;
    margin: 0 auto;
}

.content h1,
.content h2 {
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-md);
}

.content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

/* Responsive Hero */
@media (max-width: 640px) {
    .hero {
        padding: var(--spacing-xl) var(--spacing-md);
    }
}

/* Atmospheric Floating Orbs */
.hero .orb-1 {
    position: absolute;
    top: 15%;
    left: 10%;
    width: 250px;
    height: 250px;
    background: var(--gradient-orb-secondary);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero .orb-2 {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: var(--gradient-orb-primary);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero .orb-3 {
    position: absolute;
    top: 60%;
    right: 15%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: float 10s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, -20px) scale(1.1);
    }
}