/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    z-index: auto;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background: linear-gradient(135deg, var(--chocolate) 0%, var(--burgundy) 50%, var(--forest-green) 100%);
    position: relative;
}

/* CSS Variables */
:root {
    --burgundy: #6B1028;
    --burgundy-light: #8B1538;
    --gold: #FFD700;
    --gold-dark: #B8860B;
    --forest-green: #1B4332;
    --forest-green-light: #2F5233;
    --crimson: #DC143C;
    --chocolate: #3C1810;
    --cream: #FFF8DC;
    --charcoal: #2C2C2C;
    --light-gold: #F5E6D3;
    --success: #22C55E;
    --white: #FFFFFF;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    /* Gebruik Playfair Display als scriptalternatief; Dancing Script verwijderd voor betere performance */
    --font-script: 'Playfair Display', serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.text-gold {
    color: var(--gold);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--chocolate);
    box-shadow: var(--shadow);
    border: 2px solid var(--gold-dark);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #FFED4E, var(--gold));
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--gold);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--chocolate);
    transform: translateY(-2px);
}

.btn-package {
    background: linear-gradient(135deg, var(--gold), #B8941F);
    color: var(--charcoal);
    width: 100%;
}

.btn-package-popular {
    background: linear-gradient(135deg, var(--burgundy), #6B1028);
    color: var(--white);
    width: 100%;
}

.btn-full {
    width: 100%;
}

/* Particles Background */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    top: -2em;
    color: var(--gold);
    font-size: 14px;
    line-height: 1;
    opacity: 0;
    user-select: none;
    will-change: transform, opacity;
    animation: snow-fall linear forwards;
}

.particle.sm  { font-size: 8px;  color: rgba(255,255,255,0.55); }
.particle.md  { font-size: 13px; color: rgba(212,175,55,0.65); }
.particle.lg  { font-size: 18px; color: rgba(212,175,55,0.35); }

@keyframes snow-fall {
    0%   { transform: translateY(-1em) translateX(0)    rotate(0deg);   opacity: 0; }
    8%   { opacity: 1; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(102vh) translateX(var(--drift)) rotate(var(--spin)); opacity: 0; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 44px;
    left: 0;
    width: 100%;
    background: rgba(60, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold);
    z-index: 1000;
    transition: top 0.3s ease, var(--transition);
}
.navbar.announce-hidden {
    top: 0;
}

.navbar.scrolled {
    background: rgba(60, 24, 16, 0.98);
    box-shadow: var(--shadow);
    z-index: 1000;
}

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

.nav-brand .brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.nav-link {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    padding: 100px 0 60px 0;
    background: linear-gradient(rgba(60, 24, 16, 0.7), rgba(107, 16, 40, 0.5)),
                url('Images/Firefly-20241108230908-png.avif') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    position: relative;
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(60, 24, 16, 0.75) 0%, 
        rgba(107, 16, 40, 0.65) 50%,
        rgba(60, 24, 16, 0.75) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px 20px 20px;
    margin: 0 auto;
    width: 100%;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    min-height: auto;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    max-width: 1400px;
    width: 100%;
    padding-right: 1rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--gold);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
    text-align: center;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-family: var(--font-script);
    color: var(--gold);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-align: center;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.4s both;
    text-align: center;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
    margin-top: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 30px;
    background: var(--white);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

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

/* Section Styles */
section {
    padding: 5rem 0;
    position: static;
    scroll-margin-top: 120px;
    background: var(--white);
    width: 100%;
    display: block;
    clear: both;
}

/* Styles for scroll animation */
.section-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

section:nth-child(even) {
    background: linear-gradient(135deg, var(--cream) 0%, #F9F7F4 100%);
}

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

.section-title {
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Add margin to first section after hero */
.video-showcase {
    margin-top: 0;
    background: linear-gradient(135deg, #0F0F23 0%, #1A1A2E 50%, #16213E 100%);
    position: relative;
    padding: 6rem 0;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    clear: both;
    overflow: hidden;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 21, 56, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.video-showcase .container {
    position: relative;
    z-index: 2;
}

.video-title {
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.video-subtitle {
    color: var(--gold);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.video-header {
    text-align: center;
    margin-bottom: 3rem;
}

.video-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.video-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-style: italic;
}

.video-player {
    margin-bottom: 3rem;
}

.video-frame {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-frame:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-description {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--burgundy) 50%, var(--gold) 100%);
    opacity: 0.8;
}

.video-description:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(212, 175, 55, 0.3);
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #2C2C2C;
    font-weight: 400;
}

.description-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8B1538;
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.description-highlight::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-size: 1.3rem;
}

.video-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-video-primary {
    background: linear-gradient(135deg, #8B1538 0%, #6B1028 50%, #4A0E1C 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 
        0 8px 25px rgba(139, 21, 56, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(139, 21, 56, 0.6);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-video-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-video-primary:hover::before {
    left: 100%;
}

.btn-video-primary:hover {
    background: linear-gradient(135deg, #A01A42 0%, #7D1230 50%, #5A1020 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(139, 21, 56, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-video-secondary {
    background: transparent;
    color: #2C2C2C;
    background: rgba(212, 175, 55, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-weight: 600;
    text-shadow: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-video-secondary:hover {
    background: linear-gradient(135deg, #FFED4E, var(--gold));
    color: #2C2C2C;
    border-color: var(--gold);
    text-shadow: none;
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Photos Section */
#photos {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

#photos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

#photos .container {
    position: relative;
    z-index: 1;
}

#photos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

#photos .container {
    position: relative;
    z-index: 1;
}

#photos .section-title {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: -0.02em;
}

#photos .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Google Slides Integration */
.slides-container {
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 0 1rem;
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 59.27%; /* 16:9.5 aspect ratio (569/960) */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.slides-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(212, 175, 55, 0.2);
}

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

.slides-caption {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    line-height: 1.6;
}

/* Responsive Design for Slides */
@media (max-width: 768px) {
    .slides-container {
        margin-top: 2rem;
        padding: 0 0.5rem;
    }
    
    .slides-wrapper {
        padding-bottom: 65%; /* Slightly taller on mobile for better visibility */
        border-radius: 8px;
    }
    
    .slides-wrapper iframe {
        border-radius: 8px;
    }
    
    .slides-caption {
        font-size: 1rem;
        margin-top: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .slides-wrapper {
        padding-bottom: 70%; /* Even taller on small screens */
    }
    
    .slides-caption {
        font-size: 0.95rem;
    }
}

/* Loading state for iframe */
.slides-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-top: 3px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

.slides-wrapper iframe[src] + ::before {
    display: none;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Packages Section */
.packages {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gold) 100%);
}

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

/* Responsive grid for packages */
@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .package-popular {
        transform: scale(1); /* Reset popular package scaling on mobile */
    }
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(60, 24, 16, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--crimson), var(--forest-green));
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(60, 24, 16, 0.25);
    border-color: var(--gold);
}

.package-popular {
    transform: scale(1.05);
    border: 3px solid var(--crimson);
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.4);
    background: linear-gradient(135deg, var(--cream) 0%, #FFEBCD 100%);
}

.package-popular::before {
    background: linear-gradient(90deg, var(--crimson), var(--gold), var(--burgundy));
    height: 6px;
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--burgundy);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-title {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.package-duration {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.package-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--success);
    display: block;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
}

.package-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gold) 100%);
    padding: 6rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* About Section Styling */
.about-main-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--burgundy);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.about-intro {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 248, 220, 0.9) 100%);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0;
    font-weight: 500;
}

.about-section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--burgundy);
    font-weight: 600;
    margin: 2.5rem 0 1rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.about-section-title::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-size: 1.2rem;
}

