:root {
  --brand-green: #1d7733;
}

/* ================= GLOBAL RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: #f6f8f7;
    color: #1e2a24;
    line-height: 1.8;
}
h1, h2 {
    font-family: "Playfair Display", serif;
    font-weight: 400;
}

/* Section subtitles / quotes / logo feeling text */
h3, .signature, .quote p {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
}

/* ================= LAYOUT SYSTEM ================= */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    margin: 140px 0;
}

/* ================= HIGHLIGHT ================= */
.highlight {
  color: var(--brand-green);
}
/* ================= HEADER ================= */
.header {
    position: relative;
    background: var(--brand-green);
    padding: 25px 0;
    border-bottom-right-radius: 120px;
    overflow: visible;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: white;
    font-size: 48px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    z-index: 2;
    font-family: "Playfair Display", serif;
}

.menu-toggle {
    font-size: 26px;
    color: white;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

/* ================= CLOVER EYE-CATCHER ================= */

.clover {
    position: absolute;
    right: 140px;
    bottom: -55px;
    height: 130px;
    z-index: 1;
    transform: rotate(-6deg);
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.15));
}

/* ================= FULLSCREEN MENU ================= */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    background: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: 0.4s ease;
    z-index: 999;
}

.fullscreen-menu.active {
    transform: translateY(0);
}

.fullscreen-menu nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.fullscreen-menu a {
    font-size: 34px;
    text-decoration: none;
    color: white;
    font-weight: 300;
    letter-spacing: 1px;
}

.menu-close {
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.menu-toggle,
.menu-close {
    transition: 0.3s;
}

.menu-toggle:hover,
.menu-close:hover {
    opacity: 0.7;
}

/* ================= HERO ================= */

.hero {
    position: relative;
    margin-top: 80px;
}

.hero img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 30px;
}

.hero-text {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: white;
    max-width: 500px;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 20px;
    font-weight: 300;
}
.about-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
}
.full-photo {
  width: 100%;
  border-radius: 30px;
}

/* Mobile */

@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
/* ================= TYPOGRAPHY ================= */

h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 25px;
}

p {
    font-size: 18px;
    margin-bottom: 24px;
}

.signature {
    margin-top: 60px;
    font-style: italic;
    font-size: 20px;
}

/* ================= MODES SECTION ================= */

.modes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.mode {
    padding: 60px;
    border-radius: 30px;
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.mode h3 {
    font-size: 26px;
    margin-bottom: 30px;
}

.red h3 {
    color: #a94442;
}

.green h3 {
    color: var(--brand-green);
}

/* ================= CLOSING BANNER ================= */
.closing-banner {
  position: relative;
  margin-top: 140px;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}

.closing-banner img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.closing-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.closing-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;  
  justify-content: flex-start;
  padding-left: 120px;
  padding-right: 40px;
}

.quote {
  max-width: 520px;
  color: white;
}

.quote p {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 24px;
}

.quote .cta {
  font-weight: 500;
  margin-top: 30px;
}

.quote .source {
  font-size: 14px;
  opacity: 0.75;
  margin-top: 40px;
}
/* ================= LIST STYLING ================= */

.audience-list,
.benefits-list {
    margin: 40px 0;
    padding-left: 0;
    list-style: none;
}

.audience-list li,
.benefits-list li {
    margin-bottom: 18px;
    padding-left: 28px;
    position: relative;
    font-size: 18px;
    line-height: 1.1;
}

.audience-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #5f8f7b;
    font-size: 22px;
    line-height: 1;
}

.benefits-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: var(--brand-green);
    border-radius: 50%;
}
/* ================= BOTTOM BAR ================= */
.bottom-bar {
  height: 90px;
  background: var(--brand-green);
  border-top-left-radius: 60px;
  margin-top: -10px;
}

/* ================= AANBOD ================= */
.filters{
display:flex;
gap:15px;
flex-wrap:wrap;
margin-bottom:40px;
}

.filters button{
padding:10px 18px;
border-radius:20px;
border:none;
background:#eee;
cursor:pointer;
}

