/*
Theme Name: Gasterij de Waldwei
Theme URI: http://wordpress.org/themes/twentythirteen
Author: De maker van deze template :)
Author URI: http://wordpress.org/
Description: Template voor Gasterij de Waldwei
*/


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

body {
    font-family: 'Playfair Display', serif;
    background-color: #0a1018;
    color: #fcf1e3;
    overflow-x: hidden;
}

p a {
  color: #E4B348;
  text-decoration: underline;
  font-weight: 600;
}



/* Header */
header {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: ellipse(100% 95% at 50% 0%);
}

.header-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}


/* Subpage header */
.header--sub {
    height: 55vh;
    min-height: 380px;
}

.header--sub .logo-centered {
	margin-top: 50px;
}

@media (max-width: 768px) {
    .header--sub {
        height: 45vh;
        min-height: 300px;
    }
}






/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: auto;
    z-index: 100;
}

/* CTA in de header */
.nav-cta {
    position: fixed;
    top: 30px;
    right: 30px;

    padding: 0.55rem 1.6rem;
    border-radius: 8px;
    background: #e4b348;              /* goud */
    border: 0px solid #c48f27;        /* rand */
    color: #3b2608;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;

    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    z-index: 3000;                     /* boven alles */
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.nav-cta:hover {
    background: #f0c155;
    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.45);
    transform: translateY(-1px);
}

/* Logo gecentreerd */
.logo-centered {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55%;
    max-width: 400px;
    z-index: 20;
    opacity: 0.95;
}

/* Hamburger – nu fixed */
.hamburger {
    position: fixed;
    top: 30px;
    left: 50px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 3000;
	filter: drop-shadow(0 4px 6px rgba(0,0,0,0.85));
}

.hamburger span {
    width: 25px;
    height: 3px;    
    background: #fcf1e3;
    transition: all 0.3s;
	filter: drop-shadow(0 4px 6px rgba(0,0,0,0.85));
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a1018;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    z-index: 2500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    color: #fcf1e3;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
}

.menu-close {
    position: absolute;
    top: 20px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 2600;
}

.menu-close span {
    width: 25px;
    height: 2px;
    background: #fcf1e3;
    position: absolute;
}

.menu-close span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-close span:nth-child(2) {
    opacity: 0;
}

.menu-close span:nth-child(3) {
    transform: rotate(-45deg);
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-menu-links li {
    margin: 0;
    padding: 0;
}


.mobile-menu-links li a {
    display: block;
    padding: 12px 0;
}


/* Hero Content */
.hero-content {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

/* Chatbot */
.chatbot-container {
    position: relative;
    width: min(700px, 100%);
    margin: 0 auto;
    z-index: 50;
}


.chatbot {
    background: rgba(252, 241, 227, 0.75);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

/* Expanded state (desktop) */
.chatbot.chatbot-expanded {
    height: 380px;
}

/* Header info */
.botName strong {
    font-size: 20px;
    color: #0a1018;
    font-weight: 600;
}

.botName div {
    font-size: 13px;
    color: #0a1018;
}

.chatbot-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Avatar altijd in verhouding */
.chatbot-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(images/avatar-sylvAI.jpg);
    background-size: 70px 70px; 
    background-position: center;
    background-repeat: no-repeat;
}

/* Berichten-container + bubbles */
.chatbot-messages {
    max-height: 180px;
    overflow-y: auto;
    padding-right: 0.5rem;
    margin-bottom: 1rem;
    flex: 1;
    min-height: 0;
}




/* subtiele scrollbar */
.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}
.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}
.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(10, 16, 24, 0.25);
    border-radius: 3px;
}

.message {
    display: flex;
    margin-bottom: 0.4rem;
}

.message-bot {
    justify-content: flex-start;
}

