:root {
  --bg-1: #b8a184;
  --bg-2: #fff8ef;
  --ink: #4a2a1e;
  --muted: #6d4a3a;
  --brand: #b45f2f;
  --brand-2: #8d4a23;
  --card: #ffffff;
  --line: rgba(74, 42, 30, 0.12);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  --shadow-2: 0 10px 24px rgba(0, 0, 0, 0.1);
  --radius: 20px;
  --radius-sm: 14px;
  --page-padding: 64px;
  --page-max-width: 95%;
  --nav-offset: 110px;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  color: var(--ink);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

p,
li {
  color: var(--muted);
}

.site-shell {
  padding-bottom: 32px;
}

.container,
.section,
.hero {
  width: min(var(--page-max-width), calc(100% - (2 * var(--page-padding))));
  margin-inline: auto;
}

.container {
  padding: 18px 0;
}

section[id],
#top {
  scroll-margin-top: var(--nav-offset);
}

.section {
  margin-top: 42px;
}

.nav-wrap {
  padding-top: 12px;
}

.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.72));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.nav {
  position: sticky;
  top: 12px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: var(--shadow-2);
  transition: all 0.25s ease;
}

.nav.scrolled {
  top: 6px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  font-size: 1rem;
  font-weight: 900;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav.open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav.open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav a.link {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
}

.nav a.link:hover,
.nav a.link.active {
  background: rgba(180, 95, 47, 0.12);
  color: var(--ink);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.bezoek-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 22px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  padding: 10px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: rgba(180, 95, 47, 0.08);
  color: var(--ink);
}

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

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 740px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.18);
}

.hero::before,
.hero-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 520px at 20% 10%, rgba(73, 73, 73, 0), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(37, 37, 37, 0.62));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 400px;
  margin: 34px;
  padding: 30px;
  border-radius: var(--radius);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.521);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.514);
  font-weight: 700;
}

.hero h1 {
  margin-bottom: 10px;
  font-size: clamp(2.9rem, 4vw, 4.3rem);
  line-height: 1.04;
  color: #ffe0bf;
}

.hero h1 span {
  color: #ffe0bf;
}

.hero p {
  color: #ffe0bf;
  font-size: 1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.section-title h2 {
  font-size: clamp(1.9rem, 2.1vw, 2.6rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(180, 95, 47, 0.1);
  color: var(--brand-2);
  font-size: 0.9rem;
  font-weight: 800;
}

.panel,
.contactkaart,
.card,
.empty-state {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-2);
}

.panel,
.contactkaart,
.empty-state {
  padding: 22px;
}

.text-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
}

.text-panel h3,
.contactkaart h3 {
  font-size: 1.35rem;
  line-height: 1.2;
}

.text-panel p,
.contactkaart p,
.panel li {
  font-size: 0.96rem;
  line-height: 1.72;
}

.combined-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: start;
}

.opendeurdag-box {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* tekst links */
.opendeurdag-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* afbeelding rechts */
.opendeurdag-img {
  flex: 1;
  width: 100%;
  max-width: 500px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-2);
}

/* info grid (fix van je typo) */
.opendeurdag-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background-color: #fff;
  padding: 16px;
  border-radius: 12px;
}

.activiteiten-lijst {
  
  display: flex;
  flex-direction: column;
  padding: 10px 16px;
}

/* MOBILE */
@media (max-width: 768px) {
  .opendeurdag-box {
    flex-direction: column;
  }

  .opendeurdag-img {
    max-width: 100%;
    order: 2;
  }

  .opendeurdag-text {
    order: 1;
  }

  .opendeurdag-info {
    grid-template-columns: 1fr;
  }
}





.photo-group--2 {
  display: grid;
  flex-direction: column;
  gap: 16px;
}

.photo-group--2 img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
}

.slideshow {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4 / 3; /* 👈 consistent formaat */
  align-self: right;
}

.slide {
  margin-right: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 👈 vult volledig */
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
}

.knop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 4px;
  padding: 12px 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.2s ease;
}

.knop:hover {
  background: var(--brand-2);
  transform: translateY(-2px);
}

.knop.ghost {
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}



.flowers-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.flowers-left,
.boeketten-side {
  min-width: 0;
}

.flowers-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.flowers-title {
  margin-bottom: 0;
}

.flowers-title h2 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.05;
}

.flowers-info-panel {
  height: 120%;
}

.flowers-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 20px;
  align-items: center;
}

.flowers-intro-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.cards {
  display: grid;
  gap: 18px;
}

