/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2d5f3f;
    --light-green: #5a8a6f;
    --cream: #f5f1e8;
    --beige: #e8dcc4;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-light: #6b6b6b;
    --shadow: rgba(45, 95, 63, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--cream);
    overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-green);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--light-green);
}

.elegant-script {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--light-green);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px var(--shadow);
}

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

.logo svg {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.logo-img {
    height: 90px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover svg,
.logo:hover .logo-img {
    transform: rotate(5deg) scale(1.05);
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4c5a9 0%, #b8a88a 100%);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /><feColorMatrix type="saturate" values="0"/></filter></defs><rect width="1200" height="800" filter="url(%23noise)" opacity="0.05"/></svg>');
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(45, 95, 63, 0.1) 0%, transparent 60%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(245, 241, 232, 0.3) 0%, rgba(245, 241, 232, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.brand-title {
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--primary-green);
    margin: 0;
    animation: fadeInDown 0.8s ease;
}

.brand-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 6px;
    color: var(--light-green);
    font-weight: 300;
    text-transform: uppercase;
    animation: fadeInDown 0.8s ease 0.2s backwards;
}

.logo-symbol {
    margin-top: 2rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.logo-symbol svg {
    filter: drop-shadow(0 4px 12px rgba(45, 95, 63, 0.2));
}

.hero-logo-img {
    width: 450px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(45, 95, 63, 0.3));
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-green);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, 20px);
        opacity: 0.3;
    }
}

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

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

/* ===================================
   CONTAINERS & SECTIONS
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

.intro-section {
    text-align: center;
    padding: 4rem 0 3rem;
    background: var(--white);
    position: relative;
    z-index: 10;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-green);
}

.intro-text {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

/* ===================================
   MISSION SECTION
   =================================== */
.mission-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.mission-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    line-height: 1.4;
}

.mission-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow);
    margin: 3rem 0;
    text-align: left;
}

.mission-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.mission-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.contact-cta {
    font-size: 1.2rem;
    margin-top: 2rem;
}

.contact-cta strong {
    color: var(--primary-green);
    font-weight: 600;
}

/* ===================================
   SESSION SECTION
   =================================== */
.session-section {
    background: var(--white);
    padding: 6rem 0;
}

.session-content {
    max-width: 900px;
    margin: 0 auto;
}

.session-content p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===================================
   PAGE HEADER
   =================================== */
.page-header {
    height: 50vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4c5a9 0%, #b8a88a 100%);
    margin-top: 80px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 241, 232, 0.5);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header-content h1 {
    font-size: 4rem;
    color: var(--primary-green);
    letter-spacing: 4px;
}

/* ===================================
   CONTENT SECTIONS
   =================================== */
.content-section {
    padding: 6rem 0;
    background: var(--white);
}

.large-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.two-column-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 4rem 0;
}

.column h3 {
    margin-bottom: 1rem;
}

.coaching-detail {
    margin: 3rem 0;
}

.coaching-detail p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.benefits-section {
    background: var(--cream);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 4rem;
}

.benefits-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ===================================
   AANBOD SECTION
   =================================== */
.aanbod-section {
    background: var(--cream);
    padding: 6rem 0;
}

.aanbod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.aanbod-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aanbod-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(45, 95, 63, 0.25);
}

.card-image {
    height: 250px;
    position: relative;
    background: linear-gradient(135deg, #d4c5a9 0%, #b8a88a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image::before {
    content: 'FOTO HIER';
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: rgba(45, 95, 63, 0.3);
    font-weight: 600;
    letter-spacing: 3px;
    z-index: 1;
}

.card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

/* Verberg placeholder tekst als foto is geladen */
.card-photo[src]:not([src=""]):not([src*="foto/individueel.png"]):not([src*="foto/systemisch.png"]):not([src*="foto/groep.png"]) ~ .card-overlay,
.card-image:has(img[src]:not([src=""])) .card-image::before {
    display: none;
}


.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 95, 63, 0.1);
}

.card-content {
    padding: 2rem;
}

.card-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.card-details {
    margin-bottom: 1.5rem;
}

.person-count {
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.price {
    font-style: italic;
    color: var(--text-light);
}

.intro-price {
    margin-top: 1rem;
    font-weight: 500;
}

.light-text {
    font-weight: 300;
    color: var(--text-light);
}

.intro-price-detail {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
}

.subtitle {
    font-style: italic;
    color: var(--light-green);
}

.card-description {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--beige);
}

.detail-text {
    font-size: 0.95rem;
    color: var(--text-light);
}

.detailed-section {
    background: var(--white);
    padding: 6rem 0;
}

.detail-block {
    margin-bottom: 4rem;
}

.detail-block:last-child {
    margin-bottom: 0;
}

/* ===================================
   BIO SECTION (OVER ONS)
   =================================== */
.bio-section {
    padding: 6rem 0;
    background: var(--white);
}

.bio-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.bio-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.bio-image {
    position: relative;
}

.bio-image::before {
    content: 'JE FOTO HIER';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: rgba(45, 95, 63, 0.3);
    font-weight: 600;
    letter-spacing: 3px;
    z-index: 1;
}

.horse-image {
    position: relative;
}

.profile-photo,
.horse-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow);
    background: linear-gradient(135deg, var(--beige) 0%, var(--cream) 100%);
}

.profile-photo {
    height: 500px;
}