.about-text-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-text-content strong {
    color: var(--burgundy);
    font-weight: 600;
}

.about-cta {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-about-primary {
    background: linear-gradient(135deg, var(--burgundy) 0%, #6B1028 50%, #4A0E1C 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.4);
    transition: var(--transition);
    border: 1px solid rgba(139, 21, 56, 0.6);
}

.btn-about-primary:hover {
    background: linear-gradient(135deg, #A01A42 0%, #7D1230 50%, #5A1020 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 21, 56, 0.5);
}

.btn-about-secondary {
    background: transparent;
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-about-secondary:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.1rem;
}

.about-image {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}

.about-image-frame {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 3px solid var(--gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(-2deg);
}

.about-image-frame:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--burgundy);
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: 450px;
    object-fit: cover;
    display: block;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(107, 16, 40, 0.8));
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.image-caption {
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Repertoire Section */
.luxury-repertoire {
    background: linear-gradient(135deg, 
        rgba(205, 127, 50, 0.08) 0%, 
        rgba(139, 69, 19, 0.12) 50%,
        rgba(205, 127, 50, 0.08) 100%),
        var(--cream);
    padding: 6rem 0;
    position: relative;
}

.luxury-repertoire::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(232, 180, 184, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(184, 115, 51, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.repertoire-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.repertoire-icon {
    font-size: 3rem;
}

.luxury-repertoire-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--forest-green);
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.luxury-repertoire-subtitle {
    font-size: 1.3rem;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.repertoire-tagline {
    font-size: 1rem;
    color: #B87333;
    font-style: italic;
    margin-bottom: 3rem;
    font-weight: 500;
}

.luxury-repertoire-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.repertoire-intro-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.repertoire-intro-text {
    text-align: left;
}

.repertoire-intro-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.repertoire-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(184, 115, 51, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 3px solid #B87333;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(-2deg);
}

.repertoire-image-frame:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(184, 115, 51, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--burgundy);
}

.repertoire-image-frame img {
    width: 100%;
    max-width: 400px;
    height: 350px;
    object-fit: cover;
    display: block;
}

.repertoire-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(27, 67, 50, 0.8));
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.repertoire-image-overlay .image-caption {
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--forest-green);
    font-weight: 400;
}

.luxury-repertoire-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.luxury-repertoire-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 2.5rem 2.5rem 2.5rem;
    box-shadow: 
        0 8px 25px rgba(184, 115, 51, 0.12),
        0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(184, 115, 51, 0.2);
    border-left: 4px solid #B87333;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.luxury-repertoire-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(184, 115, 51, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.15);
    border-left-color: #E8B4B8;
}

.repertoire-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    margin: -2rem -2.5rem 2rem -2.5rem;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(139, 21, 56, 0.9) 0%, 
        rgba(107, 16, 40, 0.95) 50%, 
        rgba(27, 67, 50, 0.9) 100%);
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    backdrop-filter: blur(2px);
    border-bottom: 3px solid rgba(212, 175, 55, 0.3);
}

.repertoire-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.card-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.luxury-repertoire-card:hover .repertoire-card-header {
    background: linear-gradient(135deg, 
        rgba(139, 21, 56, 1) 0%, 
        rgba(107, 16, 40, 1) 50%, 
        rgba(27, 67, 50, 1) 100%);
    border-bottom-color: rgba(212, 175, 55, 0.5);
    transition: all 0.4s ease;
}

.luxury-repertoire-card:hover .card-title {
    transform: translateY(-1px);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 1);
}

.luxury-repertoire-card:hover .card-subtitle {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-0.5px);
}

.luxury-song-list {
    list-style: none;
}

.luxury-song-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--forest-green);
    font-weight: 400;
    transition: var(--transition);
}

.luxury-song-list li:hover {
    color: #B87333;
    transform: translateX(5px);
}

.song-bullet {
    color: #E8B4B8;
    margin-right: 0.5rem;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.luxury-song-list li:hover .song-bullet {
    color: #B87333;
    transform: scale(1.2);
}

/* New Ribbon for Dutch Card */
.new-ribbon {
    position: absolute;
    top: 15px;
    left: -15px;
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 25px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 
        0 4px 15px rgba(34, 197, 94, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 10;
    transform: rotate(-45deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.luxury-repertoire-card:hover .new-ribbon {
    transform: rotate(-45deg) scale(1.08);
    box-shadow: 
        0 6px 25px rgba(34, 197, 94, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #16A34A 0%, #22C55E 100%);
}

/* Inclusive Section */
.inclusive {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gold) 100%);
    padding: 6rem 0;
}

.luxury-inclusive-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.inclusive-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.inclusive-header {
    margin-bottom: 2rem;
}

.luxury-inclusive-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
}

.inclusive-content-text {
    margin-bottom: 3rem;
}

.inclusive-main-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.inclusive-secondary-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.christmas-checklist {
    display: block;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    padding: 0;
}

.checklist-item:hover {
    transform: translateY(-2px);
    padding-left: 0.5rem;
}


.christmas-star {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
    color: var(--gold);
    flex-shrink: 0;
}

.checklist-item:hover .christmas-star {
    transform: scale(1.2) rotate(72deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.checklist-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--burgundy);
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.checklist-item:hover .checklist-text {
    color: var(--forest-green);
    font-weight: 600;
}


.inclusive-hero-image {
    position: relative;
}

.inclusive-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.inclusive-image-frame img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 500px;
}

.inclusive-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 21, 56, 0.1), rgba(212, 175, 55, 0.1));
}

/* Agenda Section - V2 - Enhanced Visuals */
.agenda2 {
    background: linear-gradient(175deg, #fdfbfb 0%, #ebedee 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.agenda2::before {
    content: '🎄';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 10rem;
    color: var(--forest-green);
    opacity: 0.05;
    transform: rotate(-15deg);
}

.agenda2::after {
    content: '❄️';
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 10rem;
    color: var(--gold);
    opacity: 0.05;
    transform: rotate(15deg);
}

.availability-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.availability-header {
    text-align: center;
    margin-bottom: 4rem;
}

.availability-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--burgundy);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.availability-title {
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.availability-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

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

.availability-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #e0e0e0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.availability-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
}

.availability-card-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px dashed #ddd;
}

