@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --yellow:      #F5E152;
    --yellow-dark: #D4C030;
    --dark:        #1A1A1A;
    --grey-light:  #C9C9C9;
    --grey-mid:    #888;
    --white:       #FFFFFF;
    --bg-hero:     #D0D0D0;
    --bg-section:  #F5F5F5;
    --font:        'Montserrat', 'Segoe UI', Arial, sans-serif;
    --max-w:       1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.65; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

h1,h2,h3,h4 { font-weight: 700; line-height: 1.15; text-transform: uppercase; letter-spacing: .02em; }
h1 { font-size: clamp(2.2rem,5vw,4rem); }
h2 { font-size: clamp(1.6rem,3vw,2.5rem); }
h3 { font-size: clamp(1.1rem,2vw,1.4rem); }
p  { margin-bottom: 1rem; } p:last-child { margin-bottom: 0; }

.btn { display: inline-block; padding: .85rem 2rem; font-family: var(--font); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; border: none; cursor: pointer; transition: background .2s, color .2s; }
.btn-primary  { background: var(--yellow); color: var(--dark); }
.btn-primary:hover  { background: var(--yellow-dark); }
.btn-outline  { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn-outline:hover  { background: var(--dark); color: var(--white); }

/* ---- HEADER ---- */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.logo-text { font-size: 1.1rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.main-nav ul { display: flex; gap: 2.5rem; }
.main-nav a { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding-bottom: 2px; border-bottom: 2px solid transparent; transition: border-color .2s; }
.main-nav a:hover, .main-nav a.active { border-bottom-color: var(--yellow); }
.header-social { display: flex; gap: .75rem; }
.header-social a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--yellow); transition: background .2s; }
.header-social a:hover { background: var(--yellow-dark); }
.header-social svg { width: 16px; height: 16px; fill: var(--dark); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--dark); }

/* ---- PAGES (SPA routing) ---- */
.page { display: none; }
.page.active { display: block; }

/* ---- HERO ---- */
.hero { position: relative; background: var(--bg-hero); min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding-top: 80px; }
.hero-decoration { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 50%; height: 100%; pointer-events: none; opacity: .2; }
.hero-decoration svg { width: 100%; height: 100%; }
.hero-content { position: relative; z-index: 2; max-width: 580px; padding: 4rem 0; }
.hero-content h1 { margin-bottom: 1.25rem; }
.hero-content .tagline { font-size: clamp(1rem,2vw,1.3rem); font-weight: 400; text-transform: none; letter-spacing: 0; margin-bottom: 2.5rem; }

