/* ========================================
   AIRVOICE - HIGH CONTRAST & TIGHT
   ======================================== */

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

:root {
    --primary-green: #357659;
    --primary-blue: #345C82;
    --dark-gray: #1a1a1a;
    --light-bg: #f0f0f0;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    background: var(--white);
}

/* ========================================
   BACKGROUND SHAPES
   ======================================== */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 30s infinite ease-in-out;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-green);
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--primary-blue);
    bottom: -150px;
    left: -150px;
    animation-delay: 10s;
}

.shape-3 {
    width: 450px;
    height: 450px;
    background: var(--primary-green);
    top: 50%;
    left: 50%;
    animation-delay: 20s;
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0); 
    }
    50% { 
        transform: translate(40px, -40px); 
    }
}

/* ========================================
   NAVIGATION
   ======================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 5%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

nav.scrolled {
    padding: 1rem 5%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container .logo {
    height: 55px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

nav.scrolled .logo {
    height: 45px;
}

.logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 800;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-green);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 4px;
    background: var(--dark-gray);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ========================================
   HERO SECTION - EYE CATCHER
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 5% 6rem;
    position: relative;
    background: linear-gradient(135deg, rgba(53, 118, 89, 0.03) 0%, rgba(52, 92, 130, 0.03) 100%);
}

.hero-content {
    max-width: 1300px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 3rem;
    letter-spacing: -4px;
    color: #000000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.line {
    display: block;
    opacity: 1;
    animation: fadeInUp 0.8s ease both;
}

.line:nth-child(1) { 
    animation-delay: 0.2s;
    margin-bottom: 2rem;
}

.line:nth-child(2) { 
    animation-delay: 0.4s; 
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Zorg dat gradient-text opacity niet overschrijft */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: fadeInUp 0.8s ease both 0.4s, textGlow 8s ease-in-out 1.2s infinite;
}

@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 2px 8px rgba(53, 118, 89, 0.3))
                drop-shadow(-2px 0 6px rgba(53, 118, 89, 0.2));
    }
    25% {
        filter: drop-shadow(2px 0 8px rgba(53, 118, 89, 0.4))
                drop-shadow(0 -2px 6px rgba(52, 92, 130, 0.2));
    }
    50% {
        filter: drop-shadow(0 -2px 8px rgba(52, 92, 130, 0.3))
                drop-shadow(2px 0 6px rgba(52, 92, 130, 0.2));
    }
    75% {
        filter: drop-shadow(-2px 0 8px rgba(52, 92, 130, 0.4))
                drop-shadow(0 2px 6px rgba(53, 118, 89, 0.2));
    }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .gradient-text {
        animation: none;
        filter: drop-shadow(0 2px 8px rgba(53, 118, 89, 0.3));
    }
    
    .about-card {
        transition: none;
    }
}

.tagline {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #333;
    margin-bottom: 2.5rem;
    animation: fadeIn 0.8s ease 0.6s both;
    font-style: italic;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.subtitle {
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    color: #444;
    margin-bottom: 3.5rem;
    animation: fadeIn 0.8s ease 0.8s both;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
    font-weight: 500;
}

.subtitle strong {
    color: var(--primary-green);
    font-weight: 900;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease 1s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: white;
    box-shadow: 0 8px 30px rgba(53, 118, 89, 0.4);
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(53, 118, 89, 0.5);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 3px solid var(--primary-green);
}

.cta-secondary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(53, 118, 89, 0.4);
}

.arrow {
    transition: transform 0.3s ease;
    font-size: 1.3rem;
}

.cta-button:hover .arrow {
    transform: translateX(6px);
}

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

/* ========================================
   SECTIONS
   ======================================== */
.section-padding {
    padding: 7rem 5%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-block !important;
    padding: 0.7rem 2rem;
    background: rgba(53, 118, 89, 0.15);
    border: 3px solid rgba(53, 118, 89, 0.4);
    border-radius: 50px;
    color: var(--primary-green);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 auto 2rem auto !important;
    text-align: center !important;
    width: fit-content !important;
    position: relative !important;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -3px;
    color: #000000;
}