.availability-status-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.availability-month {
    font-family: var(--font-display);
    color: var(--burgundy);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.availability-status {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.availability-description {
    padding: 1.5rem;
    color: #666;
    font-size: 1rem;
    flex-grow: 1;
}

.availability-action {
    padding: 0 2rem 2rem 2rem;
    margin-top: auto;
}

.btn-availability {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Status: Fully Booked (Oktober, November) */
.availability-fully-booked .availability-card-header {
    background: #f1f1f1;
}
.availability-fully-booked .availability-status-icon { color: #888; }
.availability-fully-booked .availability-month { color: #777; }
.availability-fully-booked .availability-status {
    background: #e0e0e0;
    color: #666;
}
.availability-fully-booked p { color: #888; }
.availability-fully-booked .btn-availability {
    background: #ccc;
    color: #fff;
    cursor: not-allowed;
    box-shadow: none;
}
.availability-fully-booked:hover {
    transform: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
}


/* Status: Limited (December) */
.availability-busy .availability-status-icon { color: var(--gold-dark); }
.availability-busy .availability-month { color: var(--burgundy); }
.availability-busy .availability-status {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold-dark);
}
.availability-busy .btn-availability {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--chocolate);
}
.availability-busy .btn-availability:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}


/* Status: Available (Hypothetical for future) */
.availability-available .availability-status-icon { color: var(--success); }
.availability-available .availability-month { color: var(--forest-green); }
.availability-available .availability-status {
    background: rgba(34, 197, 94, 0.15);
    color: #15803d;
}
.availability-available .btn-availability {
    background: linear-gradient(135deg, var(--success), #16a34a);
    color: white;
}
.availability-available .btn-availability:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}


.availability-note {
    background: linear-gradient(135deg, var(--cream), var(--light-gold));
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--gold);
}

.note-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    color: var(--gold-dark);
}

.note-content h4 {
    color: var(--burgundy);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}
.note-content p {
    margin-bottom: 0;
    color: #555;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gold) 100%);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.testimonial-logo {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.testimonial-logo img {
    max-height: 60px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-logo img {
    filter: brightness(1) contrast(1.2);
    transform: scale(1.05);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    margin-bottom: 1rem;
}

.testimonial-author strong {
    color: var(--burgundy);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-rating {
    font-size: 1.2rem;
}

/* Slideshow Section */
.slideshow-section {
    background: #0c0e14;
    padding: 6rem 0;
    position: relative;
}

.slideshow-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.slideshow-text {
    padding-right: 2rem;
}

.slideshow-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    font-weight: 500;
}

.slideshow-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

.modern-slideshow {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.slideshow-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    color: var(--charcoal);
    display: none;
}

.slideshow-loading.active {
    display: block;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(212, 175, 55, 0.3);
    border-top: 4px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.slideshow-wrapper {
    position: relative;
    width: 1400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.slideshow-wrapper:hover {
    max-width: 700px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 12px;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    filter: brightness(1) contrast(1.05) saturate(1.1);
}

.slide img[data-src] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.slide img.loaded {
    filter: brightness(1) contrast(1.1) saturate(1.15);
}

.slide:hover img {
    transform: scale(1.02);
    filter: brightness(1.05) contrast(1.15) saturate(1.2);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        transparent 0%, 
        rgba(60, 24, 16, 0.7) 50%, 
        rgba(60, 24, 16, 0.9) 100%
    );
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    backdrop-filter: blur(2px);
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.slide:hover .slide-caption {
    background: linear-gradient(
        transparent 0%, 
        rgba(60, 24, 16, 0.8) 50%, 
        rgba(60, 24, 16, 0.95) 100%
    );
    border-top-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    color: var(--charcoal);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.slide-btn:hover {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.95) 0%, 
        rgba(255, 215, 0, 0.95) 100%);
    color: var(--charcoal);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 
        0 12px 35px rgba(212, 175, 55, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(212, 175, 55, 0.5);
}

.slide-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: 25px;
}

.next-btn {
    right: 25px;
}

.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.indicator:hover {
    background: rgba(212, 175, 55, 0.6);
    transform: scale(1.2);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.indicator.active {
    background: linear-gradient(135deg, var(--gold) 0%, #FFED4E 100%);
    transform: scale(1.3);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 
        0 4px 15px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.indicator.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--charcoal);
    border-radius: 50%;
    opacity: 0.7;
}

.slideshow-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, 
        rgba(60, 24, 16, 0.9) 0%, 
        rgba(107, 16, 40, 0.9) 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 15;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.current-slide {
    color: var(--gold);
    font-weight: 700;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gold) 100%);
    padding: 6rem 0;
}

.luxury-contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.luxury-contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.luxury-contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.luxury-booking-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.booking-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.booking-icon {
    font-size: 2rem;
}

.booking-highlight h3 {
    color: var(--burgundy);
    margin: 0;
}

.btn-luxury-booking {
    display: inline-block;
    background: linear-gradient(135deg, var(--burgundy), #6B1028);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-luxury-booking:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-text {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.btn-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-hero-image {
    position: relative;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    transform: scale(1.1);
    opacity: 0.3;
    z-index: 1;
}

.slide-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    z-index: 3;
}

.slideshow-counter {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slideshow-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-nav.prev {
    left: 15px;
}

.slideshow-nav.next {
    right: 15px;
}

.slideshow-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slideshow-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slideshow-indicators .indicator.active {
    background: #d4af37;
    transform: scale(1.2);
}

.slideshow-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-slideshow {
        margin: 0 10px;
    }
    
    .slideshow-container {
        height: 300px;
    }
    
    .slideshow-nav {
        width: 40px;
        height: 40px;
    }
    
    .slideshow-nav.prev {
        left: 10px;
    }
    
    .slideshow-nav.next {
        right: 10px;
    }
    
    .slide-caption {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .slideshow-counter {
        top: 10px;
        right: 10px;
        padding: 6px 10px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .slideshow-container {
        height: 250px;
    }
    
    .slideshow-indicators {
        bottom: 10px;
    }
    
    .slideshow-indicators .indicator {
        width: 8px;
        height: 8px;
    }
}

/* Old slideshow styles - remove these */
.slideshow-container.old {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.slide.old {
    display: none;
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 21, 56, 0.1), rgba(212, 175, 55, 0.1));
}

.luxury-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.luxury-contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.luxury-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.luxury-contact-card h4 {
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--burgundy);
}

.luxury-contact-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.luxury-guarantee {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow);
}

.guarantee-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.guarantee-content h4 {
    color: var(--burgundy);
    margin-bottom: 0.5rem;
}

.guarantee-content p {
    color: #666;
    margin: 0;
}

/* Footer */
.footer {
    background: #080508;
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

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

.footer-brand h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

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

.footer-column h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* Integrated Contact Block */
.integrated-contact-block {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin-top: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-block-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

/* Direct Contact Section */
.contact-direct h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 0.5rem;
}

.direct-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.direct-contact-item .contact-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.direct-contact-item .contact-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #8B4513;
    margin: 0 0 0.25rem 0;
}

.direct-contact-item .contact-link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.direct-contact-item .contact-link:hover {
    color: #B8941F;
    text-decoration: underline;
}

/* Breadcrumb Navigation Styling */
.breadcrumb-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-nav ul li {
    margin-bottom: 0.5rem;
}

.breadcrumb-nav ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.breadcrumb-nav ul li a:hover {
    color: #D4AF37;
    text-decoration: underline;
}

.breadcrumb-nav ul li a:focus {
    outline: 2px solid #D4AF37;
    outline-offset: 2px;
}

/* Contact Form Section */
.contact-form-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #8B4513;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    background: #fefefe;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-contact-submit {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    align-self: flex-start;
    min-width: 200px;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-contact-submit .btn-text {
    font-size: 1rem;
    font-weight: 600;
}

.btn-contact-submit .btn-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 400;
}

.contact-image {
    margin: 2rem 0;
    text-align: center;
}