.message-user {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 80%;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.message-bot .message-bubble {
    background: #0a1018;
    color: #fcf1e3;
}

.message-user .message-bubble {
    background: #fcf1e3;
    color: #0a1018;
}

/* Originele eerste bot-bericht (boven input) */
.chatbot-message {
    background: #0a1018;
    color: #fcf1e3;
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Input */
.chatbot-form {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.chatbot-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 10px;
    background: #fcf1e3;
    color: #0a1018;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
}

.chatbot-input:focus {
    outline: none;
    margin-bottom: 1rem;
}

.chatbot-submit {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 10px;
    background: #0a1018;
    color: #fcf1e3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.chatbot-submit:hover {
    transform: scale(1.05);
}
.chatbot-reset {
    margin-left: auto;
    background: rgba(252, 241, 227, 0.6);
    border: 1px solid rgba(10, 16, 24, 0.25);
    border-radius: 10px;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0.75;
    transition: 
        opacity 0.15s ease,
        background 0.15s ease,
        transform 0.15s ease,
        border-color 0.15s ease;
}

.chatbot-reset svg {
    width: 18px;
    height: 18px;
    fill: #0a1018;
}

.chatbot-reset:hover {
    opacity: 1;
    background: #fcf1e3;
    border-color: rgba(10, 16, 24, 0.45);
    transform: scale(1.05);
}


/* Main Content */
main {
    padding: 4rem 0;   /* alleen boven/onder, geen zij-padding meer */
}

.section {
    max-width: 1200px;
    margin: 0 auto 6rem;
    padding: 0 1.5rem;   /* zij-padding nu per sectie */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

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

.section-icon {
    text-align: center;
    font-size: 2rem;
}

.section-icon img {
    width: 30px;
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 600;
    line-height: 1.00;
    letter-spacing: 0.06em;
    margin-bottom: 3rem;
}



/* ==============================
   Menu layout (werkt in dark & light)
   ============================== */
.menu-list{
  list-style: none;
  margin: 0.4rem 0 0 0;
  padding: 0;
}

.menu-item{
  padding: 0.85rem 0;
  border-top: 1px solid rgba(252, 241, 227, 0.10);
}

.menu-item:first-child{
  border-top: 0;
}

.menu-item__row{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.menu-item__left{
  min-width: 0; /* voorkomt overflow */
}

.menu-item__name{
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.menu-item__sub{
  margin-top: 0.35rem;
  font-size: 0.92rem;
  line-height: 1.35;
  opacity: 0.78;
}

.menu-item__price{
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  opacity: 0.95;
  padding-left: 0.5rem;
}

/* Optioneel: als bijschriften leeg zijn, kun je ze gewoon weglaten in HTML */

/* ==============================
   Light variant - jouw basis
   ============================== */
.section-faq--light{
  background: #fcf1e3;
  padding: 3.5rem 1.5rem;
  border-radius: 26px;
}

.section-faq--light .section-title{ color: #0e161c; }
.section-faq--light .section-icon img{ opacity: 0.9; }

.section-faq--light .faq-item{
  background: rgba(14, 22, 28, 0.04);
  border: 1px solid rgba(14, 22, 28, 0.12);
}

.section-faq--light .faq-trigger{ color: #0e161c; }

.section-faq--light .faq-trigger:focus-visible{
  outline: 2px solid rgba(14, 22, 28, 0.35);
}

.section-faq--light .faq-icon::before,
.section-faq--light .faq-icon::after{
  background: rgba(14, 22, 28, 0.9);
}

.section-faq--light .faq-answer{
  color: #0e161c;
  opacity: 0.92;
}

/* Menu borders in light: donkerder lijntjes */
.section-faq--light .menu-item{
  border-top: 1px solid rgba(14, 22, 28, 0.10);
}

@media (hover: hover){
  .section-faq--light .faq-item:hover{
    background: rgba(14, 22, 28, 0.06);
  }
}



/* ===== SPECIALE STYLING VOOR ACTIES & NIEUWS ===== */
#nieuws {
    background: #fcf1e3;
    color: #0a1018;
    padding-top: 4rem;
    padding-bottom: 4rem;
    border-radius: 0; /* full-width strook, geen afgeronde hoeken */
}

#nieuws .section-title,
#nieuws .section-icon {
    color: #0a1018;
}

#nieuws .more-link a {
    color: #0a1018;
    border-bottom-color: #0a1018;
}

/* Restaurant Cards */
.restaurant-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.restaurant-card {
    background: #fcf1e3;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s;
}

.restaurant-card:hover {
    transform: translateY(-5px);
}

.restaurant-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    clip-path: ellipse(100% 95% at 50% 0%);
}

.restaurant-content {
    padding: 2rem;
    color: #0a1018;
}

.restaurant-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.restaurant-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #0a1018;
    color: #fcf1e3;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Intro / centered text block */
.section-intro .section-text{
  max-width: 760px;
  margin: -1.2rem auto 0;  
  text-align: center;
  opacity: 0.85;
  line-height: 1.9;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

@media (max-width: 768px){
  .section-intro .section-text{
    max-width: 34rem;
    margin-top: -0.8rem;
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* Actieperiode */
.actie-periode--soft {
  display: flex;
  align-items: center;
  gap: 0.75rem;

  width: fit-content;
  margin: 1.25rem auto 3rem;
  padding: 0.5rem 1.25rem;

  border-radius: 999px;

  background: linear-gradient(
    to right,
    rgba(255,255,255,0.14),
    rgba(255,255,255,0.04)
  );

  backdrop-filter: blur(2px);

  font-size: 0.9rem;
  line-height: 1;
  color: rgba(255,255,255,0.85);
}

.actie-periode--soft strong {
  font-weight: 600;
  color: #ffffff;
}

.actie-periode--soft .actie-separator {
  opacity: 0.4;
}





/* Four image grid */
.section-image-grid {
    margin-top: -2rem; 
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}

/* Images */
.image-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 18px;
    display: block;

    transition: transform 0.5s ease, filter 0.5s ease;
}

/* Hover (desktop only) */
@media (hover: hover) {
    .image-grid img:hover {
        transform: scale(1.04);
        filter: brightness(0.92);
    }
}

/* Tablet + mobile: 2 x 2 grid */
@media (max-width: 900px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem; /* iets compacter */
    }
}

/* Kleine telefoons: iets subtielere rounding */
@media (max-width: 520px) {
    .image-grid img {
        border-radius: 14px;
    }
}



/* ==============================
   Split section (image + text)
   Base styles (beide varianten)
   ============================== */
.section-split {
    max-width: none;
    padding: 3rem 1.5rem;
    margin-top: -2rem; 
    margin-bottom: 4rem;
    padding-left: 0;
    padding-right: 0;
}

/* Inner grid */
.split-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ==============================
   Light variant (beige achtergrond)
   ============================== */
.section-split--light {
    background: #fcf1e3;
}

.section-split--light .split-content {
    color: #0e161c;
}

.section-split--light .split-title {
    color: #0e161c;
}

.section-split--light .split-title::after {
    background: rgba(14, 22, 28, 0.25);
}

.section-split--light .split-content p {
    color: #0e161c;
    opacity: 0.9;
}

/* ==============================
   Dark variant (standaard achtergrond)
   ============================== */
.section-split--dark {
    background: transparent;
}

.section-split--dark .split-content {
    color: #fcf1e3;
}

.section-split--dark .split-title {
    color: #fcf1e3;
}

.section-split--dark .split-title::after {
    background: rgba(252, 241, 227, 0.25);
}

.section-split--dark .split-content p {
    color: #fcf1e3;
    opacity: 0.85;
}

/* ==============================
   Afbeelding (beide varianten)
   ============================== */
.split-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

/* ==============================
   Tekst (beide varianten)
   ============================== */
.split-content {
    padding-top: 0.5rem; /* optische verticale correctie */
}

.split-title {
    font-size: 1.9rem;
    line-height: 1.15;
    margin-bottom: 1.6rem;
    letter-spacing: 0.04em;
    position: relative;
}

/* Subtiele accentlijn onder titel */
.split-title::after {
    content: "";
    display: block;
    width: 46px;
    height: 2px;
    margin-top: 0.9rem;
}

.split-content p {
    font-size: 1.02rem;
    line-height: 2;
    max-width: 520px;
}

/* ==============================
   Image left / right switch
   ============================== */
.section-image-right .split-image {
    order: 2;
}

.section-image-right .split-content {
    order: 1;
}

/* ==============================
   Responsive
   ============================== */
@media (max-width: 900px) {
    .split-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .split-content p {
        max-width: none;
    }
    .split-title::after {
        margin-left: 0;
    }
}


/* ==============================
   Lists styling met vinkje bullet
   ============================== */

/* Light variant lists */
.section-split--light .split-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.section-split--light .split-content ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.section-split--light .split-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 1.1rem;
    height: 1.1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e161c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
}

/* Dark variant lists */
.section-split--dark .split-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.section-split--dark .split-content ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.section-split--dark .split-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 1.1rem;
    height: 1.1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fcf1e3' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
}

/* USP / kenmerken section */
.section-usps {
    margin-top: -1rem;
}

/* Grid */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Item */
.usp-item {
    text-align: center;
    color: #fcf1e3;
}

.usp-item img {
    width: 34px;
    margin-bottom: 1.2rem;
    opacity: 0.95;
}

.usp-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.usp-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
    max-width: 260px;
    margin: 0 auto;
}


.usp-item {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.usp-item:hover {
    transform: translateY(-4px);
    opacity: 0.95;
}


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

/* ========================================
   EDITORIAL TEXT SECTION
======================================== */

/* Editorial text section */
.section-editorial {
    position: relative;
    margin-top: 2rem;
}

/* Subtiele "glow" achter het blok (heel licht) */
.section-editorial::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 5rem;
    transform: translateX(-50%);
    width: min(900px, 92%);
    height: 220px;
    background: radial-gradient(
        ellipse at center,
        rgba(252, 241, 227, 0.08),
        rgba(252, 241, 227, 0) 65%
    );
    pointer-events: none;
}

/* Titel */
.section-editorial .section-title {
    margin-bottom: 1.2rem;
}

/* Divider onder de titel */
.section-editorial .section-title::after {
    content: "";
    display: block;
    width: 56px;
    height: 2px;
    margin: 1.1rem auto 0;
    background: rgba(252, 241, 227, 0.25);
}

/* Wrapper zodat tekst mooi compact blijft */
.editorial-wrap {
    max-width: 920px;
    margin: 0 auto;
}

/* Tekstcontainer */
.editorial-text {
    margin-top: 2rem;
    text-align: left;
    color: #fcf1e3;
}

/* Gecentraliseerde tekst voor single en narrow layouts */
.editorial-text.layout-single,
.editorial-text.layout-narrow {
    text-align: center;
}

/* Lead paragraph = eerste alinea */
.editorial-text > p:first-of-type {
    font-size: 1.05rem;
    line-height: 2;
    opacity: 0.95;
}

/* Algemene paragraph styling */
.editorial-text p {
    font-size: 1.02rem;
    line-height: 2.05;
    opacity: 0.85;
    margin: 0 0 1.6rem;
}

.editorial-text p:last-child {
    margin-bottom: 0;
    opacity: 0.9;
}

/* Desktop layouts */
@media (min-width: 900px) {
    /* Layout: Twee kolommen (krant stijl) */
    .editorial-text.layout-columns {
        column-count: 2;
        column-gap: 4rem;
        column-fill: balance;
        hyphens: auto;
        -webkit-hyphens: auto;
        text-align: left; /* Override center */
    }
    
    .editorial-text.layout-columns p {
        break-inside: avoid;
    }
    
    .editorial-text.layout-columns > p:first-of-type {
        column-span: all;
        margin-bottom: 3.2rem;
    }
    
    /* Layout: Compact gecentreerd */
    .editorial-text.layout-narrow {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Layout: Single (volle breedte) - default, geen extra styling nodig */
}

/* Mobiel: 1 kolom, iets strakker */
@media (max-width: 768px) {
    .section-editorial .section-title::after {
        margin-top: 0.2rem;
    }
    
    .editorial-text {
        margin-top: 1.6rem;
        text-align: center; /* Mobiel altijd center */
    }
    
    .editorial-text p {
        line-height: 1.9;
    }
}


/* ===== News Cards (strakker + gelijke hoogte) ===== */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: stretch; /* laat items mee-stretchen naar hoogste in de rij */
}

/* 2 kolommen tablet, 3 kolommen desktop (zoals je screenshot) */
@media (min-width: 700px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    --news-img-h: 180px; /* hoogte van de afbeelding bovenin */
    background: #0a1018;
    border-radius: 20px;
    overflow: hidden;
    position: relative;

    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

/* Spacer zodat de content netjes onder de absolute image start */
.news-card::before {
    content: "";
    display: block;
    height: var(--news-img-h);
    flex-shrink: 0;
}

.news-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--news-img-h);
    object-fit: cover;
    clip-path: ellipse(100% 95% at 50% 0%);
    z-index: 1;
}