.cards--flowers-side {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.cards--flowers-side .card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 12px;
}

.card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.14);
}

.card .thumb {
  width: 75%;
  aspect-ratio: 1 /1;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: #f3eee8;
  

}

.card h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.card p {
  font-size: 0.88rem;
  line-height: 1.45;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(180, 95, 47, 0.2);
  border-radius: 999px;
  background: rgba(180, 95, 47, 0.1);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.cards--flowers-side .knop {
  width: 100%;
  margin-top: auto;
  padding: 10px 12px;
  font-size: 0.85rem;
}

.gallery-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.gallery-track {
  display: flex;
  gap: 16px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-track img {
 border-radius: 16px;
  border: 1px solid var(--line);
}

.flowers-full .fullwidth-panel {

  max-width: 1200px;
  margin: 0 auto;
}

.full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
  padding: 16px;
}

.extra {
  width: 93.5%;
  margin: 0 auto; /* centreert horizontaal */
  background: #fff;
  padding: 22px;
  margin-top: 32px;
  border-radius: 16px;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  min-width: calc((100% - 32px) / 3);
  flex: 0 0 calc((100% - 32px) / 3);
  overflow: hidden;
  scroll-snap-align: start;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  
}

.gallery-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-2);
  transition: 0.2s ease;
}

.gallery-arrow:hover:not(:disabled) {
  transform: scale(1.05);
  background: #fff;
}

.gallery-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.contactblok {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contactformulier {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(74, 42, 30, 0.18);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(180, 95, 47, 0.55);
  box-shadow: 0 0 0 4px rgba(180, 95, 47, 0.12);
}

.help {
  color: rgba(74, 42, 30, 0.75);
  font-size: 13px;
}

.contactrechts iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

@media (max-width: 1100px) {
  :root {
    --page-padding: 30px;
  }

  .combined-panel {
    grid-template-columns: 1fr;
  }

  .flowers-info-grid {
    grid-template-columns: minmax(0, 1fr) 200px;
  }

  .photo-group--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --page-padding: 14px;
    --nav-offset: 96px;
  }

  .container,
  .section,
  .hero {
    width: calc(100% - 28px);
  }

  .nav {
    top: 8px;
    flex-wrap: wrap;
    padding: 12px 14px;
  }

  .brand span {
    font-size: 16px;
  }

  .logo {
    width: 40px;
    height: 40px;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 12px;
  }

  .nav.open .nav-links {
    display: flex;
  }

  .nav a.link {
    width: 100%;
    justify-content: flex-start;
    padding: 12px;
  }

  .nav-item {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .bezoek-dropdown::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    min-width: unset;
    margin-top: 6px;
    border-radius: 12px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: rgba(255, 255, 255, 0.9);
  }

  .bezoek-dropdown.open .dropdown-menu {
    display: flex;
  }

  .dropdown-menu a {
    white-space: normal;
  }

  .hero {
    min-height: 430px;
    margin-top: 14px;
  }

  .hero-content {
    max-width: 100%;
    margin: 18px;
    padding: 20px;
  }

  .hero h1 {
    font-size: clamp(30px, 7vw, 40px);
  }

  .section {
    margin-top: 28px;
  }

  .flowers-layout,
  .contactblok {
    grid-template-columns: 1fr;
  }

  .flowers-info-grid {
    grid-template-columns: 1fr;
  }

  .cards--flowers-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-group img {
    aspect-ratio: 4 / 3;
  }

  .gallery-track {
    gap: 12px;
  }

  .gallery-card {
    min-width: 100%;
    flex-basis: 100%;
  }

  .gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
    flex-shrink: 0;
  }

  .contactrechts iframe {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .hero-content {
    margin: 10px;
    padding: 18px;
  }

  .hero-actions {
    margin-top: 200px;
    flex-direction: column;
    align-items: stretch;
  }

  .knop,
  .knop.ghost {
    width: 100%;
  }

  .text-panel h3,
  .contactkaart h3 {
    font-size: 1.2rem;
    
  }

  .text-panel p,
  .contactkaart p {
    font-size: 14px;
    line-height: 1.6;
  }

  

  .photo-group--2,
  .photo-group--3,
  .cards--flowers-side {
    grid-template-columns: 1fr;
  }

}
#groepen .photo-group.overlap {
  position: relative;
  height: 100%;
  min-height: 320px;
}

#groepen .main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

#groepen .overlay-img {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: 16px;
  border: 6px solid #fff; /* 👈 mooi randje */
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}