.contact-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .integrated-contact-block {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .contact-block-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .btn-contact-submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .integrated-contact-block {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .contact-direct h3,
    .contact-form-section h3 {
        font-size: 1.25rem;
    }
    
    .direct-contact-item {
        padding: 0.75rem 0;
    }
    
    .direct-contact-item .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* Mobile Navigation Styles */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #d4af37; /* Goud/geel kleur voor hamburger menu */
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger menu animatie en actieve staat */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #d4af37;
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: #d4af37;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    /* Probleem 1: Voorkomen van overlap tussen content en hamburger menu */
    .hero {
        padding-top: 120px; /* Extra ruimte voor navbar */
    }
    
    .hero-content {
        margin-top: 20px; /* Extra marge voor betere spacing */
    }
    
    .hero h1 {
        margin-top: 0;
        padding-top: 0;
    }
    
    /* Zorg ervoor dat navbar altijd bovenop staat */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1002; /* Hoger dan navbar voor zichtbaarheid */
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95); /* Donkere achtergrond voor betere leesbaarheid */
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 1001;
        padding: 80px 20px 20px; /* Ruimte voor navbar */
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInUp 0.3s ease forwards;
    }
    
    /* Staggered animatie voor menu items */
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu.active li:nth-child(6) { animation-delay: 0.6s; }
    .nav-menu.active li:nth-child(7) { animation-delay: 0.7s; }
    
    @keyframes slideInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-menu a {
        font-size: 1.5rem;
        color: #ffffff; /* Witte tekst voor betere leesbaarheid op donkere achtergrond */
        text-decoration: none;
        padding: 15px 30px;
        border-radius: 10px;
        transition: all 0.3s ease;
        font-weight: 500;
        text-align: center;
        min-width: 200px;
        display: block;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(212, 175, 55, 0.3); /* Gouden hover effect */
        color: #d4af37; /* Gouden tekst bij hover */
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }
    
    /* Extra styling voor betere UX */
    .nav-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background: #d4af37;
        transition: width 0.3s ease;
    }
    
    .nav-menu a:hover::before {
        width: 100%;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        padding-right: 0;
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-description {
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content,
    .contact-hero,
    .inclusive-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-cta {
        justify-content: center;
    }
    
    .btn-about-primary,
    .btn-about-secondary {
        min-width: 200px;
        justify-content: center;
    }
    
    .about-image-frame {
        transform: rotate(0deg);
        max-width: 350px;
        margin: 0 auto;
    }
    
    .slideshow-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .slideshow-text {
        padding-right: 0;
        max-width: 95vw;
        margin: 0 auto;
    }
    
    .slideshow-wrapper {
        width: 100%;
        height: 400px;
    }
    
    .slide-btn {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
    .slideshow-counter {
        top: 15px;
        right: 15px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Extra kleine schermen (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero {
        padding-top: 100px; /* Minder padding op zeer kleine schermen */
    }
    
    .nav-menu a {
        font-size: 1.3rem; /* Kleinere tekst op zeer kleine schermen */
        padding: 12px 25px;
        min-width: 180px;
    }
}

/* Grote mobiele schermen en kleine tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        padding-top: 100px; /* Aangepaste padding voor tablets */
    }
}

/* Zorg ervoor dat de navbar scrolled state ook goed werkt op mobile */
@media (max-width: 768px) {
    .navbar.scrolled {
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
    }
    
    /* Verbeter de zichtbaarheid van het logo op mobile */
    .navbar .logo {
        font-size: 1.5rem;
        z-index: 1002;
    }
    
    .hero {
        min-height: 70vh;
        padding: 90px 0 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-layout {
        gap: 1rem;
    }
    
    .hero-image img {
        max-width: 350px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .luxury-repertoire-grid {
        grid-template-columns: 1fr;
    }
    
    .repertoire-intro-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .repertoire-intro-text {
        text-align: center;
    }
    
    .repertoire-image-frame {
        transform: rotate(0deg);
        max-width: 350px;
        margin: 0 auto;
    }
    
    .availability-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .luxury-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 280px;
        padding: 80px 0 30px 0;
    }
    
    .hero-content {
        padding: 0 15px 15px 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    
    .hero-cta {
        margin-top: 0.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .package-card,
    .testimonial-card,
    .luxury-contact-card {
        padding: 1.5rem;
    }
    
    .slideshow-wrapper {
        height: 320px;
    }
    
    .slide-btn {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .slideshow-counter {
        top: 10px;
        right: 10px;
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .slide-indicators {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .indicator.active::after {
        width: 4px;
        height: 4px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.contact-link:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .whatsapp-float,
    #particles {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    section {
        padding: 1rem 0;
        page-break-inside: avoid;
    }
}

/* ==============================================
   FACELIFT 2026 — Nieuwe & bijgewerkte stijlen
   ============================================== */

/* --- Social Proof Strip --- */
.social-proof-strip {
    background: linear-gradient(135deg, var(--chocolate) 0%, var(--burgundy) 100%);
    border-bottom: 3px solid var(--gold);
    padding: 1.4rem 0;
    overflow: hidden;
}

.social-proof-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.social-proof-label {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    flex-shrink: 0;
}

.social-proof-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-proof-logos img {
    max-height: 60px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.social-proof-logos a:hover img,
.social-proof-logos img:hover {
    opacity: 1;
    transform: scale(1.06);
}

.social-proof-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stat-number {
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-display);
    line-height: 1.2;
}

.stat-label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .social-proof-inner {
        justify-content: center;
        text-align: center;
    }
    .social-proof-logos {
        justify-content: center;
    }
    .social-proof-stats {
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .social-proof-stats {
        display: none;
    }
}

/* --- Foto Galerij — Native Carrousel --- */
.gallery-intro-text {
    text-align: center;
    font-size: 1.05rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.75;
    font-style: italic;
}

/* Override ALL eerder gedefinieerde .modern-slideshow en .slide stijlen */
.modern-slideshow {
    position: relative !important;
    width: 100% !important;
    max-width: 960px !important;
    margin: 0 auto !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background: #0d0d0d !important;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(212, 175, 55, 0.25) !important;
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
    aspect-ratio: 16 / 9 !important;
    max-height: none !important;
}

.modern-slideshow .slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    transition: opacity 0.55s ease !important;
    transform: none !important;
    z-index: 1 !important;
}

.modern-slideshow .slide.active {
    opacity: 1 !important;
    transform: none !important;
    z-index: 2 !important;
}

.modern-slideshow .slide-background {
    position: absolute !important;
    inset: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    filter: blur(28px) brightness(0.35) !important;
    transform: scale(1.18) !important;
    z-index: 1 !important;
}

.modern-slideshow .slide-image {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* Navigatieknoppen */
.slideshow-prev,
.slideshow-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(0, 0, 0, 0.55) !important;
    backdrop-filter: blur(8px) !important;
    border: 1.5px solid rgba(212, 175, 55, 0.45) !important;
    color: #fff !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    z-index: 10 !important;
    transition: all 0.22s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

.slideshow-prev { left: 16px !important; }
.slideshow-next { right: 16px !important; }

.slideshow-prev:hover,
.slideshow-next:hover {
    background: rgba(212, 175, 55, 0.9) !important;
    color: var(--chocolate) !important;
    transform: translateY(-50%) scale(1.1) !important;
    border-color: var(--gold) !important;
}

/* Teller */
.modern-slideshow .slideshow-counter {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    background: rgba(0, 0, 0, 0.65) !important;
    backdrop-filter: blur(6px) !important;
    color: #fff !important;
    padding: 5px 13px !important;
    border-radius: 20px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    z-index: 10 !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
}

/* Puntjes */
.carousel-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.modern-slideshow .indicator {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.35) !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer !important;
    transition: all 0.22s ease !important;
    display: inline-block !important;
    min-width: 0 !important;
    box-shadow: none !important;
}

.modern-slideshow .indicator.active {
    background: var(--gold) !important;
    transform: scale(1.35) !important;
}

.modern-slideshow .indicator:hover {
    background: rgba(255, 255, 255, 0.7) !important;
}

.slideshow-section .slides-caption {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.92rem;
    color: #888;
    font-style: italic;
    line-height: 1.6;
}

/* Mobiel carrousel */
@media (max-width: 768px) {
    .modern-slideshow {
        aspect-ratio: 4 / 3 !important;
        border-radius: 12px !important;
    }
    .slideshow-prev,
    .slideshow-next {
        width: 42px !important;
        height: 42px !important;
        font-size: 1.3rem !important;
    }
    .slideshow-prev { left: 10px !important; }
    .slideshow-next { right: 10px !important; }
}

@media (max-width: 480px) {
    .modern-slideshow {
        aspect-ratio: 3 / 2 !important;
    }
    .slideshow-prev,
    .slideshow-next {
        width: 36px !important;
        height: 36px !important;
        font-size: 1.1rem !important;
    }
}

/* --- Facelift: Verfijnd wit-/luchtruimte --- */

/* Sectie padding verhogen */
.packages { padding: 7rem 0 !important; }
.about { padding: 7rem 0 !important; }
.luxury-repertoire { padding: 7rem 0 !important; }
.inclusive { padding: 7rem 0 !important; }
.agenda2 { padding: 7rem 0 !important; }
.testimonials { padding: 6rem 0 !important; }
.contact { padding: 7rem 0 !important; }
.slideshow-section { padding: 6rem 0 !important; }

/* Verbeterde pakket-cards met gouden randgloed */
.package-card:hover {
    transform: translateY(-12px) !important;
    box-shadow:
        0 22px 55px rgba(60, 24, 16, 0.22),
        0 0 0 2px rgba(212, 175, 55, 0.3) !important;
}

.package-popular:hover {
    transform: scale(1.05) translateY(-10px) !important;
}

/* Section headers: meer lucht */
.section-header {
    margin-bottom: 5rem !important;
}

/* Hero op kleine schermen */
@media (max-width: 480px) {
    .hero {
        padding-top: 80px !important;
        min-height: 70vh !important;
    }
    .hero-image { display: none; }
}

/* About-foto: consistente verhouding */
.about-image img {
    height: auto !important;
    max-height: 520px !important;
    width: 100% !important;
    object-fit: cover !important;
}

/* Inclusive foto fix */
.inclusive-image-frame img {
    width: 100% !important;
    height: auto !important;
    max-height: 500px !important;
    object-fit: cover !important;
}

/* WhatsApp knop met label op desktop */
@media (min-width: 769px) {
    .whatsapp-float {
        width: auto !important;
        padding: 0 1.2rem;
        border-radius: 30px !important;
        gap: 0.5rem;
        font-size: 1rem !important;
    }
    .whatsapp-float::after {
        content: 'WhatsApp';
        font-size: 0.85rem;
        font-weight: 600;
        color: #fff;
    }
}

/* Scrollbar verfijning (webkit) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f5f5f5; }
::-webkit-scrollbar-thumb { background: var(--burgundy); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ======================================================
   AGENDA V2 — LUXURY REDESIGN 2026
   ====================================================== */

.agenda2 {
    background: #0e0610 !important;
    padding: 7rem 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.agenda2::before,
.agenda2::after {
    content: none !important;
}

.avail-v2-header {
    text-align: center;
    margin-bottom: 4rem;
}

.avail-v2-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.agenda2 .availability-title {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    color: var(--white) !important;
    margin-bottom: 1rem !important;
}

.agenda2 .availability-subtitle {
    color: rgba(255,255,255,0.5) !important;
    font-size: 1rem !important;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Grid override */
.agenda2 .availability-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    margin-bottom: 3rem !important;
}

/* Hide the old cards entirely when new markup is used */
.avail-v2-card {
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
    box-shadow: none;
    text-align: left;
}

.avail-v2-card:hover {
    border-color: rgba(212, 175, 55, 0.45);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.avail-v2-month {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.avail-v2-year {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-bottom: 0.5rem;
}

.avail-v2-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.avail-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.avail-open .avail-dot {
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
}

.avail-open .avail-v2-status {
    color: #4ade80;
}

.avail-limited .avail-dot {
    background: var(--gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.avail-limited .avail-v2-status {
    color: var(--gold);
}

.avail-v2-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    flex-grow: 1;
    margin: 0;
}

.avail-v2-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.65rem 1.2rem;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    align-self: flex-start;
    transition: all 0.3s ease;
    background: transparent;
}

.avail-v2-cta:hover {
    background: var(--gold);
    color: #0e0610;
    border-color: var(--gold);
    transform: translateY(-1px);
}

/* Footer bar */
.avail-v2-footer-bar {
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.avail-v2-footer-bar p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
    line-height: 1.6;
    max-width: 560px;
}

.avail-v2-footer-cta {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.avail-v2-footer-cta:hover {
    background: var(--gold);
    color: #0e0610;
    border-color: var(--gold);
}

@media (max-width: 900px) {
    .agenda2 .availability-grid {
        grid-template-columns: 1fr !important;
    }
    .avail-v2-footer-bar {
        flex-direction: column;
        text-align: center;
    }
    .avail-v2-cta {
        align-self: stretch;
        text-align: center;
    }
}

/* ======================================================
   CONTACT V2 — LUXURY DARK REDESIGN 2026
   ====================================================== */

.contact {
    background: #0d0810 !important;
    padding: 7rem 0 !important;
}

.contact-v2-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-v2-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-v2-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #f5f0ea !important;
    margin-bottom: 1rem;
}

.contact-v2-header p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-v2-panel {
    display: grid;
    grid-template-columns: 1fr 1.65fr;
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

/* --- Left panel --- */
.contact-v2-left {
    background: rgba(212, 175, 55, 0.05);
    border-right: 1px solid rgba(212, 175, 55, 0.15);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-v2-portrait {
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-v2-portrait img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: brightness(0.9) saturate(0.85);
}

.contact-v2-info {
    display: flex;
    flex-direction: column;
}

.contact-v2-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.contact-v2-item:hover .contact-v2-icon {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
    transform: scale(1.06);
}

.contact-v2-item:hover .contact-v2-item-value {
    color: var(--gold);
}

.contact-v2-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-v2-icon svg {
    width: 19px;
    height: 19px;
}

.contact-v2-item-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-v2-item-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

.contact-v2-item-value {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.contact-v2-showbird {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.contact-v2-showbird-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1rem;
}

.contact-v2-showbird a {
    display: inline-block;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-v2-showbird a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* --- Right panel (form) --- */
.contact-v2-right {
    padding: 3rem 2.5rem;
}

.contact-v2-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.contact-v2-right .contact-form {
    gap: 1.25rem;
}

.contact-v2-right .form-group label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-v2-right .form-group input,
.contact-v2-right .form-group select,
.contact-v2-right .form-group textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 8px;
    color: var(--white);
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
}

.contact-v2-right .form-group input::placeholder,
.contact-v2-right .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.22);
}

.contact-v2-right .form-group select option {
    background: #1e1014;
    color: var(--white);
}

.contact-v2-right .form-group input:focus,
.contact-v2-right .form-group select:focus,
.contact-v2-right .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.07);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-v2-right .btn-contact-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold) 0%, #b8941f 100%);
    color: #1a0a0a;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: stretch;
    min-width: unset;
}

.contact-v2-right .btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.35);
}

.contact-v2-right .btn-contact-submit .btn-text {
    font-size: 1rem;
    font-weight: 700;
    color: #1a0a0a;
}

.contact-v2-right .btn-contact-submit .btn-subtitle {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(26, 10, 10, 0.65);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-v2-panel {
        grid-template-columns: 1fr;
    }
    .contact-v2-left {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    }
    .contact-v2-portrait {
        display: none;
    }
}

@media (max-width: 600px) {
    .contact-v2-left,
    .contact-v2-right {
        padding: 2rem 1.5rem;
    }
    .contact-v2-right .form-row {
        grid-template-columns: 1fr;
    }
}

/* ======================================================
   ABOUT V2 — LUXURY DARK REDESIGN 2026
   ====================================================== */

.about {
    background: #0d0810 !important;
    padding: 7rem 0 !important;
}

.about-v2-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* Image */
.about-v2-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    line-height: 0;
    position: sticky;
    top: 100px;
}

.about-v2-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: brightness(0.88) saturate(0.8);
}

/* Header */
.about-v2-header {
    margin-bottom: 2.5rem;
}

.about-v2-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.about-v2-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.about-v2-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 480px;
    margin: 0;
}

/* Stats */
.about-v2-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.75rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    margin-bottom: 2.5rem;
}

.about-v2-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-v2-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.about-v2-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.4;
}

.about-v2-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    flex-shrink: 0;
}

