/* Hollandse Nieuwe - Premium Aesthetic */

:root {
    --bg-color: #ffffff;
    --surface-color: #f7f9fc;
    --text-color: #111111;
    --text-muted: #555555;
    
    /* Logo Colors from Hollandse Nieuwe */
    --accent-color: #F36F21;
    --accent-glow: rgba(243, 111, 33, 0.2);
    
    --brand-blue: #1D4E9E;
    --brand-blue-glow: rgba(29, 78, 158, 0.2);
    --brand-grey: #4D4D4F;
    
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.95);
    
    --font-main: 'Outfit', sans-serif;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(ellipse at 80% 20%, var(--accent-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, var(--brand-blue-glow) 0%, transparent 50%);
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1, h2, h3 { font-weight: 900; letter-spacing: -0.02em; color: var(--brand-blue); }
.accent { color: var(--accent-color); text-shadow: 0 0 20px var(--accent-glow); }
.accent-blue { color: var(--brand-blue); text-shadow: 0 0 20px var(--brand-blue-glow); }

/* Nav */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}
.nav-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 2rem;
}
.brand-logo {
    display: flex; align-items: center; gap: 1rem; text-decoration: none;
}
.nav-icon { width: 40px; height: 40px; object-fit: cover; }
.brand-text { font-size: 1.5rem; font-weight: 900; color: var(--brand-blue); text-transform: lowercase; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    color: var(--text-muted); text-decoration: none; font-weight: 500; font-size: 0.95rem;
    transition: var(--transition);
}
.nav-links a:hover { color: #111; }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: 0 2rem; position: relative;
    padding-top: 8rem;
}
.main-logo {
    max-width: 500px;
    width: 100%;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 30px var(--accent-glow));
}
.float-anim { animation: float 6s ease-in-out infinite; }
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); filter: drop-shadow(0 0 45px var(--accent-glow)); }
    100% { transform: translateY(0px); }
}
.hero-badge {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    padding: 0.5rem 1.2rem; border-radius: 30px; font-size: 0.85rem;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 2rem;
    color: var(--accent-color);
}
.hero-title { font-size: 5.5rem; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 3rem auto; font-weight: 300; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; }

/* Buttons */
.btn {
    padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 700;
    transition: var(--transition); display: inline-block; cursor: pointer; border: none;
}
.btn-primary {
    background: var(--accent-color); color: #fff; box-shadow: 0 0 20px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 40px var(--accent-glow); background: var(--brand-blue); }
.btn-secondary {
    background: var(--glass-bg); border: 1px solid var(--glass-border); color: #111;
}
.btn-secondary:hover { background: var(--glass-hover); transform: translateY(-3px); border-color: rgba(0,0,0,0.1); }

/* Containers & Grid */
.section { padding: 8rem 2rem; }
.dark-section { background: var(--surface-color); border-top: 1px solid var(--glass-border); }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { font-size: 3.5rem; text-align: center; margin-bottom: 4rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }

/* Cards */
.glass-card {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: 24px; padding: 2rem; backdrop-filter: blur(10px);
    transition: var(--transition); position: relative; text-align: center;
}
.glass-card:hover {
    transform: translateY(-10px); border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05), 0 0 20px rgba(243, 111, 33, 0.1);
}
.artist-thumb {
    width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 1.5rem;
    background-color: var(--surface-color); border: 2px solid var(--glass-border);
}
.card-title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.card-meta { color: var(--text-muted); font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase;}

.record-img {
    width: 100%; aspect-ratio: 1; background: var(--surface-color); border-radius: 12px; margin-bottom: 1.5rem;
}
.badge {
    position: absolute; top: 1.5rem; right: 1.5rem; background: var(--accent-color);
    color: #000; padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.7rem; font-weight: 800;
}

/* Footer */
footer { padding: 6rem 2rem; text-align: center; border-top: 1px solid var(--glass-border); }
.footer-logo { width: 60px; height: 60px; margin-bottom: 1.5rem; opacity: 0.8; }
.footer-title { font-size: 2.5rem; margin-bottom: 1rem; }
.footer-desc { color: var(--text-muted); max-width: 500px; margin: 0 auto 2rem; }
.copyright { color: #555; font-size: 0.85rem; margin-top: 3rem; }

/* Animations */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
