/* ===== Event Plaza - Stylesheet ===== */

:root {
    --color-primary: #e63226;
    --color-primary-dark: #c42a20;
    --color-primary-light: rgba(230, 50, 38, 0.08);
    --color-dark: #1a1a2e;
    --color-white: #ffffff;
    --color-light: #f8f9fa;
    --color-text: #333333;
    --color-text-light: #555555;
    --color-border: #e8e8e8;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --radius: 10px;
}

/* ===== Reset ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

video {
    image-rendering: auto;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

ul {
    list-style: none;
}

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

/* ===== Typography ===== */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 50, 38, 0.3);
}

.btn-outline {
    border: 2px solid var(--color-white);
    color: var(--color-white);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.btn-small {
    padding: 0.55rem 1.3rem;
    font-size: 0.8rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 4px;
}

.btn-small:hover {
    background-color: var(--color-primary-dark);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

.header.scrolled {
    background: var(--color-white);
    padding: 0.7rem 0;
    box-shadow: 0 1px 15px rgba(0,0,0,0.06);
}



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

.logo img {
    height: 38px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo .logo-dark {
    display: none;
}

.logo .logo-white {
    display: block;
}

.header.scrolled .logo .logo-dark {
    display: block;
}

.header.scrolled .logo .logo-white {
    display: none;
}

.main-nav .nav-list {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.main-nav .nav-list > li > a {
    color: var(--color-white);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.header.scrolled .main-nav .nav-list > li > a {
    color: var(--color-dark);
}

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

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

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -1rem;
    background: var(--color-white);
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text) !important;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background: var(--color-primary-light);
    color: var(--color-primary) !important;
    padding-left: 1.8rem;
}

.dropdown-menu li a::after {
    display: none !important;
}

/* Header CTA - always visible red button */
.header-cta {
    font-size: 0.82rem;
    padding: 0.6rem 1.5rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    opacity: 1;
    pointer-events: all;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background-color: var(--color-primary-dark);
}

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.header.scrolled .mobile-toggle span {
    background: var(--color-dark);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--color-white);
    z-index: 999;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    overflow-y: auto;
}

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

.mobile-menu ul li a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    color: var(--color-dark);
    border-bottom: 1px solid var(--color-border);
    font-weight: 500;
}

.mobile-menu ul li a:hover {
    color: var(--color-primary);
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 0 2rem;
    max-width: 800px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.95;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}



/* ===== USP Section ===== */
.usp-section {
    padding: 6rem 0;
    position: relative;
    background: var(--color-white);
}

.usp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/usp-bg.jpg') center/cover no-repeat;
    opacity: 0.04;
    z-index: 0;
}

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

.usp-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.usp-image-side {
    flex: 0 0 40%;
    max-width: 40%;
}

.usp-letters {
    position: relative;
    display: block;
    width: 100%;
    cursor: pointer;
}

.usp-letters-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

.usp-letters-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.usp-letters:hover .usp-letters-overlay {
    opacity: 0;
}

.usp-content-side {
    flex: 0 0 55%;
    max-width: 55%;
}

.usp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.usp-list-item {
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--color-border);
}

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

.usp-list-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--color-dark);
}

.usp-list-item p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin: 0;
}

/* ===== Zalen Section ===== */
.zalen-section {
    position: relative;
    height: 80vh;
    min-height: 550px;
    overflow: hidden;
}

.zalen-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.zalen-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease;
}

.zalen-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.4s ease;
}

.zalen-panels {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
}

.zaal-panel {
    flex: 1;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    padding: 3rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.zaal-panel:last-child {
    border-right: none;
}

.zaal-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.4s ease;
}

.zaal-panel:hover::before,
.zaal-panel.active::before {
    background: rgba(0, 0, 0, 0);
}

.zaal-panel-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
}

.zaal-panel-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.zaal-desc {
    font-size: 0.88rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 0;
    line-height: 1.5;
}

.zaal-panel:hover .zaal-desc,
.zaal-panel.active .zaal-desc {
    opacity: 0.9;
    max-height: 60px;
    margin-top: 0.5rem;
}

.zaal-link {
    display: inline-block;
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
    margin-top: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 2px;
}

.zaal-panel:hover .zaal-link,
.zaal-panel.active .zaal-link {
    opacity: 1;
    transform: translateY(0);
}

.zaal-link:hover {
    border-bottom-color: var(--color-primary);
    color: var(--color-primary);
}