.aanbod-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.aanbod-card{
background:white;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 40px rgba(0,0,0,0.08);
cursor:pointer;
transition:0.3s;
}

.aanbod-card:hover{
transform:translateY(-5px);
}

.aanbod-card img{
width:100%;
height:220px;
object-fit:cover;
}

.card-body{
padding:20px;
}

.price{
color:var(--brand-green);
font-weight:500;
margin-top:10px;
}
.aanbod-section{
margin-bottom:80px;
}

.category-text{
max-width:700px;
margin-bottom:30px;
line-height:1.6;
color:#555;
}

.aanbod-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}
.back-btn{
display:inline-block;
margin-bottom:30px;
color:#3a7d44;
text-decoration:none;
font-weight:500;
}

.back-btn:hover{
text-decoration:underline;
}
.detail-hero{
position:relative;
margin-bottom:40px;
border-radius:20px;
overflow:hidden;
}

.detail-hero img{
width:100%;
height:420px;
object-fit:cover;
display:block;
}

.detail-hero-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:40px;
background:linear-gradient(to top,rgba(0,0,0,0.6),transparent);
}

.detail-hero-overlay h1{
color:white;
font-size:2.2rem;
}
.detail-meta{
display:flex;
gap:60px;
margin-bottom:40px;
flex-wrap:wrap;
}

.meta-item{
display:flex;
flex-direction:column;
}

.meta-label{
font-size:0.8rem;
letter-spacing:1px;
text-transform:uppercase;
color:#777;
margin-bottom:4px;
}

.meta-value{
font-size:1.1rem;
font-weight:500;
}
.detail-content{
max-width:720px;
line-height:1.7;
}

.detail-content h2{
margin-top:40px;
margin-bottom:10px;
font-size:1.4rem;
}

.detail-content p{
margin-bottom:18px;
}

.intro{
font-size:1.1rem;
margin-bottom:25px;
}
.detail-quote{
margin-top:80px;
margin-bottom: 5rem;
padding:40px;
background:#f5f5f5;
border-left:4px solid #3a7d44;
font-style:italic;
font-size:1.2rem;
max-width:700px;
}
.duration{
font-size:0.9rem;
color:#666;
margin-top:4px;
}
.admin-login{
max-width:450px;
margin:120px auto;
padding:40px;
background:white;
border-radius:30px;
box-shadow:0 20px 60px rgba(0,0,0,0.06);
}

.admin-login input{
width:100%;
padding:14px;
margin-bottom:20px;
border-radius:12px;
border:1px solid #eee;
}

.admin-login button{
width:100%;
padding:14px;
background:var(--brand-green);
color:white;
border:none;
border-radius:12px;
cursor:pointer;
font-weight:500;
}

.admin-login button:hover{
opacity:0.9;
}
#form{
display:grid;
gap:18px;
max-width:800px;
background:white;
padding:40px;
border-radius:30px;
box-shadow:0 20px 60px rgba(0,0,0,0.06);
}

#form input,
#form textarea,
#form select{
padding:14px;
border-radius:12px;
border:1px solid #eee;
font-family:Inter;
}

#form button{
background:var(--brand-green);
color:white;
padding:16px;
border:none;
border-radius:12px;
cursor:pointer;
font-weight:500;
} 
.login-overlay{
position:fixed;
inset:0;
background:rgba(0,0,0,0.6);
display:flex;
justify-content:center;
align-items:center;
z-index:9999;
}

.login-box{
background:white;
padding:40px;
border-radius:25px;
width:380px;
box-shadow:0 20px 60px rgba(0,0,0,0.2);
}

.login-box input{
width:100%;
padding:14px;
margin-bottom:20px;
border-radius:12px;
border:1px solid #eee;
}

