/* Hero Section Styles */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -25%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(236, 72, 153, 0.2) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(30px, -30px) rotate(120deg) scale(1.1); }
    66% { transform: translate(-20px, 20px) rotate(240deg) scale(0.9); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--purple-200) 50%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-content .subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--glass-purple);
    border: 1px solid var(--glass-border-purple);
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--purple-200);
}

.trust-badge .badge-icon {
    color: var(--accent-gold);
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.5));
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.album-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.album-card {
    background: rgba(139, 92, 246, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: var(--space-lg);
    transform: rotate(-3deg);
    transition: all var(--transition-slow);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
    cursor: pointer;
}

.album-card:hover {
    transform: rotate(0deg) scale(1.05);
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 16px 48px rgba(139, 92, 246, 0.3);
}

.album-preview {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--purple-500) 0%, var(--purple-400) 50%, var(--accent-pink) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--pure-white);
    margin-bottom: var(--space-md);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.album-card:hover .album-preview {
    transform: scale(1.02);
}

.album-preview::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: shimmer 2.5s infinite;
    animation-play-state: paused;
}

.album-card:hover .album-preview::after {
    animation-play-state: running;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.album-info h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--pure-white);
}

.album-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
