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

:root {
    --primary-blue: #0a3d5c;
    --secondary-blue: #165a7d;
    --sunrise-gold: #f4a460;
    --earth-tone: #c17a4a;
    --safari-green: #2d5016;
    --action-orange: #e67e22;
    --glacier-white: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --success-green: #27ae60;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #0a3d5c 0%, #165a7d 100%);
    --gradient-warm: linear-gradient(135deg, #c17a4a 0%, #f4a460 100%);
    --gradient-safari: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--primary-blue); 
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient-warm);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(244, 164, 96, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b86a3a 0%, #e69450 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 164, 96, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--sunrise-gold);
    border: 2px solid var(--sunrise-gold);
}

.btn-secondary:hover {
    background: var(--gradient-warm);
    color: var(--text-light);
    border-color: transparent;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--text-dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--sunrise-gold);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.logo img {
    height: 100px;
    width: auto;
}

.tagline {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 0;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--primary-blue);
    font-weight: 700;
    padding: 8px 0;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--sunrise-gold);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--sunrise-gold);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: var(--gradient-warm);
    padding: 8px 20px !important;
    border-radius: 5px;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #b86a3a 0%, #e69450 100%);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    background-image: url('images/sleeping-giant-kilimanjaro.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 61, 92, 0.88) 0%, rgba(22, 90, 125, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 20px;
}

.hero h2 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-intro {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #555;
}

/* Intro Section */
.intro-section {
    background: linear-gradient(180deg, var(--glacier-white) 0%, #ffffff 100%);
}

section h2 {
  margin-bottom: 0.6em;
}

.section-intro {
  margin-bottom: 2.5rem;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.intro-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--sunrise-gold);
}

/* Video Section */
.video-section {
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255, 215, 160, 0.15), rgba(255, 255, 255, 0)),
        linear-gradient(180deg, #f6ecd8 0%, #fbf6ee 100%);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 0 auto 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--sunrise-gold);
    max-width: 100%;

}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
}

.video-caption {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--earth-tone);
    font-weight: 600;
}

/* Why Section */
.why-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--glacier-white) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--sunrise-gold);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--action-orange);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* Route Section */
.route-section {
    background:
        linear-gradient(180deg, rgba(255, 215, 160, 0.15), rgba(255, 255, 255, 0)),
        linear-gradient(180deg, #f6ecd8 0%, #fbf6ee 100%);
}


.route-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.route-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--earth-tone);
}

.route-text {
    font-size: 1.1rem;
}

.route-text .btn {
    margin-top: 1.5rem;
}

/* Package Section */
.package-section {
    background: var(--gradient-primary);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.package-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(244,164,96,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.package-section .container {
    position: relative;
    z-index: 1;
}

.package-section h2 {
    color: var(--text-light);
    text-align: center;
}

.package-price {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.package-price strong {
    color: var(--sunrise-gold);
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.package-note {
    text-align: center;
    margin-bottom: 3rem;
}

.package-note a {
    color: var(--sunrise-gold);
    text-decoration: underline;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.package-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 8px;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 164, 96, 0.2);
}

/* Calendar Section */
.calendar-section {
    background: linear-gradient(
        180deg,
        #f1dfb5 0%,
        #faf3e3 100%
    );
}





.calendar-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.expeditions-list {
    max-width: 800px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.expedition-item {
    padding: 25px 35px;
    border-bottom: 1px solid var(--glacier-white);
    transition: all 0.3s ease;
}

.expedition-item:last-child {
    border-bottom: none;
}

.expedition-item:hover {
    background: var(--glacier-white);
}

.expedition-item.featured {
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d4 100%);
    border-left: 5px solid var(--action-orange);
}

.expedition-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.expedition-header h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin: 0;
}

.expedition-moon {
    font-size: 1.5rem;
}

.expedition-dates {
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 5px;
}

.expedition-status {
    color: var(--success-green);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0;
}

.expedition-highlight {
    color: var(--action-orange);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0;
}

.expedition-note {
    text-align: center;
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    margin: 2rem auto 3rem;
    max-width: 700px;
}

.calendar-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Safari Section */
.safari-section {
    background: var(--gradient-safari);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.safari-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(193,122,74,0.15)" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.safari-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.safari-section h2 {
    color: var(--text-light);
}

.safari-text {
    font-size: 1.1rem;
}

.safari-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--earth-tone);
}

/* Travel Section */
.travel-section {
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, var(--glacier-white) 100%);
}

.travel-section h2 {
    margin-bottom: 1.5rem;
}

.travel-section p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Testimonial Section */
.testimonial-section {
   background:
        linear-gradient(180deg, rgba(255, 215, 160, 0.15), rgba(255, 255, 255, 0)),
        linear-gradient(180deg, #f6ecd8 0%, #fbf6ee 100%);
}

.testimonial-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto 2rem;
    background: var(--glacier-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--sunrise-gold);
}

.testimonial-images {
    margin-bottom: 2rem;
}

.testimonial-images img {
    border-radius: 10px;
    margin: 0 auto;
    border: 3px solid var(--earth-tone);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
}

.testimonial-team {
    color: #777;
    font-size: 0.95rem;
}

.testimonial-section > .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Final CTA */
.final-cta {
    background: var(--gradient-warm);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(10,61,92,0.1)" d="M0,64L48,85.3C96,107,192,149,288,154.7C384,160,480,128,576,128C672,128,768,160,864,165.3C960,171,1056,149,1152,128C1248,107,1344,85,1392,74.7L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
    background-size: cover;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(10, 61, 92, 0.3);
}

.cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #082f47 0%, #134d68 100%);
}

.cta-buttons .btn-secondary {
    border-color: var(--text-light);
    color: var(--text-light);
}

.cta-buttons .btn-secondary:hover {
    background: var(--text-light);
    color: var(--earth-tone);
}

/* Ramon Section */
.ramon-section {
    background: linear-gradient(180deg, var(--glacier-white) 0%, #ffffff 100%);
}

.ramon-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.ramon-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--sunrise-gold);
}

.ramon-text h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.ramon-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Resources Section */
.resources-section {
    background-color: #ffffff;
}

.resources-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.resource-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    background: var(--glacier-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--earth-tone);
}

.resource-card img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.resource-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.important-links {
    max-width: 800px;
    margin: 0 auto;
}

.important-links h3 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 2rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.links-grid a {
    background: var(--glacier-white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-blue);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 3px solid var(--earth-tone);
}

.links-grid a:hover {
    background: var(--gradient-warm);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.site-footer {
  background: #1c1c1c; /* i.p.v. bijna zwart */
color: var(--text-light);
    padding: 25px 0 30px; width: 100vw;
}


.footer-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(244, 164, 96, 0.2);
}

.badge {
    font-size: 0.9rem;
    color: var(--sunrise-gold);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(244, 164, 96, 0.2);
}

.footer-nav a {
    color: var(--text-light);
    font-weight: 500;
}

.footer-nav a:hover {
    color: var(--sunrise-gold);
}

.footer-logos {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(244, 164, 96, 0.2);
}

.footer-legal {
    text-align: center;
    font-size: 0.65rem;
    opacity: 0.7;
color: #ffba00;
}


.footer-legal a {
    color: #ffba00;
}


.footer-legal p {
    margin-bottom: 1.5rem;
}

/* Intro grid met middenlijn */
.intro-grid-divider {
    grid-template-columns: 1fr 40px 1fr;
}

.intro-divider {
    width: 2px;
    height: 100%;
    background-color: var(--sunrise-gold);
    opacity: 0.6;
    margin: 0 auto;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #ffffff 0%, var(--glacier-white) 100%);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .main-nav li {
        width: 100%;
        border-bottom: 1px solid rgba(10, 61, 92, 0.1);
    }
    
    .main-nav a {
        display: block;
        padding: 15px 10px;
        font-size: 1.1rem;
    }
    
    .nav-cta {
        margin-top: 20px;
        text-align: center;
        border-radius: 5px;
    }
    
    .intro-grid:not(.intro-grid-divider),
    .route-content,
    .safari-content,
    .ramon-content {
        grid-template-columns: 1fr;
    }

    .intro-grid-divider {
        grid-template-columns: 1fr;
    }

    .intro-divider {
        width: 2px;
    background-color: var(--sunrise-gold);
    opacity: 0.6;
    border-radius: 2px;
    }




    .resource-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 70px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-intro {
        font-size: 1rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .expedition-item {
        padding: 20px 20px;
    }
    
    .expedition-header h3 {
        font-size: 1.1rem;
    }
    
    .expedition-dates {
        font-size: 1rem;
    }
    
    .hero-buttons,
    .cta-buttons,
    .calendar-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Better mobile styling for tips-box lists */
    .tips-box ul,
    .warning-box ul {
        padding-left: 1.2rem;
        margin-left: 0;
    }
    
    .tips-box li,
    .warning-box li {
        margin-bottom: 0.8rem;
        padding-left: 0.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .package-grid,
    .links-grid {
        grid-template-columns: 1fr;
    }
}

/* Subtiele verticale lijn tussen Dag 1 en Dag 2 */
.intro-grid-divider {
    grid-template-columns: 1fr auto 1fr;
}

.intro-divider {
    width: 4px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--sunrise-gold),
        transparent
    );
    opacity: 0.6;
}

/* Centreer alle hoofdsectie-headers */
section > .container > h2 {
    text-align: center; 
}

.video-section {
    overflow-x: hidden;
}

.video-section .container {
    overflow: hidden;
}



/* Desktop: video netjes begrenzen */
@media (min-width: 1024px) {
    .video-wrapper {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 43%;    
     }
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 40px 0 20px;
}

.partner-logos img {
    max-height: 125px;
    width: auto;
}

/* Experiential Image Sections */
.experience-moment {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 61, 92, 0.7) 0%, rgba(193, 122, 74, 0.6) 100%);
}

.experience-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-light);
    padding: 60px 20px;
    max-width: 800px;
}

.experience-content h3 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

.experience-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    margin: 0;
    font-weight: 500;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .experience-moment {
        min-height: 400px;
        background-attachment: scroll; /* Fixed backgrounds don't work well on mobile */
    }
    
    .experience-content h3 {
        font-size: 1.8rem;
    }
    
    .experience-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .experience-moment {
        min-height: 350px;
    }
    
    .experience-content h3 {
        font-size: 1.5rem;
    }
    
    .experience-content p {
        font-size: 1rem;
    }
}

/* Full-width footer illustration */
.footer-illustration {
    width: 100vw;
    height: 450px;
    background-image: url("images/footer.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    margin-left: calc(50% - 50vw);
}

@media (max-width: 768px) {
    .footer-illustration {
        height: 180px;
        background-size: contain;
        background-position: center bottom;
    }
}