.login-box button{
width:100%;
padding:14px;
background:var(--brand-green);
color:white;
border:none;
border-radius:12px;
cursor:pointer;
}
.admin-card {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.admin-card .card-info p {
    margin: 4px 0;
}

.admin-card .delete-btn {
    background: #a94442;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 10px 16px;
    cursor: pointer;
}

.admin-card .delete-btn:hover {
    opacity: 0.8;
}
/* ================= tarieven en boeken ================= */
.slideshow{
position:relative;
width:100%;
height:600px;
margin:80px 0;
overflow:hidden;
border-radius:30px;
}

.slide{
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transition:opacity 1.2s ease;
}

.slide.active{
opacity:1;
}
/* ================= recensies ================= */
.reviews-section{
margin:120px 0;
}

.review-btn{
background:var(--brand-green);
color:white;
border:none;
padding:14px 24px;
border-radius:12px;
cursor:pointer;
display:block;
margin:60px auto;
}

.reviews-grid{
column-count:3;
column-gap:35px;
}

.review-card{
break-inside: avoid;
margin-bottom:35px;
background:white;
padding:30px;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,0.06);
}
@media(max-width:1100px){
.reviews-grid{
column-count:2;
}
}

@media(max-width:700px){
.reviews-grid{
column-count:1;
}
}
.review-stars{
color:#d4a017;
margin-top:10px;
}

/* popup */
.review-popup{
position:fixed;
inset:0;
background:rgba(0,0,0,0.65);
backdrop-filter: blur(8px);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.review-box{
background:white;
padding:45px;
border-radius:32px;
width:420px;
box-shadow:0 30px 80px rgba(0,0,0,0.15);
display:flex;
flex-direction:column;
gap:20px;
}

.review-box h2{
text-align:center;
margin-bottom:10px;
}

.review-box input,
.review-box textarea,
.review-box select{
padding:15px;
border-radius:14px;
border:1px solid #eee;
font-family:Inter;
font-size:16px;
transition:0.25s;
}

.review-box input:focus,
.review-box textarea:focus,
.review-box select:focus{
outline:none;
border-color:var(--brand-green);
}

.review-box textarea{
min-height:120px;
resize:none;
}

.review-box button{
padding:15px;
border:none;
border-radius:14px;
cursor:pointer;
font-weight:500;
}

#submitReview{
background:var(--brand-green);
color:white;
}

#closeReviewPopup{
background:#eee;
}
.star-picker{
display:flex;
justify-content:center;
gap:10px;
font-size:28px;
cursor:pointer;
color:#ccc;
}

.star-picker span{
transition:0.25s;
}

.star-picker span.active,
.star-picker span:hover{
color:#d4a017;
}
/* ================= contact ================= */
.contact-page{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
padding-top:60px;
}

.contact-text h2{
margin-bottom:30px;
}

.contact-text p{
margin-bottom:25px;
}

.contact-form{
display:flex;
flex-direction:column;
gap:20px;
}

.contact-form input,
.contact-form textarea{
padding:16px;
border-radius:14px;
border:1px solid #eee;
font-family:Inter;
font-size:16px;
}

.contact-form textarea{
min-height:160px;
resize:none;
}

.contact-form button{
background:var(--brand-green);
color:white;
border:none;
padding:16px;
border-radius:14px;
cursor:pointer;
font-weight:500;
}

.form-message{
margin-top:20px;
color:var(--brand-green);
}
@media(max-width:900px){
.contact-page{
grid-template-columns:1fr;
gap:50px;
}
}
/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .container {
        padding: 0 20px;
    }

    section {
        margin: 100px 0;
    }

    .modes {
        grid-template-columns: 1fr;
    }

    .hero img {
        height: 400px;
    }

    .hero-text {
        left: 30px;
        bottom: 40px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .closing-content {
        left: 40px;
    }

    .closing-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 900px) {

    .clover {
        right: 40px;
        bottom: -35px;
        height: 90px;
    }

    .header-inner {
        padding: 0 25px;
    }
}

@media (max-width: 900px) {

  .closing-banner img {
    height: 500px;
  }

  .closing-content {
    padding: 60px 30px;
    align-items: flex-start;
  }

  .quote p {
    font-size: 20px;
  }
}