/* Body text */
.about-v2-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.about-v2-body p {
    font-family: 'Inter', sans-serif;
    font-size: 0.97rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.about-v2-body p strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.about-v2-body p em {
    color: var(--gold);
    font-style: italic;
}

/* CTA */
.about-v2-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-v2-btn {
    display: inline-block;
    padding: 0.9rem 1.75rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.about-v2-btn--primary {
    background: var(--gold);
    color: #0d0810;
    border: 1px solid var(--gold);
}

.about-v2-btn--primary:hover {
    background: #b8941f;
    border-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.about-v2-btn--secondary {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.about-v2-btn--secondary:hover {
    background: var(--gold);
    color: #0d0810;
    border-color: var(--gold);
}

/* Responsive */
@media (max-width: 960px) {
    .about-v2-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-v2-image {
        position: static;
        max-width: 480px;
    }
    .about-v2-image img {
        height: 380px;
    }
}

@media (max-width: 600px) {
    .about-v2-stats {
        gap: 1.25rem;
    }
    .about-v2-stat-number {
        font-size: 1.6rem;
    }
    .about-v2-cta {
        flex-direction: column;
    }
    .about-v2-btn {
        text-align: center;
    }
}

/* ======================================================
   ABOUT V2 — LUXURY DARK REDESIGN 2026
   ====================================================== */

.about {
    background: #0d0810 !important;
    padding: 7rem 0 !important;
}

.about-v2-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.about-v2-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    line-height: 0;
    position: sticky;
    top: 100px;
}

.about-v2-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: brightness(0.88) saturate(0.8);
}

.about-v2-header {
    margin-bottom: 2.5rem;
}

.about-v2-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.about-v2-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.about-v2-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 480px;
    margin: 0;
}

.about-v2-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.75rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    margin-bottom: 2.5rem;
}