.section-intro {
    font-size: 1.3rem;
    color: #444;
    max-width: 850px;
    margin: 2rem auto 0;
    line-height: 1.9;
    font-weight: 500;
}

.section-intro.light {
    color: rgba(255, 255, 255, 0.95);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    background: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 1rem;
}

.about-card {
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 2px solid rgba(0, 0, 0, 0.08);
    transform-style: preserve-3d;
    will-change: transform, box-shadow;
    cursor: pointer;
    overflow: hidden;
}

.card-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(53, 118, 89, 0.08);
    line-height: 1;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    pointer-events: none;
}

.about-card:hover .card-number {
    color: rgba(53, 118, 89, 0.6);
    transform: scale(1.2) translateY(-5px);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(53, 118, 89, 0.4));
    text-shadow: 0 0 20px rgba(53, 118, 89, 0.3);
}

.card-icon {
    margin-bottom: 2rem;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-icon svg {
    stroke: url(#iconGradient);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 4px rgba(53, 118, 89, 0.2));
}

.about-card:hover .card-icon {
    transform: translateY(-3px);
}

.about-card:hover .card-icon svg {
    transform: scale(1.2) rotate(12deg) translateY(-2px);
    filter: drop-shadow(0 12px 25px rgba(53, 118, 89, 0.6));
    stroke: var(--primary-green);
    stroke-width: 2.5;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue), var(--primary-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 4px 12px rgba(53, 118, 89, 0.4);
    z-index: 1;
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    box-shadow: 0 25px 80px rgba(53, 118, 89, 0.3);
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(53, 118, 89, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
}

.about-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: #000000;
    font-weight: 900;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
}

.about-card p {
    color: #444;
    line-height: 1.9;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
}

.about-card p strong {
    color: var(--primary-green);
    font-weight: 900;
}

.about-card:hover h3 {
    color: var(--primary-green);
    transform: translateY(-4px) scale(1.05);
    text-shadow: 0 2px 8px rgba(53, 118, 89, 0.2);
}

.about-card:hover p {
    color: #2a2a2a;
    transform: translateY(-2px);
}

.about-card:hover p strong {
    color: var(--primary-blue);
    text-shadow: 0 1px 3px rgba(52, 92, 130, 0.3);
}

.about-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(53, 118, 89, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
    pointer-events: none;
    z-index: 0;
}

.about-card:hover::after {
    opacity: 1;
}

/* ========================================
   PHILOSOPHY SECTION
   ======================================== */
.philosophy {
    background: white;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: center;
}

.philosophy-visual {
    position: relative;
}

.big-quote {
    font-size: 20rem;
    font-weight: 900;
    color: rgba(53, 118, 89, 0.1);
    line-height: 1;
    font-family: Georgia, serif;
}

.philosophy-text {
    text-align: left;
}

.philosophy-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    margin: 2rem 0;
    line-height: 1.2;
    color: #000000;
}

.gradient-text-light {
    background: linear-gradient(135deg, #4ade80, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    font-size: 1.25rem;
    color: #444;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.philosophy-highlight {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(53, 118, 89, 0.12);
    border-left: 6px solid var(--primary-green);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(53, 118, 89, 0.15);
}

.philosophy-highlight:hover {
    background: rgba(53, 118, 89, 0.18);
    transform: translateX(8px);
}

.highlight-icon {
    font-size: 3rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(53, 118, 89, 0.3));
}

.philosophy-highlight h4 {
    color: #000000;
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    font-weight: 900;
}

.philosophy-highlight p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
}

/* ========================================
   FREEBIES SECTION
   ======================================== */
.freebies {
    background: var(--light-bg);
}

.freebies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.freebie-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.freebie-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.freebie-img-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.freebie-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

/* Round corners for my-art logo */
.freebie-card:nth-child(2) .freebie-img {
    border-radius: 25px;
}

.freebie-icon-emoji {
    font-size: 5rem;
}

.freebie-card:hover .freebie-img,
.freebie-card:hover .freebie-icon-emoji {
    transform: scale(1.1);
}

.freebie-card h3 {
    font-size: 1.7rem;
    color: #000000;
    margin-bottom: 1.2rem;
    font-weight: 900;
}

.freebie-card p {
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
    flex-grow: 1;
}