.horse-photo {
    height: 400px;
}

/* Fallback als foto's nog niet zijn toegevoegd */
.profile-photo:not([src]),
.horse-photo:not([src]),
.profile-photo[src=""],
.horse-photo[src=""],
.profile-photo[src="foto/inka.png"],
.horse-photo[src="foto/zaza.png"],
.horse-photo[src="foto/yukina.png"] {
    background: linear-gradient(135deg, var(--beige) 0%, var(--cream) 100%);
    display: block;
}

.credentials {
    background: var(--cream);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.credentials h2 {
    margin-bottom: 2rem;
}

.credentials ul {
    list-style: none;
}

.credentials li {
    padding: 0.4rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.credentials li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* ===================================
   COLLABORATION SECTION
   =================================== */
.collaboration-section {
    background: var(--cream);
    padding: 5rem 0;
}

.collaboration-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.collab-logo {
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
}

.collab-logo.meer-eigenwijsheid span {
    font-size: 2rem;
    color: var(--light-green);
    font-style: italic;
}

.collab-logo.inka-coaching {
    display: flex;
    flex-direction: column;
}

.collab-logo.inka-coaching span {
    font-size: 2rem;
    color: var(--primary-green);
    font-weight: 600;
    letter-spacing: 2px;
}

.collab-logo.inka-coaching small {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.collaboration-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===================================
   HORSES SECTION
   =================================== */
.horses-section {
    background: var(--white);
    padding: 6rem 0;
}

.horse-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin: 3rem 0;
    align-items: center;
}

.horse-profile.reverse {
    grid-template-columns: 2fr 1fr;
}

.horse-profile.reverse .horse-image {
    order: 2;
}

.horse-profile.reverse .horse-info {
    order: 1;
}

.horse-info h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.location-info {
    background: var(--cream);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 4rem;
}

/* ===================================
   DE PLEK SECTION
   =================================== */
.plek-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    padding: 6rem 0;
    color: var(--white);
}

.plek-section .section-title {
    color: var(--white);
}

.plek-section .section-title::after {
    background: var(--white);
}

.plek-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.plek-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.plek-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}

.plek-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.plek-text p {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.plek-text strong {
    font-weight: 600;
    color: var(--cream);
}

/* ===================================
   WERKWIJZE SECTION
   =================================== */
.werkwijze-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.process-steps {
    margin: 4rem 0;
}

.step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 10px 30px rgba(45, 95, 63, 0.4);
    position: relative;
    transition: all 0.3s ease;
    line-height: 1;
}

.step-number::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    opacity: 0.2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

.step:hover .step-number {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 95, 63, 0.5);
}

.step-content h3 {
    margin-bottom: 0.8rem;
}

.method-details {
    margin-top: 5rem;
}

.three-brains {
    background: var(--cream);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.brain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.brain-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
}

.brain-item h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.session-environment {
    margin-top: 3rem;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-details {
    margin: 3rem 0;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-item .label {
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.3rem;
}

.contact-item a {
    display: block;
    margin-top: 0.3rem;
}

.opening-hours {
    background: var(--cream);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.opening-hours h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-form-container {
    background: var(--cream);
    padding: 3rem;
    border-radius: 15px;
}

.contact-form-container h3 {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-green);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--beige);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.submit-btn {
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--shadow);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background: var(--cream);
    border-radius: 15px;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
}

/* ===================================
   COLLABORATION SECTION
   =================================== */
.samenwerking-section {
    background: var(--cream);
    padding: 6rem 0;
}

.collaboration-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.collaboration-intro {
    margin-bottom: 3rem;
}

.collaboration-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.collaboration-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.collab-brand {
    text-align: center;
}

.brand-meer {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--light-green);
    font-style: italic;
    font-weight: 300;
    margin: 0;
}

.brand-inka {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary-green);
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
}

.brand-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 0.3rem;
}

.collab-icon svg {
    filter: drop-shadow(0 4px 12px rgba(45, 95, 63, 0.2));
}

.collaboration-link {
    margin-top: 2rem;
    font-size: 1.1rem;
}

.collaboration-link a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.collaboration-link a:hover {
    color: var(--light-green);
}

/* ===================================
   VIDEO SECTION
   =================================== */
.video-section {
    background: var(--white);
    padding: 6rem 0;
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow);
    background: var(--cream);
}

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

.video-caption {
    text-align: center;
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--text-light);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-contact p,
.footer-location p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .aanbod-grid {
        grid-template-columns: 1fr;
    }
    
    .two-column-section {
        grid-template-columns: 1fr;
    }
    
    .brain-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .bio-content {
        grid-template-columns: 1fr;
    }
    
    .horse-profile,
    .horse-profile.reverse {
        grid-template-columns: 1fr;
    }
    
    .horse-profile.reverse .horse-image,
    .horse-profile.reverse .horse-info {
        order: initial;
    }
    
    .collaboration-logos {
        flex-direction: column;
        gap: 2rem;
    }
    
    .plek-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 30px var(--shadow);
        transition: left 0.3s ease;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .brand-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .brand-subtitle {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .step {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container,
    .container-wide {
        padding: 0 1rem;
    }
    
    .brand-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .brand-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .mission-card,
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .brand-meer,
    .brand-inka {
        font-size: 1.8rem;
    }
    
    .collab-icon svg {
        width: 60px;
        height: 60px;
    }
}