/* ===== Diensten Section ===== */
.diensten-section {
    padding: 6rem 0;
    background: var(--color-light);
}

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

.dienst-card {
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius);
    background: var(--color-white);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.dienst-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.dienst-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.dienst-icon {
    color: var(--color-primary);
    margin-bottom: 1.2rem;
}

.dienst-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.dienst-card p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* ===== Reviews Section ===== */
.reviews-section {
    padding: 6rem 0;
    background: var(--color-dark);
    overflow: hidden;
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/reviews-bg.jpg') center/cover no-repeat;
    opacity: 0.08;
    z-index: 0;
}

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

.reviews-section .section-title,
.reviews-section .section-subtitle {
    color: var(--color-white);
}

.reviews-section .section-title::after {
    background: var(--color-primary);
}

.reviews-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.review-slide {
    min-width: 100%;
    padding: 3rem;
    box-sizing: border-box;
    text-align: center;
}

.review-quote-mark {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: -1rem;
    opacity: 0.8;
}

.review-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-weight: 400;
}

.review-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.review-stars {
    color: #f5a623;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.review-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.review-name {
    font-weight: 600;
    color: var(--color-white);
    font-size: 1rem;
}

.review-source {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.review-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.reviews-dots {
    display: flex;
    gap: 0.5rem;
}

.reviews-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-dots .dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

/* ===== Partners Section ===== */
.partners-section {
    padding: 6rem 0;
    background: var(--color-white);
}

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

.partner-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--color-white);
    border: 1px solid var(--color-border);
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.partner-image {
    height: 180px;
    overflow: hidden;
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.partner-info {
    padding: 1.5rem;
}

.partner-category {
    display: inline-block;
    background: var(--color-primary-light);
    color: var(--color-primary);
    padding: 0.2rem 0.7rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.partner-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--color-dark);
}

.partner-info p {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* Catering Block */
.catering-block {
    background: var(--color-light);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--color-border);
}

.catering-block h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.catering-block > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

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

.catering-item {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.catering-item:hover {
    border-color: var(--color-primary);
}

.catering-type {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.catering-item strong {
    font-size: 0.95rem;
    color: var(--color-dark);
}

/* ===== Survey Wizard Section ===== */
.survey-section {
    padding: 6rem 0;
    position: relative;
    background: #faf7f2;
}

.survey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/offerte-bg.jpg') center/cover no-repeat;
    opacity: 0.06;
    z-index: 0;
}

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

.survey-section .section-title {
    color: var(--color-dark);
}

.survey-section .section-subtitle {
    color: var(--color-text-light);
}

.survey-wizard {
    max-width: 650px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: none;
    position: relative;
    z-index: 2;
}

.survey-progress {
    margin-bottom: 2.5rem;
}

.progress-bar {
    height: 4px;
    background: var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    width: 25%;
    background: var(--color-primary);
    border-radius: 4px;
    transition: width 0.4s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--color-border);
    color: var(--color-text-light);
    transition: all 0.3s ease;
}

.progress-step.active {
    background: var(--color-primary);
    color: var(--color-white);
}

.progress-step.completed {
    background: var(--color-primary);
    color: var(--color-white);
}

.survey-step {
    display: none;
}

.survey-step.active {
    display: block;
}

.survey-step h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.survey-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.survey-option {
    cursor: pointer;
}

.survey-option input {
    display: none;
}

.option-card {
    display: block;
    padding: 1rem 1.2rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: var(--color-text);
}

.survey-option input:checked + .option-card {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.option-card:hover {
    border-color: var(--color-primary);
}

.slider-container {
    margin: 2rem 0;
    text-align: center;
}

.survey-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--color-border);
    border-radius: 6px;
    outline: none;
    margin-bottom: 1rem;
}

.survey-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(230, 50, 38, 0.3);
}

.survey-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(230, 50, 38, 0.3);
}

.slider-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
}

.slider-value span {
    color: var(--color-primary);
}

.survey-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.survey-nav .btn:only-child {
    margin-left: auto;
}

.btn-outline-dark {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid var(--color-border);
    color: var(--color-text);
    background: transparent;
}

.btn-outline-dark:hover {
    border-color: var(--color-dark);
    color: var(--color-dark);
}

/* ===== CTA Section (Zaal pages) ===== */
.cta-section {
    padding: 5rem 0;
    background: #faf7f2;
    text-align: center;
}

.cta-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-section .btn {
    display: inline-block;
}

