/* Reset en basisstijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    color-scheme: light dark;
    /* Premium Color Palette */
    --primary-color: #1a252f;
    /* Darker, richer blue-gray */
    --secondary-color: #f4f6f7;
    --accent-color: #007AFF;
    /* Electric Blue for premium pop feel */
    --accent-hover: #0056b3;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --text-muted: #7f8c8d;
    --background-light: #ffffff;
    --background-gray: #f8f9fa;
    --border-color: #e9ecef;

    /* Semantic Variables */
    --heading-color: var(--primary-color);
    --card-bg: #ffffff;
    --nav-bg: rgba(26, 37, 47, 0.85);

    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --gradient-overlay: linear-gradient(to bottom, rgba(26, 37, 47, 0.3), rgba(26, 37, 47, 0.8));
}

@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #ecf0f1;
        /* Lighter primary for dark mode text where used */
        --text-dark: #ecf0f1;
        --text-muted: #b0b8c1;
        --background-light: #121212;
        --background-gray: #1e1e1e;
        --border-color: #333333;

        --heading-color: #ffffff;
        --card-bg: #1e1e1e;
        --nav-bg: rgba(0, 0, 0, 0.85);

        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
        --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);

        --gradient-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-gray);
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(-150%);
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1000;
}

.skip-link:focus {
    transform: translateX(-50%) translateY(0);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header en navigatie */
header {
    position: relative;
    background: var(--primary-color);
    overflow: hidden;
}

.main-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.5px;
    position: relative;
    z-index: 101;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Mobile Menu Active State */
.mobile-menu-btn[aria-expanded="true"] .hamburger {
    background: transparent;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Hero sectie */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.05);
    /* Subtle zoom for depth */
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    padding: 0 24px;
    opacity: 0;
    /* For animation */
    transform: translateY(30px);
}

.hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.hero-social-link:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-social-link.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.hero-social-link.facebook:hover {
    background: #1877F2;
}

.hero-social-link.tiktok:hover {
    background: #000000;
}

.hero-social-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    color: white;
    /* White icons by default */
    transition: var(--transition);
}

/* Main content */
.main-content {
    background: var(--background-light);
}

.content-section {
    padding: 8rem 0;
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    /* For animation */
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-section:last-of-type {
    border-bottom: none;
}

.content-section h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: -1.5px;
}

.content-section p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    font-weight: 300;
}

/* Music Gallery */
.music-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.music-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.music-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.music-card h3 {
    font-size: 1.25rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

/* Spotify Embed Override */
.music-card iframe {
    border-radius: 12px;
    width: 100%;
    /* Ensure responsiveness */
}

/* Muziek platforms */
.music-platforms {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.platform-button {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    min-width: 200px;
    justify-content: center;
    border: 2px solid transparent;
}

.platform-button:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.platform-button.spotify:hover {
    background: #1DB954;
    border-color: #1DB954;
    color: white;
}

.platform-button.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: white;
}

.platform-button.apple-music:hover {
    background: #FA243C;
    border-color: #FA243C;
    color: white;
}



/* Footer */
.main-footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-footer p {
    font-size: 0.95rem;
    opacity: 0.6;
    font-weight: 300;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease-in-out;
        z-index: 100;
        padding: 2rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.5rem;
        color: var(--text-light);
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .content-section {
        padding: 5rem 0;
    }

    .content-section h2 {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 2rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .platform-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Blog Stijlen */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.blog-card-image-wrapper {
    position: relative;
    padding-top: 60%;
    /* Aspect ratio 16:9 approx */
    overflow: hidden;
}

.blog-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
    line-height: 1.3;
}

.blog-card p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
    /* Override center align from content-section p */
}

.read-more {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.read-more:hover {
    transform: translateX(5px);
}

/* Blog Post Pagina */
.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--accent-color);
    transform: translateX(-5px);
}

.blog-post-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.blog-post-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
    /* Override center */
}

.blog-post-content p {
    text-align: left;
    /* Override center */
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--heading-color);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .blog-post-content {
        padding: 1.5rem;
    }
}