.about-v2-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-v2-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.about-v2-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.4;
}

.about-v2-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    flex-shrink: 0;
}

.about-v2-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.about-v2-body p {
    font-family: 'Inter', sans-serif;
    font-size: 0.97rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.about-v2-body p strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.about-v2-body p em {
    color: var(--gold);
    font-style: italic;
}

.about-v2-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-v2-btn {
    display: inline-block;
    padding: 0.9rem 1.75rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.about-v2-btn--primary {
    background: var(--gold);
    color: #0d0810;
    border: 1px solid var(--gold);
}

.about-v2-btn--primary:hover {
    background: #b8941f;
    border-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.about-v2-btn--secondary {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.about-v2-btn--secondary:hover {
    background: var(--gold);
    color: #0d0810;
    border-color: var(--gold);
}

@media (max-width: 960px) {
    .about-v2-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-v2-image {
        position: static;
        max-width: 480px;
    }
    .about-v2-image img {
        height: 380px;
    }
}

@media (max-width: 600px) {
    .about-v2-stats {
        gap: 1.25rem;
    }
    .about-v2-stat-number {
        font-size: 1.6rem;
    }
    .about-v2-cta {
        flex-direction: column;
    }
    .about-v2-btn {
        text-align: center;
    }
}

/* ======================================================
   REPERTOIRE V2 — LUXURY DARK REDESIGN 2026
   ====================================================== */

.luxury-repertoire {
    background: #110a0d !important;
    padding: 7rem 0 !important;
    position: relative !important;
}

.luxury-repertoire::before {
    content: none !important;
}

/* Header */
.rep-v2-header {
    text-align: center;
    margin-bottom: 4rem;
}

.rep-v2-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.luxury-repertoire-title {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    color: var(--white) !important;
    margin-bottom: 1rem !important;
    text-shadow: none !important;
}

.luxury-repertoire-subtitle {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
    max-width: 520px;
    margin: 0 auto !important;
    line-height: 1.8;
    font-style: normal !important;
}

/* Two-column layout: image + song columns */
.rep-v2-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.rep-v2-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    line-height: 0;
    position: sticky;
    top: 100px;
}

.rep-v2-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: brightness(0.85) saturate(0.8);
}

/* Song columns */
.rep-v2-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    overflow: hidden;
}

.rep-v2-col {
    padding: 2rem 1.75rem 2.5rem;
    border-right: 1px solid rgba(212, 175, 55, 0.12);
    transition: background 0.3s ease;
}

.rep-v2-col--featured {
    background: rgba(212, 175, 55, 0.07);
    border-right-color: rgba(212, 175, 55, 0.2);
    position: relative;
}

.rep-v2-col--featured::before {
    content: 'Kerst';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #110a0d;
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 0 0 6px 6px;
}

.rep-v2-col--featured .rep-v2-col-title {
    color: var(--gold);
}

.rep-v2-col--featured .rep-v2-songlist li {
    color: rgba(255, 255, 255, 0.7);
}

.rep-v2-col:last-child {
    border-right: none;
}

.rep-v2-col-header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.rep-v2-col-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.rep-v2-new {
    color: #4ade80 !important;
}

.rep-v2-col-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

/* Song list */
.rep-v2-songlist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.rep-v2-songlist li {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    padding: 0.55rem 0;
    padding-left: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: color 0.25s ease, padding-left 0.25s ease;
    line-height: 1.4;
}

.rep-v2-songlist li:last-child {
    border-bottom: none;
}

.rep-v2-songlist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--gold);
    border-radius: 2px;
    transition: height 0.25s ease;
}