/* ===== Footer ===== */
.footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 2rem;
}

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

.footer-brand img {
    height: 35px;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--color-white);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-links ul li a {
    font-size: 0.88rem;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--color-primary);
}

.footer-contact p {
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-contact a {
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--color-primary);
}

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

.footer-bottom p {
    font-size: 0.82rem;
    opacity: 0.6;
}

.footer-credit {
    margin-top: 0.5rem;
}

.footer-credit a {
    color: var(--color-white);
    text-decoration: underline;
}

/* ===== Page Hero (Sub-pages) ===== */
.page-hero {
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-dark) 0%, #2d2d4e 100%);
    text-align: center;
    color: var(--color-white);
    padding-top: 80px;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* ===== Contact Page ===== */
.contact-section {
    padding: 5rem 0;
}

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

.contact-info-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--color-light);
    border-radius: 8px;
    border-left: 3px solid var(--color-primary);
}

.contact-info-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.3rem;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 1rem;
    color: var(--color-text-light);
}

.contact-info-card a:hover {
    color: var(--color-primary);
}

.contact-form {
    background: var(--color-white);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(230, 50, 38, 0.08);
}

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

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

/* ===== Zalen Overview Page ===== */
.zalen-overview {
    padding: 5rem 0;
}

.zaal-overview-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--color-border);
}

.zaal-overview-card:nth-child(even) {
    direction: rtl;
}

.zaal-overview-card:nth-child(even) > * {
    direction: ltr;
}

.zaal-overview-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.zaal-overview-video {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow);
}

.zaal-overview-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zaal-overview-video {
    cursor: pointer;
    position: relative;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zaal-overview-video:hover .video-play-overlay {
    opacity: 1;
}

.video-play-overlay svg {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

/* Video Lightbox */
.video-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-lightbox.active {
    display: flex;
}

.video-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.video-lightbox-content {
    position: relative;
    width: 85%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    z-index: 10001;
}

.video-lightbox-content video {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    object-fit: cover;
}

.video-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s;
}

.video-lightbox-close:hover {
    opacity: 0.7;
}

.zaal-overview-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.zaal-overview-info .zaal-capacity-badge {
    display: inline-block;
    background: var(--color-primary-light);
    color: var(--color-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.zaal-overview-info p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ===== Individual Zaal Page ===== */
.zaal-hero {
    position: relative;
    height: 55vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zaal-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zaal-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.55));
}

.zaal-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

.zaal-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.zaal-hero-content .capacity-badge {
    display: inline-block;
    background: var(--color-primary);
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.zaal-details {
    padding: 5rem 0;
}

.zaal-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.zaal-description h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.zaal-description p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.zaal-specs {
    background: var(--color-light);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--color-border);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.zaal-specs h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-primary);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-border);
}

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

.spec-label {
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--color-dark);
}

.spec-value {
    font-size: 0.88rem;
    color: var(--color-text-light);
    text-align: right;
    max-width: 55%;
}

/* 3D Tour Placeholder */
.tour-section {
    padding: 4rem 0;
    background: var(--color-light);
    text-align: center;
}

.tour-placeholder {
    max-width: 700px;
    margin: 2rem auto 0;
    padding: 3rem 2rem;
    background: var(--color-white);
    border-radius: var(--radius);
    border: 2px dashed rgba(230, 50, 38, 0.3);
}

.tour-placeholder p {
    color: var(--color-text-light);
    font-size: 1rem;
}

/* ===== Over Ons Page ===== */
.about-section {
    padding: 5rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
    color: var(--color-dark);
    position: relative;
    padding-bottom: 0.5rem;
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--color-primary);
}

.about-content p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* ===== Responsive ===== */