.news-content {
    position: relative;
    z-index: 2;

    padding: 2rem;
    background: #0a1018;
    color: #fcf1e3;

    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.6rem;
}

/* Badge altijd bovenop */
.news-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;

    padding: 0.3rem 0.8rem;
    background: #fcf1e3;
    color: #0a1018;
    border-radius: 6px;
    font-size: 0.8rem;
}

/* Titel + tekst: strakker + clamp zodat layout consistent blijft */
.news-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    color: #fcf1e3;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-description {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
    color: #fcf1e3;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}


/* ==============================
   Timeline section (dark / no background)
   ============================== */

.section-timeline {
    margin-top: 3rem;
}

/* Intro */
.timeline-intro {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #fcf1e3;
    opacity: 0.8;
    line-height: 1.9;
    font-size: 1.02rem;
}

/* Grid */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* Item */
.timeline-item {
    color: #fcf1e3;
}

/* Image */
.timeline-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    margin-bottom: 1.2rem;
}

/* Content */
.timeline-content {
    padding: 0 0.2rem;
}

/* Year */
.timeline-year {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 0.4rem;
}

/* Title */
.timeline-title {
    font-size: 1.1rem;
    line-height: 1.3;
    margin: 0 0 0.6rem;
    letter-spacing: 0.03em;
}

/* Text */
.timeline-text {
    margin: 0;
    line-height: 1.8;
    font-size: 0.95rem;
    opacity: 0.75;
}

/* Hover (heel subtiel) */
@media (hover: hover) {
    .timeline-item img {
        transition: transform 0.35s ease, filter 0.35s ease;
    }
    .timeline-item:hover img {
        transform: scale(1.03);
        filter: brightness(0.92);
    }
}

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


/* ==============================
   Newsletter section
   ============================== */

.section-newsletter {
    position: relative;
    margin-top: 4rem;
}

/* Subtiele glow voor focus */
.section-newsletter::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 4rem;
    transform: translateX(-50%);
    width: min(900px, 92%);
    height: 220px;
    background: radial-gradient(
        ellipse at center,
        rgba(252, 241, 227, 0.10),
        rgba(252, 241, 227, 0) 70%
    );
    pointer-events: none;
}

/* Inner */
.newsletter-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

/* Intro text */
.newsletter-intro {
    max-width: 520px;
    margin: -1.2rem auto 2.4rem;
    line-height: 1.9;
    opacity: 0.85;
    color: #fcf1e3;
}

/* Form */
.newsletter-form {
    display: grid;
    grid-template-columns: 1fr 1.6fr auto;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 1.2rem;
}

/* Inputs */
.newsletter-form input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(252, 241, 227, 0.18);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    color: #fcf1e3;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(252, 241, 227, 0.55);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(252, 241, 227, 0.45);
    background: rgba(255, 255, 255, 0.08);
}

/* Button */
.newsletter-form button {
    background: #fcf1e3;
    color: #0e161c;
    border: none;
    border-radius: 12px;
    padding: 0.95rem 1.4rem;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.newsletter-form button:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

/* Note */
.newsletter-note {
    font-size: 0.85rem;
    opacity: 0.65;
    max-width: 420px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter-form {
        grid-template-columns: 1fr;
    }

    .newsletter-form button {
        width: 100%;
    }
}


/* ==============================
   Newsletter component (default = dark)
   ============================== */

.section-newsletter {
  position: relative;
  margin-top: 4rem;
}



/* Light variant: titel zichtbaar maken */
.section-newsletter--light .section-title {
    color: #0e161c;
}


/* Subtiele glow voor focus (dark) */
.section-newsletter::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 4rem;
  transform: translateX(-50%);
  width: min(900px, 92%);
  height: 220px;
  background: radial-gradient(
    ellipse at center,
    rgba(252, 241, 227, 0.10),
    rgba(252, 241, 227, 0) 70%
  );
  pointer-events: none;
}

.newsletter-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.newsletter-intro {
  max-width: 520px;
  margin: -1.2rem auto 2.4rem;
  line-height: 1.9;
  opacity: 0.85;
  color: #fcf1e3;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 1.6fr auto;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(252, 241, 227, 0.18);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: #fcf1e3;
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: rgba(252, 241, 227, 0.55);
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(252, 241, 227, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
  background: #fcf1e3;
  color: #0e161c;
  border: none;
  border-radius: 12px;
  padding: 0.95rem 1.4rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.newsletter-form button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.newsletter-note {
  font-size: 0.85rem;
  opacity: 0.65;
  max-width: 420px;
  margin: 0 auto;
  color: #fcf1e3;
}

/* Responsive */
@media (max-width: 768px) {
  .newsletter-form {
    grid-template-columns: 1fr;
  }
  .newsletter-form button {
    width: 100%;
  }
}

/* ==============================
   Light variant (add class: section-newsletter--light)
   ============================== */

.section-newsletter--light {
  background: #fcf1e3;
  padding: 3.5rem 1.5rem;
  border-radius: 26px;
  margin-top: 4rem;
}

.section-newsletter--light::before {
  /* glow aanpassen voor light */
  top: 50%;
  transform: translate(-50%, -50%);
  height: 260px;
  background: radial-gradient(
    ellipse at center,
    rgba(14, 22, 28, 0.10),
    rgba(14, 22, 28, 0) 70%
  );
}

.section-newsletter--light .newsletter-intro,
.section-newsletter--light .newsletter-note {
  color: #0e161c;
  opacity: 0.85;
}

.section-newsletter--light .newsletter-form input {
  background: rgba(14, 22, 28, 0.04);
  border: 1px solid rgba(14, 22, 28, 0.14);
  color: #0e161c;
}

.section-newsletter--light .newsletter-form input::placeholder {
  color: rgba(14, 22, 28, 0.55);
}

.section-newsletter--light .newsletter-form input:focus {
  border-color: rgba(14, 22, 28, 0.35);
  background: rgba(14, 22, 28, 0.06);
}

.section-newsletter--light .newsletter-form button {
  background: #0e161c;
  color: #fcf1e3;
}


/* ==============================
   CTA Section
   ============================== */

.section-cta {
    margin-top: 5rem;
    position: relative;
}

/* Zachte focus-glow */
.section-cta::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 5rem;
    transform: translateX(-50%);
    width: min(900px, 92%);
    height: 240px;
    background: radial-gradient(
        ellipse at center,
        rgba(252, 241, 227, 0.12),
        rgba(252, 241, 227, 0) 70%
    );
    pointer-events: none;
}

.cta-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

/* Text */
.cta-text {
    max-width: 520px;
    margin: -1.2rem auto 2.4rem;
    line-height: 1.9;
    opacity: 0.85;
    color: #fcf1e3;
}

/* Actions */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.4rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    border-radius: 8px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-primary {
    background: #fcf1e3;
    color: #0e161c;
}

.btn-link {
    color: #fcf1e3;
    opacity: 0.85;
}

.btn:hover {
    transform: translateY(-1px);
    opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }
}


/* ==============================
   FAQ Accordion (dark)
   ============================== */

.section-faq {
    margin-top: 4rem;
}

.faq-accordion {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 0.9rem;
}