.freebie-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(53, 118, 89, 0.3);
}

.freebie-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(53, 118, 89, 0.4);
}

.link-arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.freebie-link:hover .link-arrow {
    transform: translateX(6px);
}

.coming-soon {
    opacity: 0.7;
}

.coming-badge {
    display: inline-block;
    padding: 0.7rem 2rem;
    background: #ffd700;
    color: #000000;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* ========================================
   CITAAT SECTION
   ======================================== */

.quotes-title {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}


.citaat-section {
    background: linear-gradient(135deg, rgba(53, 118, 89, 0.08) 0%, rgba(52, 92, 130, 0.08) 100%);
    padding: 6rem 5%;
}

.citaat-section .section-header {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
}

.citaat-section .section-tag {
    margin: 0 auto 2rem auto !important;
    display: block !important;
    text-align: center !important;
    width: fit-content !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
}

.citaat-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 4rem 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(53, 118, 89, 0.2);
    position: relative;
    overflow: hidden;
}

.citaat-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(53, 118, 89, 0.03) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}



.citaat-text {
    font-family: 'Shadows Into Light Two', cursive;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--primary-green);
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 400;
    font-style: normal;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 1;
}


.citaat-reload {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid rgba(53, 118, 89, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    opacity: 0.7;
}

.citaat-reload:hover {
    opacity: 1;
    border-color: var(--primary-green);
    background: rgba(53, 118, 89, 0.05);
    transform: translateY(-1px);
}

.citaat-reload:active {
    transform: translateY(0px);
}

.citaat-reload:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.reload-icon {
    font-size: 1rem;
    display: inline-block;
    transition: transform 0.6s ease;
}

.citaat-reload:hover .reload-icon {
    transform: rotate(180deg);
}

/* ========================================
   MUSIC SECTION
   ======================================== */
.music {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: white;
    position: relative;
    overflow: hidden;
}

/* Sound waves animation */
.sound-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sound-wave {
    position: absolute;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    opacity: 0.6;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.sound-wave-1 {
    top: 15%;
    animation: waveMove1 10s ease-in-out infinite;
}

.sound-wave-2 {
    top: 25%;
    animation: waveMove2 12s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes waveMove1 {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes waveMove2 {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.section-header.centered {
    text-align: center;
    position: relative;
    z-index: 2;
}

.music-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.music-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.music-link {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.music-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.music-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.youtube-icon svg {
    fill: #357659;
}

.spotify-icon svg {
    fill: #357659;
}

.website-icon svg {
    fill: #357659;
}

.music-link:hover .music-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.music-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    font-weight: 900;
}

.music-info p {
    font-size: 1rem;
    opacity: 0.95;
}

.music-arrow {
    margin-left: auto;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.music-link:hover .music-arrow {
    transform: translateX(6px);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: #1a1a1a;
    color: white;
    padding: 5rem 5% 2.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5rem;
}

.footer-logo {
    height: 55px;
    margin-bottom: 1.2rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 500;
}

.footer-links h4,
.footer-social h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 900;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.social-links a {
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.social-links a:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(53, 118, 89, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .big-quote {
        font-size: 14rem;
        text-align: center;
    }
    
    .philosophy-text {
        text-align: center;
    }
    
    .philosophy-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .music-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        max-width: 400px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 6rem 2rem;
        gap: 2rem;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        transition: right 0.4s ease;
    }

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

    .hero {
        padding: 8rem 5% 5rem;
    }
    
    .hero h1 {
        line-height: 0.9;
    }

    .about-grid,
    .freebies-grid {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 5rem 5%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .citaat-container {
        padding: 3rem 2rem;
    }
    
    .citaat-text {
        font-size: 1.5rem;
        min-height: 100px;
    }
    
    /* Force center alignment for INSPIRATIE tag */
    .citaat-section .section-header {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .citaat-section .section-tag {
        margin: 0 auto 2rem auto !important;
        display: block !important;
        text-align: center !important;
        width: fit-content !important;
    }
}

/* ========================================
   CUSTOM SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-green), var(--primary-blue));
    border-radius: 7px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green);
}

::selection {
    background: var(--primary-green);
    color: white;
}