.rep-v2-songlist li:hover {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 1.25rem;
}

.rep-v2-songlist li:hover::before {
    height: 60%;
}

/* Footer note bar */
.rep-v2-note {
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.rep-v2-note p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    line-height: 1.7;
    max-width: 560px;
}

.rep-v2-note-cta {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.rep-v2-note-cta:hover {
    background: var(--gold);
    color: #110a0d;
    border-color: var(--gold);
}

/* Responsive */
@media (max-width: 1024px) {
    .rep-v2-layout {
        grid-template-columns: 1fr;
    }
    .rep-v2-image {
        position: static;
    }
    .rep-v2-image img {
        height: 320px;
        object-position: center 20%;
    }
}

@media (max-width: 700px) {
    .rep-v2-columns {
        grid-template-columns: 1fr;
    }
    .rep-v2-col {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    }
    .rep-v2-col:last-child {
        border-bottom: none;
    }
    .rep-v2-note {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   PACKAGES V2 — LUXURY DARK REDESIGN 2026
   ============================================================ */

.pkg-v2-section {
    background: #0d0810 !important;
    padding: 7rem 0 !important;
}

.pkg-v2-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pkg-v2-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.pkg-v2-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #f5f0ea;
    margin: 0 0 0.75rem;
}

.pkg-v2-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(245, 240, 234, 0.6);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

.pkg-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.pkg-v2-card {
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    background: #15101a;
    transition: border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}

.pkg-v2-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.pkg-v2-card--featured {
    border-color: rgba(212, 175, 55, 0.5);
    background: #1a1220;
    position: relative;
}

.pkg-v2-card-inner {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.pkg-v2-card-inner .pkg-v2-btn {
    margin-top: auto;
}

.pkg-v2-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #110a0d;
    background: var(--gold);
    padding: 0.3em 0.9em;
    border-radius: 2px;
    align-self: flex-start;
}

.pkg-v2-duration {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 240, 234, 0.45);
}

.pkg-v2-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #f5f0ea;
    margin: 0;
}

.pkg-v2-price {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.pkg-v2-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.pkg-v2-vat {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: rgba(245, 240, 234, 0.4);
}

.pkg-v2-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.pkg-v2-features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(245, 240, 234, 0.75);
    padding-left: 1.4em;
    position: relative;
    line-height: 1.5;
}

.pkg-v2-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.7;
}

.pkg-v2-btn {
    display: block;
    text-align: center;
    padding: 0.85rem 1.5rem;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    margin-top: auto;
}

.pkg-v2-btn--outline {
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--gold);
    background: transparent;
}

.pkg-v2-btn--outline:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.pkg-v2-btn--gold {
    background: var(--gold);
    color: #110a0d;
    border: 1px solid var(--gold);
}

.pkg-v2-btn--gold:hover {
    background: #c4a030;
    border-color: #c4a030;
    color: #0d0810;
}

.pkg-v2-custom {
    text-align: center;
    margin-top: 2.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(245, 240, 234, 0.5);
}

.pkg-v2-custom a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Responsive */
@media (max-width: 900px) {
    .pkg-v2-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* ============================================================
   ALL-INCLUSIVE — OVERRIDE: dark bg + CSS checkmarks
   ============================================================ */

.inclusive {
    background: #110a0d !important;
}

.luxury-inclusive-title {
    color: #f5f0ea !important;
}

.luxury-inclusive-title .text-gold {
    color: var(--gold) !important;
}

.inclusive-main-text {
    color: rgba(245, 240, 234, 0.85) !important;
}

.inclusive-secondary-text {
    color: rgba(245, 240, 234, 0.6) !important;
}

.checklist-text {
    color: rgba(245, 240, 234, 0.8) !important;
}

.christmas-checklist {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(212, 175, 55, 0.2) !important;
    box-shadow: none !important;
}

.incl-check {
    display: inline-block;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.5);
    position: relative;
    top: 3px;
    margin-right: 0.5rem;
}

.incl-check::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: 2px solid var(--gold);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* ============================================================
   TESTIMONIALS V2 — LUXURY DARK REDESIGN 2026
   ============================================================ */

.testi-v2-section {
    background: #0e0610 !important;
    padding: 7rem 0 !important;
}

.testi-v2-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testi-v2-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.testi-v2-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #f5f0ea;
    margin: 0 0 0.75rem;
}

.testi-v2-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(245, 240, 234, 0.55);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

.testi-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testi-v2-card {
    background: #15101a;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.25s ease;
}

.testi-v2-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.testi-v2-logo {
    height: 52px;
    display: flex;
    align-items: center;
}

.testi-v2-logo img {
    max-height: 52px;
    max-width: 130px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.6);
}

.testi-v2-stars {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    line-height: 1;
}

.testi-v2-quote {
    font-family: 'Inter', sans-serif;
    font-size: 0.93rem;
    line-height: 1.7;
    color: rgba(245, 240, 234, 0.75);
    margin: 0;
    font-style: italic;
    border: none;
    padding: 0;
}

.testi-v2-author {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.testi-v2-author strong {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #f5f0ea;
}

.testi-v2-author span {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: rgba(245, 240, 234, 0.45);
}

/* Responsive */
@media (max-width: 900px) {
    .testi-v2-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

/* ============================================================
   VIDEO V2 — LUXURY REDESIGN 2026
   ============================================================ */

.vid-v2-section {
    background: #18121e !important;
    padding: 7rem 0 !important;
    position: relative;
    overflow: hidden;
}

.vid-v2-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 50%, rgba(139, 21, 56, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.vid-v2-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

/* ——— Video kant ——— */
.vid-v2-media {
    /* niets extra's nodig, iframe vult dit */
}

.vid-v2-frame-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.08);
}

.vid-v2-frame-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ——— Tekst kant ——— */
.vid-v2-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.vid-v2-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

.vid-v2-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #f5f0ea;
    line-height: 1.2;
    margin: 0;
}

.vid-v2-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(245, 240, 234, 0.65);
    margin: 0;
}

.vid-v2-desc em {
    color: rgba(245, 240, 234, 0.85);
    font-style: italic;
}

.vid-v2-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 0.5rem;
}

.vid-v2-btn {
    display: inline-block;
    padding: 0.85rem 1.6rem;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.vid-v2-btn--gold {
    background: var(--gold);
    color: #110a0d;
    border: 1px solid var(--gold);
}

.vid-v2-btn--gold:hover {
    background: #c4a030;
    border-color: #c4a030;
    transform: translateY(-2px);
}

.vid-v2-btn--outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.vid-v2-btn--outline:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
    .vid-v2-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .vid-v2-body {
        text-align: center;
        align-items: center;
    }

    .vid-v2-cta {
        justify-content: center;
    }
}

/* ============================================================
   JEWEL TONE AFWISSELING — Over mij (groen) · Pakketten (bordeaux) · Beschikbaarheid (groen)
   Rijke kerstkleur per sectie — goud als accent op al deze kleuren
   ============================================================ */