/* Item container */
.faq-item {
    border: 1px solid rgba(252, 241, 227, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

/* Trigger button */
.faq-trigger {
    width: 100%;
    text-align: left;
    padding: 1.05rem 1.1rem;
    background: transparent;
    border: 0;
    color: #fcf1e3;
    font-size: 1.02rem;
    line-height: 1.35;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
}

/* Focus (toetsenbord) */
.faq-trigger:focus-visible {
    outline: 2px solid rgba(252, 241, 227, 0.35);
    outline-offset: 3px;
    border-radius: 14px;
}

/* Plus/min icon */
.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex: 0 0 20px;
    opacity: 0.9;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    background: rgba(252, 241, 227, 0.9);
    transform: translate(-50%, -50%);
    border-radius: 2px;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.2s ease;
}

/* Panel (content) */
.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

/* Answer */
.faq-answer {
    padding: 0 1.1rem 1.15rem;
    color: #fcf1e3;
    opacity: 0.82;
    line-height: 1.9;
    font-size: 0.98rem;
}

/* Open state */
.faq-item.is-open .faq-panel {
    /* max-height wordt in JS gezet voor smooth animatie */
}

.faq-item.is-open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

/* Mobile */
@media (max-width: 768px) {
    .faq-trigger {
        padding: 1rem 1rem;
        font-size: 1rem;
    }
}

/* ==============================
   FAQ Accordion – light variant
   ============================== */

.section-faq--light {
    background: #fcf1e3;
    padding: 3.5rem 1.5rem;
    border-radius: 26px;
}

/* Titel + icon */
.section-faq--light .section-title {
    color: #0e161c;
}

.section-faq--light .section-icon img {
    opacity: 0.9;
}

/* Accordion container */
.section-faq--light .faq-accordion {
    max-width: 820px;
}

/* Item */
.section-faq--light .faq-item {
    background: rgba(14, 22, 28, 0.04);
    border: 1px solid rgba(14, 22, 28, 0.12);
}

/* Trigger */
.section-faq--light .faq-trigger {
    color: #0e161c;
}

/* Focus state */
.section-faq--light .faq-trigger:focus-visible {
    outline: 2px solid rgba(14, 22, 28, 0.35);
}

/* Plus/min icon */
.section-faq--light .faq-icon::before,
.section-faq--light .faq-icon::after {
    background: rgba(14, 22, 28, 0.9);
}

/* Answer text */
.section-faq--light .faq-answer {
    color: #0e161c;
    opacity: 0.85;
}

/* Hover (desktop only, heel subtiel) */
@media (hover: hover) {
    .section-faq--light .faq-item:hover {
        background: rgba(14, 22, 28, 0.06);
    }
}


/* ==============================
   Practical info section
   ============================== */

.section-practical {
    margin-top: 4rem;
}

/* Grid */
.practical-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.6rem;
    margin-top: -1rem;
}

/* Item (donker) */
.practical-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(252, 241, 227, 0.14);
    border-radius: 18px;
    padding: 1.4rem 1.3rem 1.5rem;
    text-align: center;
    flex: 0 1 calc(33.333% - 1.1rem); /* max 3 kolommen */
    min-width: 280px; /* minimum breedte */
}

/* Icon */
.practical-item-icon img {
    width: 28px;
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* Title */
.practical-title {
    color: #fcf1e3;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    margin: 0 0 0.7rem;
    font-weight: 600;
}

/* Text */
.practical-text {
    color: #fcf1e3;
    opacity: 0.82;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

/* Link */
.practical-link {
    color: #fcf1e3;
    opacity: 0.9;
    text-decoration: none;
    border-bottom: 1px solid rgba(252, 241, 227, 0.3);
    padding-bottom: 2px;
}

.practical-link:hover {
    opacity: 1;
    border-bottom-color: rgba(252, 241, 227, 0.55);
}

/* Actions */
.practical-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.practical-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.4rem;
    border-radius: 8px;
    text-decoration: none;
    background: #fcf1e3;
    color: #0e161c;
    transition: transform 0.2s ease, opacity 0.2s ease;
    font-size: 0.95rem;
}

.practical-btn:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.practical-btn--ghost {
    background: transparent;
    color: #fcf1e3;
    border: 1px solid rgba(252, 241, 227, 0.22);
}

.practical-btn--ghost:hover {
    opacity: 1;
}

/* Hover (desktop only) */
@media (hover: hover) {
    .practical-item {
        transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }
    .practical-item:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.055);
        box-shadow: 0 18px 34px rgba(0,0,0,0.20);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .practical-grid {
        grid-template-columns: 1fr;
    }

    .practical-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .practical-btn {
        width: 100%;
    }
}

/* ==============================
   Light variant
   ============================== */

.section-practical--light {
    background: #fcf1e3;
    padding: 3.5rem 1.5rem;
    border-radius: 26px;
}

.section-practical--light .practical-item {
    background: rgba(14, 22, 28, 0.04);
    border: 1px solid rgba(14, 22, 28, 0.12);
}

.section-practical--light .practical-title,
.section-practical--light .practical-text,
.section-practical--light .practical-link {
    color: #0e161c;
}

.section-practical--light .practical-text {
    opacity: 0.85;
}

.section-practical--light .practical-link {
    border-bottom-color: rgba(14, 22, 28, 0.25);
}

.section-practical--light .practical-link:hover {
    border-bottom-color: rgba(14, 22, 28, 0.5);
}

.section-practical--light .practical-btn {
    background: #0e161c;
    color: #fcf1e3;
}

.section-practical--light .practical-btn--ghost {
    background: transparent;
    color: #0e161c;
    border: 1px solid rgba(14, 22, 28, 0.18);
}


/* Quote section */
.section-quote {
    position: relative;
    margin: 6rem auto;
}

/* Zachte glow achter quote */
.section-quote::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(900px, 92%);
    height: 260px;
    background: radial-gradient(ellipse at center,
        rgba(252, 241, 227, 0.10),
        rgba(252, 241, 227, 0) 70%);
    pointer-events: none;
}

/* Inner */
.quote-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

/* Icon */
.quote-icon img {
    width: 30px;
    margin-bottom: 1.4rem;
    opacity: 0.9;
}

/* Quote text */
.quote-text {
    font-size: 1.35rem;
    line-height: 1.7;
    font-style: italic;
    color: #fcf1e3;
    margin: 0 0 2rem;
}

/* Author */


.quote-author {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.75;
    letter-spacing: 0.04em;
}



.quote-name {
    display: inline-block;
    margin-top: 0.2rem;
}

/* Mobile */
@media (max-width: 768px) {
    .quote-text {
        font-size: 1.15rem;
        line-height: 1.65;
    }
}


/* Button altijd naar onderen binnen de card */
.news-content .btn {
    margin-top: 15px;
    align-self: flex-start;
}

.btn-light {
    background: #fcf1e3;
    color: #0a1018;
}

.more-link {
    text-align: center;
    margin-top: 2rem;
}

.more-link a {
    color: #fcf1e3;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 2px solid #fcf1e3;
    padding-bottom: 0.3rem;
    transition: opacity 0.3s;
}

.more-link a:hover {
    opacity: 0.7;
}


/* ==============================
   Highlight / Callout
   ============================== */

.section-highlight {
    margin-top: 3.5rem;
}

/* Container */
.highlight-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.4rem 1.6rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.4rem;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(252, 241, 227, 0.16);
    border-radius: 18px;
}

/* Icon */
.highlight-icon img {
    width: 26px;
    opacity: 0.9;
}

/* Content */
.highlight-title {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fcf1e3;
}