/* Tablet landscape */
@media (max-width: 1024px) {
    .usp-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .usp-image-side {
        flex: 0 0 auto;
        max-width: 400px;
        margin: 0 auto;
    }

    .usp-content-side {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .review-slide {
        padding: 2rem;
    }

    .partners-grid {
        grid-template-columns: 1fr 1fr;
    }

    .zaal-overview-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .zaal-overview-card:nth-child(even) {
        direction: ltr;
    }

    .zaal-details-grid {
        grid-template-columns: 1fr;
    }

    .zaal-specs {
        position: static;
    }

    .zalen-section {
        height: 70vh;
        min-height: 500px;
    }

    .zaal-panel-content h3 {
        font-size: 1.2rem;
    }
}

/* Tablet portrait */
@media (max-width: 768px) {
    .main-nav,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Hero mobile */
    .hero {
        height: 100vh;
        height: 100svh; /* Safari viewport fix */
        min-height: 500px;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Zalen section mobile - horizontal scroll cards */
    .zalen-section {
        height: auto;
        min-height: auto;
        padding: 3rem 0;
    }

    .zalen-video-bg {
        position: absolute;
    }

    .zalen-bg-overlay {
        background: rgba(0, 0, 0, 0.55);
    }

    .zalen-panels {
        flex-direction: column;
        height: auto;
        padding: 0 1.5rem;
        gap: 0;
    }

    .zaal-panel {
        padding: 1.8rem 1.5rem;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        align-items: center;
    }

    .zaal-panel:last-child {
        border-bottom: none;
    }

    .zaal-panel::before {
        background: rgba(0, 0, 0, 0);
    }

    .zaal-panel-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .zaal-panel-content h3 {
        font-size: 1.1rem;
        white-space: normal;
    }

    .zaal-desc {
        display: none;
    }

    .zaal-link {
        opacity: 1;
        transform: translateY(0);
        margin-top: 0;
        font-size: 0.8rem;
        border-bottom: none;
        background: var(--color-primary);
        padding: 0.4rem 0.8rem;
        border-radius: 4px;
        white-space: nowrap;
        margin-left: auto;
    }

    .zaal-link:hover {
        color: var(--color-white);
        border-bottom: none;
    }

    /* USP section mobile */
    .usp-section {
        padding: 3.5rem 0;
    }

    .usp-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .usp-image-side {
        flex: 0 0 auto;
        max-width: 280px;
        margin: 0 auto;
    }

    .usp-content-side {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .usp-list-item h3 {
        font-size: 0.9rem;
    }

    .usp-list-item p {
        font-size: 0.82rem;
    }

    /* Survey wizard mobile */
    .survey-section {
        padding: 3.5rem 0;
    }

    .survey-wizard {
        padding: 1.5rem;
    }

    .survey-options {
        grid-template-columns: 1fr;
    }

    .survey-step h3 {
        font-size: 1.2rem;
    }

    /* Diensten mobile */
    .diensten-section {
        padding: 3.5rem 0;
    }

    .diensten-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .dienst-card {
        padding: 1.5rem 1rem;
    }

    .dienst-card h3 {
        font-size: 0.9rem;
    }

    .dienst-card p {
        font-size: 0.8rem;
    }

    /* Reviews mobile */
    .reviews-section {
        padding: 3.5rem 0;
    }

    .review-slide {
        padding: 1.5rem 1rem;
    }

    .review-quote-mark {
        font-size: 3.5rem;
    }

    .review-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .review-btn {
        width: 36px;
        height: 36px;
    }

    /* Partners mobile */
    .partners-section {
        padding: 3.5rem 0;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .partner-image {
        height: 160px;
    }

    /* Catering mobile */
    .catering-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .catering-block {
        padding: 1.5rem;
    }



    /* Footer mobile */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Contact page mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    /* Page hero mobile */
    .page-hero {
        height: 30vh;
        min-height: 200px;
        padding-top: 70px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    /* Zaal detail page mobile */
    .zaal-hero {
        height: 40vh;
        min-height: 280px;
    }

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

    .zaal-details {
        padding: 3rem 0;
    }

    .zaal-description h2 {
        font-size: 1.4rem;
    }

    /* Section headers mobile */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    /* Zalen overview page mobile */
    .zaal-overview-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
        padding-bottom: 3rem;
    }

    .zaal-overview-info h3 {
        font-size: 1.4rem;
    }

    /* About page mobile */
    .about-content h2 {
        font-size: 1.4rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

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

    .hero-content p {
        font-size: 0.88rem;
    }

    .diensten-grid {
        grid-template-columns: 1fr;
    }

    .zaal-panel {
        padding: 1.5rem 1rem;
    }

    .zaal-panel-content h3 {
        font-size: 1rem;
    }



    .partner-image {
        height: 140px;
    }

    .catering-block {
        padding: 1.2rem;
    }



    .footer-brand img {
        height: 28px;
    }

    .zaal-hero {
        height: 35vh;
        min-height: 250px;
    }

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

    .page-hero {
        min-height: 180px;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .contact-info-card {
        padding: 1.2rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem 0.85rem;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    .btn-large {
        padding: 0.85rem 2rem;
        font-size: 0.88rem;
    }
}