/* ——— OVER MIJ — diep bosgroen ——— */
.about {
    background: #071209 !important;
}
.about .about-v2-image,
.about-v2-image {
    position: static !important;
    top: auto !important;
    border-color: rgba(212, 175, 55, 0.2) !important;
}
.about-v2-label       { color: var(--gold) !important; }
.about-v2-title       { color: #f5f0ea !important; }
.about-v2-subtitle    { color: rgba(245, 240, 234, 0.55) !important; }
.about-v2-stats       { border-color: rgba(212, 175, 55, 0.15) !important; }
.about-v2-stat-number { color: var(--gold) !important; }
.about-v2-stat-label  { color: rgba(245, 240, 234, 0.35) !important; }
.about-v2-stat-divider { background: rgba(212, 175, 55, 0.15) !important; }
.about-v2-body p      { color: rgba(245, 240, 234, 0.65) !important; }
.about-v2-body p strong { color: #f5f0ea !important; }
.about-v2-body p em   { color: var(--gold) !important; }
.about-v2-btn--secondary {
    color: var(--gold) !important;
    border-color: rgba(212, 175, 55, 0.4) !important;
}
.about-v2-btn--secondary:hover { color: #0d0810 !important; }

/* ——— PAKKETTEN — diep bordeaux ——— */
.pkg-v2-section {
    background: #130609 !important;
}
.pkg-v2-label    { color: var(--gold) !important; }
.pkg-v2-title    { color: #f5f0ea !important; }
.pkg-v2-subtitle { color: rgba(245, 240, 234, 0.55) !important; }

/* Kaarten: iets lichter dan de sectie voor dieptewerking */
.pkg-v2-card {
    background: #1e0c11 !important;
    border-color: rgba(212, 175, 55, 0.15) !important;
}
.pkg-v2-card--featured {
    background: #271018 !important;
    border-color: rgba(212, 175, 55, 0.5) !important;
}
.pkg-v2-card:hover            { border-color: rgba(212, 175, 55, 0.4) !important; }
.pkg-v2-duration              { color: rgba(245, 240, 234, 0.38) !important; }
.pkg-v2-name                  { color: #f5f0ea !important; }
.pkg-v2-price                 { border-color: rgba(212, 175, 55, 0.15) !important; }
.pkg-v2-amount                { color: var(--gold) !important; }
.pkg-v2-vat                   { color: rgba(245, 240, 234, 0.38) !important; }
.pkg-v2-features li           { color: rgba(245, 240, 234, 0.7) !important; }
.pkg-v2-features li::before   { background: var(--gold) !important; }
.pkg-v2-btn--outline          { color: var(--gold) !important; border-color: rgba(212, 175, 55, 0.45) !important; }
.pkg-v2-btn--outline:hover    { background: rgba(212, 175, 55, 0.1) !important; }
.pkg-v2-custom                { color: rgba(245, 240, 234, 0.45) !important; }
.pkg-v2-custom a              { color: var(--gold) !important; }

/* ——— BESCHIKBAARHEID — diep bosgroen ——— */
.agenda2 {
    background: #071209 !important;
}
.avail-v2-label { color: var(--gold) !important; }
.agenda2 .availability-title    { color: #f5f0ea !important; }
.agenda2 .availability-subtitle { color: rgba(245, 240, 234, 0.55) !important; }
.availability-title             { color: #f5f0ea !important; }
.availability-subtitle          { color: rgba(245, 240, 234, 0.55) !important; }

/* Kaarten: iets lichter groen voor dieptewerking */
.avail-v2-card       { background: #0d1f10 !important; border-color: rgba(212, 175, 55, 0.15) !important; }
.avail-v2-card:hover { border-color: rgba(212, 175, 55, 0.45) !important; }
.avail-v2-month      { color: #f5f0ea !important; }
.avail-v2-year       { color: rgba(245, 240, 234, 0.38) !important; }
.avail-v2-desc       { color: rgba(245, 240, 234, 0.65) !important; }
.avail-v2-cta        { border-color: rgba(212, 175, 55, 0.4) !important; color: var(--gold) !important; }
.avail-v2-cta:hover  { background: rgba(212, 175, 55, 0.1) !important; }
/* ======================================================
   VROEGBOEK-AANKONDIGING — announcement bar + earlybird
   ====================================================== */

/* ——— Announcement bar bovenaan de pagina ——— */
.announce-bar {
    background: linear-gradient(90deg, #1a0808 0%, #2a0f0f 35%, #1e1000 65%, #1a0808 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.45);
    padding: 0.7rem 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    box-sizing: border-box;
}
.announce-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
}
.announce-bar p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    color: rgba(245, 240, 234, 0.88);
    line-height: 1.4;
}
.announce-bar strong {
    color: #D4AF37;
}
.announce-bar a {
    color: #D4AF37;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
    white-space: nowrap;
}
.announce-bar a:hover { color: #f0cc5a; }
.announce-icon {
    color: #D4AF37;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.announce-close {
    background: none;
    border: none;
    color: rgba(245, 240, 234, 0.45);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0 0 0 0.75rem;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s;
}
.announce-close:hover { color: #D4AF37; }

/* ——— Early-bird blok in de pakketten header ——— */
.pkg-v2-earlybird {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.4rem;
    padding: 0.6rem 1.5rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    color: rgba(245, 240, 234, 0.75);
}
.pkg-v2-earlybird strong {
    color: #D4AF37;
}
.pkg-v2-earlybird-star {
    color: #D4AF37;
    font-size: 0.75rem;
}

@media (max-width: 600px) {
    .announce-inner { gap: 0.5rem; }
    .announce-bar p { font-size: 0.8rem; }
    .pkg-v2-earlybird { font-size: 0.8rem; padding: 0.5rem 1rem; }
}

/* ======================================================
   FIXES — gallery donker, hero padding, slideshow tekst
   ====================================================== */

/* Hero: extra padding-top voor announce-bar + navbar */
.hero {
    padding-top: 144px !important;
}

/* Fotogalerij: donkere achtergrond passend bij de rest */
.slideshow-section {
    background: #0c0e14 !important;
}
.slideshow-intro,
.slideshow-description,
.slideshow-section .section-title,
.slideshow-section .section-label,
.slideshow-section p {
    color: rgba(245, 240, 234, 0.75) !important;
}
.slideshow-section .section-title {
    color: #f5f0ea !important;
}
.slides-caption {
    color: rgba(245, 240, 234, 0.4) !important;
}
.gallery-intro-text {
    color: rgba(245, 240, 234, 0.65) !important;
}
.slideshow-counter,
.slideshow-counter span {
    color: rgba(245, 240, 234, 0.55) !important;
}
.carousel-btn {
    background: rgba(212, 175, 55, 0.1) !important;
    border-color: rgba(212, 175, 55, 0.35) !important;
    color: #D4AF37 !important;
}
.carousel-btn:hover {
    background: rgba(212, 175, 55, 0.22) !important;
}
.indicator {
    background: rgba(245, 240, 234, 0.25) !important;
}
.indicator.active {
    background: #D4AF37 !important;
}

/* Responsive: announce-bar single-line op mobiel */
@media (max-width: 600px) {
    .announce-bar { padding: 0.5rem 1rem; }
    .navbar { top: 40px; }
    .navbar.announce-hidden { top: 0; }
    .hero { padding-top: 130px !important; }
}

/* ======================================================
   HERO ACHTERGROND — geforceerde override
   ====================================================== */
.hero {
    background: linear-gradient(rgba(60, 24, 16, 0.72), rgba(107, 16, 40, 0.55)),
                url('Images/Firefly-20241108230908-png.avif') center center / cover no-repeat !important;
    position: relative !important;
}