.highlight-text {
    margin: 0;
    color: #fcf1e3;
    opacity: 0.85;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Action */
.highlight-link {
    color: #fcf1e3;
    text-decoration: none;
    border-bottom: 1px solid rgba(252, 241, 227, 0.35);
    padding-bottom: 2px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.highlight-link:hover {
    border-bottom-color: rgba(252, 241, 227, 0.6);
}

/* Hover (desktop) */
@media (hover: hover) {
    .highlight-inner {
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .highlight-inner:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(0,0,0,0.22);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .highlight-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .highlight-action {
        margin-top: 0.5rem;
    }
}

/* ==============================
   Light variant
   ============================== */

.section-highlight--light .highlight-inner {
    background: rgba(14, 22, 28, 0.05);
    border: 1px solid rgba(14, 22, 28, 0.14);
}

.section-highlight--light .highlight-title,
.section-highlight--light .highlight-text,
.section-highlight--light .highlight-link {
    color: #0e161c;
}

.section-highlight--light .highlight-text {
    opacity: 0.85;
}

.section-highlight--light .highlight-link {
    border-bottom-color: rgba(14, 22, 28, 0.35);
}

.section-highlight--light .highlight-link:hover {
    border-bottom-color: rgba(14, 22, 28, 0.6);
}



/* ==============================
   History Section (rebuild)
   ============================== */

.section-history {
  background: #0a1018;
  color: #fcf1e3;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* Subtitle */
.section-history .history-subtitle {
  text-align: center;
  font-size: 1.05rem;
  opacity: 0.8;
  margin: -1.8rem auto 2.6rem;
  max-width: 720px;
  line-height: 1.8;
}

/* Grid */
.section-history .history-grid {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 180px); /* was impliciet veel hoger */
  gap: 0.9rem;
}


/* Cards */
.section-history .history-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(252, 241, 227, 0.10);
  box-shadow: 0 18px 34px rgba(0,0,0,0.18);
  transform: translateZ(0);
}

/* Main card spans rows */
.section-history .history-card--main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

/* Images */
.section-history .history-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

/* Hover (desktop only) */
@media (hover: hover) {
  .section-history .history-card:hover .history-img {
    transform: scale(1.03);
    filter: brightness(0.92);
  }

  .section-history .history-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .section-history .history-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px rgba(0,0,0,0.22);
  }
}

/* CTA link */
.section-history .history-cta {
  text-align: center;
  margin-top: 0.5rem;
}

.section-history .history-link {
  color: #fcf1e3;
  text-decoration: none;
  font-size: 1.05rem;
  opacity: 0.9;
  border-bottom: 2px solid rgba(252, 241, 227, 0.55);
  padding-bottom: 0.25rem;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.section-history .history-link:hover {
  opacity: 1;
  border-bottom-color: rgba(252, 241, 227, 0.85);
}

/* Responsive */
@media (max-width: 900px) {
  .section-history .history-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .section-history .history-card--main {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .section-history .history-card {
    aspect-ratio: 4 / 3;
  }
}

/* Small phones */
@media (max-width: 520px) {
  .section-history .history-card,
  .section-history .history-card--main {
    border-radius: 14px;
  }

  .section-history .history-subtitle {
    margin-bottom: 2rem;
  }
}


/* Responsive: op mobiel gewoon onder elkaar */
@media (max-width: 768px) {
    .history-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .history-image:nth-child(1),
    .history-image:nth-child(2),
    .history-image:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: auto;
        height: 300px;
    }
}


/* =========================
   SylvAI Sticky Chat (CSS)
   ========================= */

:root{
  --sylvai-dark:#0e161c;
  --sylvai-cream:#fcf1e3;
  --sylvai-cream-bg: rgba(252,241,227,0.98);
  --sylvai-border: rgba(252,241,227,0.22);
  --sylvai-shadow: 0 24px 48px rgba(0,0,0,0.45);
}

/* Launcher */
.sylvai-launcher{
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--sylvai-dark);
  color: var(--sylvai-cream);
  border: 1px solid var(--sylvai-border);
  box-shadow: 0 16px 32px rgba(0,0,0,0.35);
  z-index: 9998;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}
.sylvai-launcher:hover{ transform: translateY(-2px); }
.sylvai-launcher-icon{ font-size: 20px; line-height: 1; }

/* Backdrop */
.sylvai-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  z-index: 9997;
  transition: opacity .25s ease;
}
.sylvai-backdrop.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* Panel (mobile bottom sheet) */
.sylvai-panel{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;

  height: min(78vh, 620px);
  background: var(--sylvai-cream-bg);
  border-radius: 22px;
  box-shadow: var(--sylvai-shadow);
  z-index: 9999;

  display: flex;
  flex-direction: column;
  overflow: hidden;                 /* belangrijk */
  padding-bottom: env(safe-area-inset-bottom);

  opacity: 0;
  transform: translateY(18px) scale(.98);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.sylvai-panel.is-open{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Desktop floating widget */
@media (min-width: 900px){
  .sylvai-panel{
    left: auto;
    right: 16px;
    bottom: 16px;
    width: 390px;
    height: 560px;
  }
}

/* Header */
.sylvai-header{
  flex: 0 0 auto;
  background: var(--sylvai-dark);
  color: var(--sylvai-cream);
  border-radius: 22px 22px 0 0;
  padding: 12px 14px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.sylvai-header-left{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}
.sylvai-avatar{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(252,241,227,0.15);
  border: 1px solid rgba(252,241,227,0.25);
  flex: 0 0 36px;

  /* Optioneel:
     background-image: url('/temp/waldwei/images/sylvai-avatar.png');
     background-size: cover;
     background-position: center;
  */
}
.sylvai-header-text{ min-width: 0; }
.sylvai-title{
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.1;
}
.sylvai-subtitle{
  font-size: .85rem;
  opacity: .75;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}
.sylvai-close{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(252,241,227,0.20);
  background: rgba(252,241,227,0.08);
  color: var(--sylvai-cream);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

/* Messages area */
.sylvai-messages{
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 14px;
}

/* Bubbles */
.sylvai-bubble{
  max-width: 86%;
  padding: 11px 12px;
  border-radius: 16px;
  margin: 0 0 10px;
  line-height: 1.55;
  font-size: 0.98rem;
}
.sylvai-bubble--bot{
  background: rgba(14,22,28,0.08);
  color: rgba(14,22,28,0.92);
  border: 1px solid rgba(14,22,28,0.10);
  border-top-left-radius: 10px;
}
.sylvai-bubble--user{
  margin-left: auto;
  background: var(--sylvai-dark);
  color: var(--sylvai-cream);
  border: 1px solid rgba(14,22,28,0.08);
  border-top-right-radius: 10px;
}

/* Input bar pinned to bottom */
.sylvai-inputbar{
  flex: 0 0 auto;
  position: sticky;
  bottom: 0;

  padding: 12px;
  background: var(--sylvai-cream-bg);
  border-top: 1px solid rgba(14,22,28,0.10);
  display:grid;
  grid-template-columns: 1fr 46px;
  gap: 10px;
}
.sylvai-input{
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(14,22,28,0.14);
  background: rgba(14,22,28,0.04);
  padding: 0 14px;
  font-size: 1rem;
  outline: none;
  pointer-events: auto;
}
.sylvai-input:focus{
  border-color: rgba(14,22,28,0.30);
  background: rgba(14,22,28,0.06);
}
.sylvai-send{
  height: 46px;
  width: 46px;
  border-radius: 14px;
  border: none;
  background: var(--sylvai-dark);
  color: var(--sylvai-cream);
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}
.sylvai-send:hover{
  transform: translateY(-1px);
  opacity: .95;
}

/* Body scroll lock while open */
body.sylvai-lock{
  overflow: hidden;
}

/* Footer */
.site-footer {
  background: #0e161c;
  color: #fcf1e3;
  padding: 5.5rem 2rem 4.5rem;
  border-top: 1px solid rgba(252, 241, 227, 0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.25rem;
  align-items: center;
}

/* Desktop: 3 columns like your design */
@media (min-width: 900px) {
  .footer-inner {
    grid-template-columns: 1.1fr 1fr 1.1fr;
    gap: 2.5rem;
  }

  .footer-review { justify-self: start; }
  .footer-info { justify-self: center; }
  .footer-social { justify-self: end; }
}

/* Left column (review) */
.footer-review {
  text-align: left;
}

.footer-stars {
  font-size: 1.1rem;
  letter-spacing: 0.18rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.footer-stars span {
  color: #fcf1e3;
  opacity: 0.95;
}

.footer-stars .star-dim {
  opacity: 0.35;
}

.footer-review-text {
  margin: 0 0 1.1rem;
  opacity: 0.85;
  line-height: 1.55;
  font-size: 0.95rem;
  max-width: 200px;
}

.footer-review-name {
  margin: 0;
  opacity: 0.9;
  font-size: 0.98rem;
}

/* Middle column (icon + contact) */
.footer-info {
  text-align: center;
}

.footer-mark {
  width: 34px;
  height: auto;
  display: block;
  margin: 0 auto 1.3rem;
  opacity: 0.9;
}

.footer-info-block {
  font-size: 1rem;
  line-height: 1.9;
}

.footer-link {
  color: #fcf1e3;
  text-decoration: none;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.footer-link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-address {
  margin-top: 0.9rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* Right column (social) */
.footer-social {
  display: flex;
  justify-content: flex-start;
}

@media (min-width: 900px) {
  .footer-social {
    justify-content: flex-end;
  }
}

.social-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.social-btn {
  width: 44px;
  height: 44px;
  background: #fcf1e3;
  color: #0e161c;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.18s ease, opacity 0.18s ease;
  opacity: 0.95;
}

.social-btn:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.social-btn svg {
  display: block;
}


/* MOBIEL TUNING */
@media (max-width: 768px) {

    .header-content {
        padding: 1.25rem 1rem 2rem;
    }

    .logo-centered {
        top: 32%;
        width: 80%;
        max-width: 320px;
    }

    .nav-cta {
        top: 25px;
        right: 16px;
        padding: 0.45rem 1.2rem;
        font-size: 0.8rem;
    }

    .hamburger {
        top: 25px;
        left: 30px;
    }

    .chatbot-container {
        width: 100%;
        padding: 0 0.75rem 1.5rem;
    }

    .chatbot {
        width: 100%;
        border-radius: 18px;
        height: auto;
        max-height: none;
        display: flex;
        flex-direction: column;
    }

    .chatbot.chatbot-expanded {
        height: auto;
    }

    .chatbot-messages {
        max-height: 250px;
        flex: 0 1 auto;
        min-height: 100px;
        overflow-y: auto;
    }

    .chatbot-form {
        flex-shrink: 0;
    }

    .chatbot-avatar {
        width: 56px;
        height: 56px;
    }
	`
	
}

/* DESKTOP / TABLET EXTRA LAYOUT */
@media (min-width: 768px) {

    .hero-title {
        font-size: 4rem;
    }

    .restaurant-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-card:first-child {
        grid-column: span 2;
    }

    .history-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .history-grid img:last-child {
        grid-column: span 2;
    }on

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
	
	.news-image {
		height: 45%;
	}
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }

    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-card:first-child {
        grid-column: span 1;
    }
	
	
}


/* Full-width achtergrondstrook achter Acties & Nieuws */
#nieuws {
    position: relative;  
    z-index: 1;
}

#nieuws::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);  /* centreer de strook */
    width: 100vw;                 /* volledige schermbreedte */
    height: 100%;                 /* hele hoogte van de sectie */
    background: #fcf1e3;          /* lichte kleur */
    z-index: -1;                  /* achter de content */
}




/* Mobiel: forceer 2 kolommen (2x2) */
@media (max-width: 520px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.9rem;
  }

  .image-grid img {
    border-radius: 14px;
  }
}


  
  
/* =========================================
   Waldwei Reservation Form – newsletter look (ALWAYS LIGHT)
   Exact dezelfde structuur als jouw huidige CSS
========================================= */

/* In jouw layout staat het formulier binnen .section-text.
   We houden het compact en gecentreerd binnen de 1200px context. */
.section-text .waldwei-reservation-form{
  max-width: 860px;
  margin: 0 auto;
  color: #0e161c; /* light */
}

/* Form card: rustig, licht, in newsletter-stijl */
.section-text .waldwei-form{
  background: #fcf1e3; /* light section background */
  border: 1px solid rgba(14, 22, 28, 0.14);
  border-radius: 26px;          /* zoals section-newsletter--light */
  padding: 26px 26px 20px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.12);
}

/* Section headers in form: subtiel */
.section-text .waldwei-form-section{
  border: 1px solid rgba(14, 22, 28, 0.10);
  background: rgba(14, 22, 28, 0.02);
  border-radius: 18px;
  padding: 18px 18px 16px;
  margin-bottom: 16px;
}

.section-text .waldwei-form-section h3{
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em; /* sluit aan op jouw title-letterspacing */
  color: #0e161c;
  opacity: 0.92;
}

/* Grid spacing “zoals sections”: ruim maar clean */
.section-text .waldwei-form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.section-text .waldwei-form-row-3{
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 860px){
  .section-text .waldwei-form{
    padding: 20px 16px 16px;
    border-radius: 22px;
  }
  .section-text .waldwei-form-row,
  .section-text .waldwei-form-row-3{
    grid-template-columns: 1fr;
  }
}

/* Labels: netjes, klein */
.section-text .waldwei-form-field{
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.section-text .waldwei-form-field label{
  font-size: 13px;
  letter-spacing: 0.03em;
  color: #0e161c;
  opacity: 0.75; /* nieuwsbrief-achtig */
}

/* Inputs: exact nieuwsbrief light look */
.section-text .waldwei-form-field input[type="text"],
.section-text .waldwei-form-field input[type="number"],
.section-text .waldwei-form-field input[type="email"],
.section-text .waldwei-form-field input[type="tel"],
.section-text .waldwei-form-field select,
.section-text .waldwei-form-field textarea{
  width: 100%;
  padding: 0.9rem 1rem; /* nieuwsbrief */
  border-radius: 12px;  /* nieuwsbrief */
  border: 1px solid rgba(14, 22, 28, 0.14); /* nieuwsbrief light */
  background: rgba(14, 22, 28, 0.04);       /* nieuwsbrief light */
  color: #0e161c;
  outline: none;
  font-size: 0.95rem; /* nieuwsbrief */
  transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.section-text .waldwei-form-field textarea{
  resize: vertical;
  min-height: 110px;
}

.section-text .waldwei-form-field input::placeholder,
.section-text .waldwei-form-field textarea::placeholder{
  color: rgba(14, 22, 28, 0.55); /* nieuwsbrief light */
}

.section-text .waldwei-form-field input[readonly]{
  cursor: pointer;
}

/* Focus: exact nieuwsbrief light */
.section-text .waldwei-form-field input:focus,
.section-text .waldwei-form-field select:focus,
.section-text .waldwei-form-field textarea:focus{
  border-color: rgba(14, 22, 28, 0.35);
  background: rgba(14, 22, 28, 0.06);
}

/* Checkbox: past bij nieuwsbrief light */
.section-text .waldwei-checkbox-field{
  margin-top: 6px;
}
.section-text .waldwei-checkbox-field label{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.35;
  color: #0e161c;
  opacity: 0.85;
  user-select: none;
}
.section-text .waldwei-checkbox-field input[type="checkbox"]{
  margin-top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(14, 22, 28, 0.22);
  background: rgba(14, 22, 28, 0.04);
  accent-color: #0e161c; /* light */
}

/* Feedback onder time */
.section-text .waldwei-availability-feedback{
  margin-top: 8px;
  font-size: 13px;
  color: #0e161c;
  opacity: 0.75;
}

/* Submit: exact nieuwsbrief light (dark button) */
.section-text .waldwei-form-submit{
  margin-top: 12px;
  display: flex;
  justify-content: flex-start;
}

.section-text .waldwei-submit-btn{
  background: #0e161c;   /* nieuwsbrief light button */
  color: #fcf1e3;
  border: none;
  border-radius: 12px;   /* nieuwsbrief */
  padding: 0.95rem 1.4rem; /* nieuwsbrief */
  font-size: 0.95rem;    /* nieuwsbrief */
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
  letter-spacing: 0.02em;
}

.section-text .waldwei-submit-btn:hover{
  transform: translateY(-1px);
  opacity: 0.95;
}

.section-text .waldwei-submit-btn:active{
  transform: translateY(0);
}

.section-text .waldwei-submit-btn:disabled{
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* Message block */
.section-text .waldwei-form-message{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(14, 22, 28, 0.14);
  background: rgba(14, 22, 28, 0.04);
  font-size: 13px;
  line-height: 1.35;
  color: #0e161c;
  opacity: 0.9;
  display: none;
}

.section-text .waldwei-form-message.is-success{
  display: block;
  border-color: rgba(14, 22, 28, 0.14);
  background: rgba(14, 22, 28, 0.04);
}

.section-text .waldwei-form-message.is-error{
  display: block;
  border-color: rgba(14, 22, 28, 0.18);
  background: rgba(14, 22, 28, 0.06);
}

.section-text .waldwei-form-message.is-info{
  display: block;
}



.section-icon svg{
  width:50px;
  height:50px;
}

.section--light .section-icon svg *{
  fill:#FCF1E3 !important;
  stroke:#FCF1E3 !important;
  opacity:0.8;
}



.section--dark .section-icon svg *{
  fill:#0A1018 !important;
  stroke:#0A1018 !important;
  opacity:0.8;
}


.newsletter-status {
  font-size: 14px;
  width: 100%;
  text-align: center;
  padding: 10px;
  background-color: #F0E6D8;
  color: #0A1018;
  border-radius: 12px;
  margin-bottom: 15px;
}

.newsletter-status--loading {
  background-color: #F0E6D8;
  color: #0A1018;
}

.newsletter-status--success {
  background-color: #F0E6D8;
  color: #0A1018;
}




/* ===================================================
   NEWS POSTS BLOCK - Dark & Light variants + Columns
   =================================================== */

/* === BASE SECTION === */
#nieuws {
    padding-top: 4rem;
    padding-bottom: 4rem;
    border-radius: 0;
}

/* Light variant (cream achtergrond) */
#nieuws.section--light {
    background: #fcf1e3;
    color: #0a1018;
}


#nieuws.section--dark {
   padding-top: 0px;
   margin-top: -100px;
}

#nieuws.section--light .section-title,
#nieuws.section--light .section-icon {
    color: #0a1018;
}

#nieuws.section--light .more-link a {
    color: #0a1018;
    border-bottom-color: #0a1018;
}

/* Dark variant (standaard achtergrond) */
#nieuws:not(.section--light) {
    background: #0a1018;
    color: #fcf1e3;
}

#nieuws:not(.section--light) .section-title,
#nieuws:not(.section--light) .section-icon {
    color: #fcf1e3;
}

#nieuws:not(.section--light) .more-link a {
    color: #fcf1e3;
    border-bottom-color: #fcf1e3;
}

/* Full-width background trick */
#nieuws {
    position: relative;
    z-index: 1;
}

#nieuws::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    z-index: -1;
}

#nieuws.section--light::before {
    background: #fcf1e3;
}

#nieuws:not(.section--light)::before {
    background: #0a1018;
}

/* === NEWS GRID === */
.news-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

/* Kolommen (desktop) */
.news-grid[data-columns="2"] {
    grid-template-columns: repeat(2, 1fr);
}

.news-grid[data-columns="3"] {
    grid-template-columns: repeat(3, 1fr);
}

.news-grid[data-columns="4"] {
    grid-template-columns: repeat(4, 1fr);
}

/* Tablet: altijd 2 kolommen */
@media (max-width: 1024px) {
    .news-grid[data-columns="3"],
    .news-grid[data-columns="4"] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: altijd 1 kolom */
@media (max-width: 700px) {
    .news-grid {
        grid-template-columns: 1fr !important;
    }
}

/* === NEWS CARD === */
.news-card {
    --news-img-h: 180px;
    background: #0a1018;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

/* Spacer voor absolute image */
.news-card::before {
    content: "";
    display: block;
    height: var(--news-img-h);
    flex-shrink: 0;
}

.news-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--news-img-h);
    object-fit: cover;
    clip-path: ellipse(100% 95% at 50% 0%);
    z-index: 1;
}

.news-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: #0a1018;
    color: #fcf1e3;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.6rem;
}

/* === BADGES === */
.news-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-badge--nieuws {
    background: #fcf1e3;
    color: #0a1018;
}

.news-badge--acties {
    background: #e4b348; /* jouw goud */
    color: #3b2608;
    box-shadow: 0 4px 12px rgba(228, 179, 72, 0.35);
}

/* === STICKY POSTS (highlight) === */
.news-card--sticky {
    border: 2px solid #e4b348;
    box-shadow: 0 8px 24px rgba(228, 179, 72, 0.25);
}

.news-card--sticky:hover {
    box-shadow: 0 12px 32px rgba(228, 179, 72, 0.35);
}

/* === TITLES & TEXT === */
.news-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    color: #fcf1e3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-description {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
    color: #fcf1e3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* === BUTTONS === */
.news-content .btn {
    margin-top: 15px;
    align-self: flex-start;
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #fcf1e3;
    color: #0a1018;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* === MORE LINK === */
.more-link {
    text-align: center;
    margin-top: 2rem;
}

.more-link a {
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 2px solid;
    padding-bottom: 0.3rem;
    transition: opacity 0.3s;
}

.more-link a:hover {
    opacity: 0.7;
}


.typing-indicator .message-bubble {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.typing-indicator .sylvai-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor; /* pakt de tekstkleur van de bubble */
  display: inline-block;
  opacity: 0.35;
  animation: sylvaiTypingBounce 1.1s infinite ease-in-out;
}

.typing-indicator .sylvai-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-indicator .sylvai-dot:nth-child(3) { animation-delay: 0.30s; }

@keyframes sylvaiTypingBounce {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  40% {
    transform: translateY(-4px);
    opacity: 1;
  }
}


/* ==============================
   Hero CTA - Full-width banner met call-to-action
   ============================== */

.hero-cta {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 4rem 0;
}

/* Achtergrondafbeelding */
/* Achtergrondafbeelding */
/* Achtergrondafbeelding container */
.hero-cta__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-cta__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlay (donkere laag over afbeelding) */
.hero-cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0e161c;
  z-index: 1;
}

/* Overlay opacity varianten */
.hero-cta--light .hero-cta__overlay {
  opacity: 0.4;
}

.hero-cta--medium .hero-cta__overlay {
  opacity: 0.55;
}

.hero-cta--dark .hero-cta__overlay {
  opacity: 0.7;
}

/* Content container */
.hero-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 3rem 1.5rem;
  color: #fcf1e3;
}

/* Titel */
.hero-cta__title {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
  font-weight: 400;
}

/* Subtitel */
.hero-cta__subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Button */
.hero-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fcf1e3;
  color: #0e161c;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(252, 241, 227, 0.15);
}

.hero-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252, 241, 227, 0.25);
}

.hero-cta__button-icon {
  transition: transform 0.2s ease;
}

.hero-cta__button:hover .hero-cta__button-icon {
  transform: translateX(3px);
}

/* Decoratief element (lijn met cirkel) */
.hero-cta__decorative {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.hero-cta__line {
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(252, 241, 227, 0.4), transparent);
}

.hero-cta__circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(252, 241, 227, 0.5);
  margin: 0 -4px;
}

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

@media (max-width: 900px) {
  .hero-cta {
    min-height: 500px;
  }
  
  .hero-cta__title {
    font-size: 2.2rem;
  }
  
  .hero-cta__subtitle {
    font-size: 1.05rem;
  }
}

@media (max-width: 600px) {
  .hero-cta {
    min-height: 450px;
  }
  
  .hero-cta__title {
    font-size: 1.8rem;
  }
  
  .hero-cta__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta__button {
    padding: 0.9rem 1.6rem;
    font-size: 0.95rem;
  }
  
  .hero-cta__decorative {
    margin-top: 2rem;
  }
  
  .hero-cta__line {
    width: 80px;
  }
}


/* ==============================
   Split button (CTA)
   ============================== */

.split-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Light variant button */
.section-split--light .split-button {
  background: #0e161c;
  color: #fcf1e3;
  box-shadow: 0 4px 12px rgba(14, 22, 28, 0.15);
}

.section-split--light .split-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(14, 22, 28, 0.25);
}

/* Dark variant button */
.section-split--dark .split-button {
  background: #fcf1e3;
  color: #0e161c;
  box-shadow: 0 4px 12px rgba(252, 241, 227, 0.15);
}

.section-split--dark .split-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(252, 241, 227, 0.25);
}

/* Button icon animation */
.split-button__icon {
  transition: transform 0.2s ease;
}

.split-button:hover .split-button__icon {
  transform: translateX(3px);
}


/* ==============================
   Horizontal Gallery (Scroll)
   ============================== */

.horizontal-gallery {
  max-width: 100%;
  margin: 4rem 0;
  padding: 0;
  overflow: hidden;
}

.horizontal-gallery__title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #fcf1e3;
  letter-spacing: 0.02em;
  padding: 0 1.5rem;
}

/* Container met navigatie */
.horizontal-gallery__container {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* Scroll area */
.horizontal-gallery__scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  cursor: grab;
  padding: 1rem 0;
  
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.horizontal-gallery__scroll::-webkit-scrollbar {
  display: none;
}

.horizontal-gallery__scroll:active {
  cursor: grabbing;
}

/* Gallery items */
.horizontal-gallery__item {
  flex-shrink: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.horizontal-gallery__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.horizontal-gallery__item img {
  display: block;
  width: auto;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

/* Size variants */
.horizontal-gallery--size-small .horizontal-gallery__item img {
  height: 300px;
}

.horizontal-gallery--size-medium .horizontal-gallery__item img {
  height: 400px;
}

.horizontal-gallery--size-large .horizontal-gallery__item img {
  height: 500px;
}

/* Caption */
.horizontal-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(14, 22, 28, 0.9), transparent);
  color: #fcf1e3;
  padding: 2rem 1.2rem 1.2rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Navigation buttons */
.horizontal-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(252, 241, 227, 0.1);
  border: 1px solid rgba(252, 241, 227, 0.2);
  color: #fcf1e3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.horizontal-gallery__nav:hover {
  background: rgba(252, 241, 227, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.horizontal-gallery__nav--prev {
  left: 0.5rem;
}

.horizontal-gallery__nav--next {
  right: 0.5rem;
}

/* Scroll indicator dots */
.horizontal-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0 1.5rem;
}

.horizontal-gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(252, 241, 227, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.horizontal-gallery__dot.active {
  background: rgba(252, 241, 227, 0.8);
  width: 24px;
  border-radius: 4px;
}

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

@media (max-width: 900px) {
  .horizontal-gallery__container {
    padding: 0 3rem;
  }
  
  .horizontal-gallery--size-large .horizontal-gallery__item img {
    height: 400px;
  }
  
  .horizontal-gallery--size-medium .horizontal-gallery__item img {
    height: 350px;
  }
}

@media (max-width: 600px) {
  .horizontal-gallery__title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .horizontal-gallery__container {
    padding: 0 2.5rem;
  }
  
  .horizontal-gallery__scroll {
    gap: 1rem;
  }
  
  .horizontal-gallery--size-large .horizontal-gallery__item img,
  .horizontal-gallery--size-medium .horizontal-gallery__item img {
    height: 280px;
  }
  
  .horizontal-gallery--size-small .horizontal-gallery__item img {
    height: 240px;
  }
  
  .horizontal-gallery__nav {
    width: 40px;
    height: 40px;
  }
  
  .horizontal-gallery__nav--prev {
    left: 0.25rem;
  }
  
  .horizontal-gallery__nav--next {
    right: 0.25rem;
  }
}


/* ==============================
   Instagram Feed - Compact Slider
   ============================== */

.instagram-feed--compact {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

/* Header (optioneel) */
.instagram-feed__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.instagram-feed__title {
  font-size: 1.4rem;
  color: #fcf1e3;
  margin-bottom: 0.3rem;
  font-weight: 400;
}

.instagram-feed__subtitle {
  font-size: 0.9rem;
  color: rgba(252, 241, 227, 0.6);
  font-style: italic;
}

/* Slider container */
.instagram-feed__slider-container {
  position: relative;
  padding: 0 2.5rem;
}

/* Slider */
.instagram-feed__slider {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
  padding: 0.5rem 0;
  
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.instagram-feed__slider::-webkit-scrollbar {
  display: none;
}

.instagram-feed__slider:active {
  cursor: grabbing;
}

/* Slide items */
.instagram-feed__slide {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  transition: transform 0.3s ease;
}

.instagram-feed__slide:hover {
  transform: translateY(-4px);
}

.instagram-feed__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  pointer-events: none;
}

/* Overlay on hover */
.instagram-feed__slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 22, 28, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fcf1e3;
}

.instagram-feed__slide:hover .instagram-feed__slide-overlay {
  opacity: 1;
}

/* Navigation buttons */
.instagram-feed__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(252, 241, 227, 0.1);
  border: 1px solid rgba(252, 241, 227, 0.2);
  color: #fcf1e3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.instagram-feed__nav:hover {
  background: rgba(252, 241, 227, 0.2);
  transform: translateY(-50%) scale(1.05);
}

.instagram-feed__nav--prev {
  left: 0;
}

.instagram-feed__nav--next {
  right: 0;
}

/* Footer link */
.instagram-feed__footer {
  text-align: center;
  margin-top: 1.5rem;
}

.instagram-feed__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(252, 241, 227, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.instagram-feed__link:hover {
  color: #fcf1e3;
}

.instagram-feed__link svg {
  width: 14px;
  height: 14px;
}

/* Error state */
.instagram-feed__error {
  text-align: center;
  padding: 2rem;
  color: rgba(252, 241, 227, 0.6);
  font-size: 0.9rem;
}

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

@media (max-width: 768px) {
  .instagram-feed--compact {
    margin: 1.5rem auto;
  }
  
  .instagram-feed__slider-container {
    padding: 0 2rem;
  }
  
  .instagram-feed__slide {
    width: 160px;
    height: 160px;
  }
  
  .instagram-feed__nav {
    width: 32px;
    height: 32px;
  }
  
  .instagram-feed__title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .instagram-feed__slider-container {
    padding: 0 1.5rem;
  }
  
  .instagram-feed__slide {
    width: 140px;
    height: 140px;
  }
  
  .instagram-feed__slider {
    gap: 0.5rem;
  }
}


.disclaimer {
	width: 100%;
	padding: 5px 0px 10px 0px;
	text-align: center;
	font-size: 11px;
	color: #0A1018;
}

/* ==============================
   Nieuws Template Styling
   ============================== */

/* Section styling */
.section-intro {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* Afbeelding tussen intro en tekst */
.news-image-single {
  max-width: 900px;
  margin: 2.5rem auto;
  text-align: center;
}

.news-image-single img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Titel - links uitgelijnd */
.section-title-news {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fcf1e3;
  margin-bottom: 2rem;
  text-align: left;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

/* Intro en tekst - links uitgelijnd */
.section-text-news {
  color: #fcf1e3;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 2rem;
}

.section-text-news p {
  margin-bottom: 1.2rem;
}

/* H2 tussenkopjes in de tekst */
.section-text-news h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fcf1e3;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  text-align: left;
  letter-spacing: 0.01em;
}

/* Eerste H2 heeft minder top margin */
.section-text-news h2:first-child {
  margin-top: 0;
}

/* Opsommingen in de lopende tekst */
.section-text-news ul,
.section-text-news ol {
  margin: 1.5rem 0 1.5rem 2rem;
  padding: 0;
  text-align: left;
}

.section-text-news ul li,
.section-text-news ol li {
  margin-bottom: 0.8rem;
  line-height: 1.7;
  padding-left: 0.5rem;
}

/* Unordered list styling */
.section-text-news ul li {
  list-style-type: disc;
}

.section-text-news ul li::marker {
  color: #fcf1e3;
}

/* Ordered list styling */
.section-text-news ol li {
  list-style-type: decimal;
}

.section-text-news ol li::marker {
  color: #fcf1e3s;
  font-weight: 600;
}

/* Geneste lijsten */
.section-text-news ul ul,
.section-text-news ol ul,
.section-text-news ul ol,
.section-text-news ol ol {
  margin: 0.5rem 0 0.5rem 1.5rem;
}


/* Responsive aanpassingen */
@media (max-width: 768px) {
  .section-intro {
    padding: 2rem 1.5rem;
  }

  .news-image {
    max-width: 100%;
    margin: 2rem auto;
  }

  .news-image img {
    border-radius: 10px;
  }

  .section-title-news {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

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

  .section-text-news h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .section-text-news ul,
  .section-text-news ol {
    margin-left: 1.5rem;
  }

  .cta-actions {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .news-image {
    margin: 1.5rem auto;
  }

  .news-image img {
    border-radius: 8px;
  }

  .section-title-news {
    font-size: 1.7rem;
  }

  .section-text-news {
    font-size: 0.95rem;
  }

  .section-text-news h2 {
    font-size: 1.3rem;
  }

  .section-text-news ul,
  .section-text-news ol {
    margin-left: 1rem;
  }
}