/* ---- FEATURES ---- */
.features-bar { padding: 3.5rem 0; border-bottom: 1px solid #eee; }
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.feature-item { display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.feature-icon { width: 44px; height: 44px; } .feature-icon svg { width: 100%; height: 100%; }
.feature-number { font-size: 1.4rem; font-weight: 800; }
.feature-label { font-size: .8rem; color: var(--grey-mid); text-transform: uppercase; letter-spacing: .08em; }

/* ---- TWO-COL ---- */
.section-woning   { padding: 6rem 0; background: var(--white); }
.section-omgeving { padding: 6rem 0; background: var(--bg-section); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col.reverse .col-content { order: -1; }
.col-image { position: relative; }
.col-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.image-accent { position: absolute; bottom: -18px; right: -18px; width: 110px; height: 110px; background: var(--yellow); z-index: -1; }
.section-label { font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: .75rem; }
.col-content h2 { margin-bottom: 1.25rem; } .col-content p { color: #555; margin-bottom: 1.25rem; }

/* ---- TESTIMONIALS ---- */
.section-testimonials { padding: 6rem 0; }
.testimonials-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; }
.testimonials-header h2 { margin: 0; }
.testimonials-nav { display: flex; gap: .5rem; }
.testimonials-nav button { background: none; border: 1px solid #ddd; cursor: pointer; font-size: 1.1rem; color: var(--grey-mid); padding: .4rem .75rem; transition: all .2s; }
.testimonials-nav button:hover { background: var(--yellow); border-color: var(--yellow); color: var(--dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.testimonial-card { padding: 2rem; border: 1px solid #eee; position: relative; }
.testimonial-card::before { content:'\201C'; font-size: 5rem; line-height: 1; color: var(--yellow); font-family: Georgia,serif; position: absolute; top: .5rem; left: 1.5rem; }
.testimonial-text { padding-top: 2.5rem; font-size: .9rem; color: #555; margin-bottom: 1.25rem; }
.testimonial-author { font-weight: 700; font-size: .9rem; }
.testimonial-stars  { color: var(--yellow); letter-spacing: 2px; margin-top: .25rem; }

/* ---- BOOKING ---- */
.section-booking { background: var(--dark); padding: 5rem 0; color: var(--white); text-align: center; }
.section-booking h2 { color: var(--white); margin-bottom: .5rem; }
.section-booking h2 span { color: var(--yellow); }
.booking-subtitle { font-size: 1rem; color: var(--grey-light); margin-bottom: 2.5rem; }
.booking-form { display: flex; align-items: flex-end; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.booking-field { display: flex; flex-direction: column; gap: .35rem; align-items: flex-start; }
.booking-field label { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-light); }
.booking-field input { background: #2A2A2A; border: 1px solid #444; color: var(--white); padding: .75rem 1.25rem; font-family: var(--font); font-size: .9rem; min-width: 180px; }
.booking-field input:focus { outline: 2px solid var(--yellow); }
#booking-result { margin-top: 1.5rem; font-weight: 600; min-height: 1.5rem; }

/* ---- PAGE HERO ---- */
.page-hero { background: var(--bg-hero); padding: 8rem 0 4rem; position: relative; overflow: hidden; }
.page-hero h1 { position: relative; z-index: 2; }
.page-hero-accent { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: 280px; height: 280px; background: var(--yellow); opacity: .18; border-radius: 50%; }

/* ---- VAKANTIEWONING ---- */
.woning-highlights { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin: 3rem 0; }
.woning-highlight-item { text-align: center; padding: 2rem 1rem; border: 1px solid #eee; }
.woning-highlight-item .number { font-size: 2.4rem; font-weight: 800; line-height: 1; }
.woning-highlight-item .label  { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--grey-mid); margin-top: .5rem; }
.woning-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin: 2rem 0; }
.woning-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.woning-amenities { background: var(--bg-section); padding: 4rem 0; }
.amenities-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2rem; }
.amenity-item { display: flex; align-items: center; gap: .75rem; padding: 1rem; background: var(--white); }
.amenity-item::before { content:'✓'; display:inline-flex; align-items:center; justify-content:center; width:24px; height:24px; min-width:24px; background:var(--yellow); color:var(--dark); font-weight:700; font-size:.8rem; }

/* ---- OMGEVING ---- */
.omgeving-intro { padding: 5rem 0; }
.omgeving-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2.5rem; }
.omgeving-card { overflow: hidden; }
.omgeving-card-image { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .4s; display: block; }
.omgeving-card:hover .omgeving-card-image { transform: scale(1.04); }
.omgeving-card-body { padding: 1.5rem 0; }
.omgeving-card-body h3 { margin-bottom: .6rem; }
.omgeving-card-body p  { color: #555; font-size: .92rem; }
.omgeving-card-body .btn { margin-top: 1rem; }

/* ---- OVER ONS ---- */
.over-ons-intro { padding: 5rem 0; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.over-ons-intro img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.over-ons-values { background: var(--bg-section); padding: 5rem 0; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2.5rem; }
.value-item { padding: 2rem; background: var(--white); border-top: 4px solid var(--yellow); }
.value-item h3 { margin-bottom: .75rem; } .value-item p { color: #555; font-size: .9rem; }

/* ---- CONTACT ---- */
.contact-wrapper { padding: 5rem 0; display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon { width: 40px; height: 40px; min-width: 40px; background: var(--yellow); display: flex; align-items: center; justify-content: center; }
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-content strong { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .2rem; }
.contact-social { margin-top: 2rem; } .contact-social h3 { margin-bottom: 1rem; }
.social-links { display: flex; gap: .75rem; flex-wrap: wrap; }
.social-links a { display: flex; align-items: center; gap: .5rem; padding: .6rem 1.2rem; background: var(--yellow); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: background .2s; }
.social-links a:hover { background: var(--yellow-dark); }
.social-links svg { width: 16px; height: 16px; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .4rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: .85rem 1rem; border: 1px solid #ddd; font-family: var(--font); font-size: .95rem; background: var(--white); transition: border-color .2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,225,82,.2); }
.form-group textarea { min-height: 150px; resize: vertical; }
#contact-msg { display: none; padding: 1rem; margin-bottom: 1.5rem; font-weight: 600; }

/* ---- FOOTER ---- */
.site-footer { background: var(--dark); color: var(--white); padding: 4rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand p { font-size: .9rem; color: var(--grey-light); margin-top: 1rem; line-height: 1.7; }
.footer-social-row { display: flex; gap: .75rem; margin-top: 1.5rem; }
.footer-social-row a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); transition: background .2s; }
.footer-social-row a:hover { background: var(--yellow); }
.footer-social-row svg { width: 16px; height: 16px; fill: var(--white); }
.footer-social-row a:hover svg { fill: var(--dark); }
.footer-col h4 { font-size: .74rem; letter-spacing: .15em; text-transform: uppercase; color: var(--yellow); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { font-size: .9rem; color: var(--grey-light); transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-col address { font-style: normal; font-size: .9rem; color: var(--grey-light); line-height: 1.9; }
.footer-col address a { color: var(--grey-light); transition: color .2s; }
.footer-col address a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; font-size: .8rem; color: var(--grey-mid); flex-wrap: wrap; gap: 1rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--grey-mid); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--white); }

.sp { padding: 5rem 0; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease,transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width:1024px) {
    .features-grid { grid-template-columns: repeat(2,1fr); }
    .two-col, .over-ons-intro, .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .two-col.reverse .col-content { order: 0; }
    .testimonials-grid { grid-template-columns: repeat(2,1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .woning-highlights { grid-template-columns: repeat(2,1fr); }
    .omgeving-cards { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:768px) {
    .main-nav { display: none; position: fixed; top: 80px; left: 0; width: 100%; background: var(--white); padding: 2rem; box-shadow: 0 8px 24px rgba(0,0,0,.1); }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 1.5rem; }
    .nav-toggle { display: flex; }
    .testimonials-grid, .footer-inner, .values-grid, .amenities-grid, .woning-gallery, .omgeving-cards { grid-template-columns: 1fr; }
    .booking-form { flex-direction: column; align-items: stretch; }
    .booking-field input { min-width: unset; width: 100%; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width:480px) {
    .container { padding: 0 1rem; }
    .woning-highlights { grid-template-columns: 1fr 1fr; }
}
