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

.hero {
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-xl);
    border-radius: var(--radius-2xl);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    margin-bottom: var(--spacing-2xl);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-gradient);
    opacity: 0.8;
    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);
    }
}