/* ====================================
   AT VAN STADEN - COMING SOON PAGE
   Warm, elegant design inspired by album cover
   ==================================== */

/* --- Design Tokens & CSS Variables --- */
:root {
    /* Color Palette - Warm tones from album cover */
    --color-deep-brown: #2a1810;
    --color-warm-orange: #d87026;
    --color-burnt-sienna: #c45d1f;
    --color-amber-glow: #e69444;
    --color-cream: #f4ede3;
    --color-light-cream: #faf7f2;
    --color-gold-script: #e8b467;
    --color-dark-overlay: rgba(26, 18, 11, 0.85);
    
    /* Typography */
    --font-script: 'Great Vibes', cursive;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.25);
    --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(232, 180, 103, 0.3);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, 
                #1a1008 0%, 
                var(--color-deep-brown) 50%, 
                #3a2618 100%);
    background-attachment: fixed;
    color: var(--color-cream);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    line-height: 1.6;
    overflow: hidden;
}

/* --- Decorative Background Overlay --- */
.decorative-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(216, 112, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 180, 103, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* --- Main Hero Container --- */
.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    max-height: 100vh;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    background: rgba(42, 24, 16, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(232, 180, 103, 0.1);
    animation: fadeInUp 0.8s ease-out;
    width: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Album Section --- */
.album-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.album-frame {
    position: relative;
    max-width: 550px;
    width: 100%;
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.album-cover {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 
        var(--shadow-strong),
        var(--shadow-glow);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.album-cover:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(232, 180, 103, 0.4);
}

.album-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(232, 180, 103, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* --- Info Section --- */
.info-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    max-width: 600px;
    justify-content: center;
}

/* --- Header Content --- */
.header-content {
    text-align: center;
    animation: slideInRight 0.8s ease-out 0.2s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.title-group {
    margin-bottom: var(--spacing-md);
}

.album-title {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-gold-script);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-xs);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); }
    to { text-shadow: 2px 2px 20px rgba(232, 180, 103, 0.6); }
}

.artist-name {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-light-cream);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6);
}

.divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, 
                transparent, 
                var(--color-gold-script), 
                transparent);
    margin: var(--spacing-md) auto;
    opacity: 0.6;
}

.tagline {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-amber-glow);
    font-style: italic;
}

/* --- Bio Content --- */
.bio-content {
    text-align: center;
    animation: slideInRight 0.8s ease-out 0.4s both;
}

.bio-paragraph {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-cream);
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
}

.bio-paragraph:last-child {
    margin-bottom: 0;
}

.bio-signature {
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--color-gold-script);
    margin-top: var(--spacing-md);
    text-align: right;
    opacity: 0.9;
}




/* --- Footer --- */
.page-footer {
    text-align: center;
    padding-top: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--color-cream);
    opacity: 0.6;
    animation: slideInRight 0.8s ease-out 0.6s both;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    body {
        height: auto;
        min-height: 100vh;
        overflow-x: hidden;
        overflow-y: auto;
        align-items: flex-start;
        padding-top: var(--spacing-lg);
    }
    
    .hero-container {
        max-height: none;
        align-items: flex-start;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: var(--spacing-lg);
    }
    
    .album-section {
        order: 1;
    }
    
    .info-section {
        order: 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        padding: var(--spacing-sm);
        padding-top: var(--spacing-md);
    }
    
    .content-wrapper {
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }
    
    .album-section {
        padding: var(--spacing-xs);
    }
    
    .info-section {
        padding: var(--spacing-xs);
        gap: var(--spacing-sm);
    }
    
    .artist-name {
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    body {
        padding: var(--spacing-xs);
        padding-top: var(--spacing-sm);
    }
    
    .content-wrapper {
        padding: var(--spacing-sm);
        border-radius: 16px;
    }
    
    .album-title {
        font-size: 2rem;
    }
    
    .artist-name {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .bio-paragraph {
        font-size: 0.95rem;
    }
    
    .bio-signature {
        font-size: 1.1rem;
    }
}

/* --- Accessibility Enhancements --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


