@charset "UTF-8";
body {
  margin: 0;
}

/* =============== MOBILE FIRST =============== */
.header {
  position: relative;
  height: 60vh;
  min-height: 450px;
  width: 100%;
  background: url("../../images/IMG_0476.JPG") center center/cover no-repeat;
  filter: grayscale(1);
  font-size: 1.4rem;
  overflow: hidden;
}

.header-text {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 1.5rem;
  color: #fff;
  text-align: center;
}

.header-text-heading {
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 400;
  display: inline-block;
  letter-spacing: 0.18rem;
  font-size: 1.25rem;
}

.header-logo {
  margin-top: 30px;
  width: 110px;
}

.header-logo img {
  max-width: 100%;
  height: auto;
}

.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  background: transparent;
  z-index: 1000;
  backdrop-filter: none;
  box-shadow: none;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.header-nav .navbar-collapse {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 120px;
  gap: 28px;
  z-index: 2000;
}

.menu-item {
  padding-bottom: 20px;
}

.header-nav .navbar-collapse.show {
  display: flex !important;
}

.header-nav .navbar-nav a {
  color: #111;
  font-size: 1.8rem;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.4rem 0 0.4rem;
  position: relative;
  text-decoration: none;
}

.header-nav .navbar-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #111;
  transform: translateX(-50%);
  opacity: 0;
  transition: width 0.25s ease, opacity 0.25s ease;
}

.header-nav .navbar-nav .current-menu-item > a::after,
.header-nav .navbar-nav .current_page_item > a::after,
.header-nav .navbar-nav .current-menu-ancestor > a::after {
  width: 60%;
  opacity: 1;
}

.navbar-toggler {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.85) !important;
  border-radius: 10px;
  border: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2005;
  padding: 0;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none !important;
  box-shadow: none !important;
}

.navbar-dark .navbar-toggler-icon,
.navbar-dark .navbar-toggler-icon::before,
.navbar-dark .navbar-toggler-icon::after {
  background: #fff;
  width: 24px;
  height: 2px;
  transition: 0.3s;
}

.navbar-dark .navbar-toggler-icon {
  position: relative;
}

.navbar-dark .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
}

.navbar-dark .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* =============== DESKTOP OVERRIDES =============== */
@media (min-width: 992px) {
  .header {
    height: 850px;
    min-height: 0;
  }
  .header-text {
    top: 60%;
  }
  .header-text-heading {
    letter-spacing: 0.35rem;
  }
  .header-nav {
    padding: 34px 0 22px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.45), transparent);
    backdrop-filter: blur(4px);
    box-shadow: none;
  }
  .header-nav .navbar-collapse {
    position: static !important;
    background: transparent;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding-top: 0;
    gap: 0;
  }
  .header-nav .navbar-nav a {
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0 18px 4px;
  }
  .header-nav .navbar-nav a::after {
    bottom: -6px;
    background-color: #fff;
  }
  .header-nav .navbar-nav a:hover::after {
    width: 60%;
    opacity: 0.9;
  }
  .header-nav.nav-scrolled {
    padding: 25px 0;
    background: rgb(101, 53, 36);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
  }
  .header-nav.nav-scrolled .navbar-nav a {
    font-size: 0.88rem;
    letter-spacing: 0.18em;
  }
  .navbar-toggler {
    display: none;
  }
}
.main-timeline-2 {
  position: relative;
}
.main-timeline-2 .card {
  border: none;
}
.main-timeline-2::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #853626;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  z-index: 1;
}

.card-img-bottom {
  filter: grayscale(1);
}

.timeline-2 {
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-2::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -11px;
  background-color: #853626;
  top: 15px;
  border-radius: 50%;
  z-index: 2;
}

.left-2 {
  padding: 0 40px 20px 0;
  left: 0;
}

.right-2 {
  padding: 0 0 20px 40px;
  left: 50%;
}

.left-2::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
  z-index: 2;
}

.right-2::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
  z-index: 2;
}

.right-2::after {
  left: -14px;
}

.timeline-2 .card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

@media (min-width: 768px) {
  .timeline-2.left-2 .card {
    transform: translateX(-60px);
  }
  .timeline-2.right-2 .card {
    transform: translateX(60px);
  }
}
.timeline-2.in-view .card {
  opacity: 1;
  transform: translate(0, 0);
}

.timeline-2.in-view:nth-child(1) .card {
  transition-delay: 0s;
}

.timeline-2.in-view:nth-child(2) .card {
  transition-delay: 0.15s;
}

.timeline-2.in-view:nth-child(3) .card {
  transition-delay: 0.3s;
}

@media screen and (max-width: 600px) {
  .timeline-2 {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    box-sizing: border-box; /* zorgt dat padding in die 100% valt */
  }
  .main-timeline-2::after {
    left: 31px;
  }
  .timeline-2::before {
    left: 60px;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }
  .left-2::after,
  .right-2::after {
    left: 18px;
  }
  .left-2::before {
    right: auto;
  }
  .right-2 {
    left: 0;
  }
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.02);
  padding: 24px;
  backdrop-filter: blur(6px);
  color: #853626;
}

.unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  min-width: 110px;
  text-align: center;
}

.number {
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--white);
}

.label {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 700px) {
  .countdown {
    gap: 10px;
    padding: 14px;
  }
  .unit {
    min-width: 60px;
    padding: 10px;
  }
  .number {
    font-size: 36px;
  }
  .label {
    font-size: 11px;
  }
}
/* Small caption */
.meta {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.ceremonies {
  background-color: #624E31;
}

.img-box {
  display: flex;
  justify-content: center;
}
.img-box img {
  width: 180px;
  height: 180px;
  object-fit: cover;
}

.cm-section {
  background-color: #8b4b33; /* warm rood/bruin */
  color: #fff;
  padding: 80px 40px;
  text-align: center;
}

.cm-section a {
  color: #fff;
  text-decoration: underline;
}

.cm-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem); /* schaalt mee met schermbreedte */
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

/* Specifiek voor mobiel */
@media (max-width: 600px) {
  .cm-header h2 {
    font-size: 1.5rem; /* kleiner op mobiel */
    letter-spacing: 0.08em; /* minder ruimte tussen letters */
    line-height: 1.2;
    word-break: break-word; /* als het moet, mag hij afbreken */
  }
}
.cm-header p {
  font-style: italic;
  font-size: clamp(1.1rem, 2.3vw, 1.4rem); /* schaalt mee met titel */
  margin: 0 0 40px;
  opacity: 0.95; /* subtieler t.o.v. titel */
}

/* Mobiel */
@media (max-width: 600px) {
  .cm-header p {
    font-size: 1rem; /* kleiner op mobiel */
    margin-bottom: 30px; /* iets compacter */
  }
}
.cm-polaroids {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Polaroid cards */
.polaroid {
  background: #f9f9f9;
  padding: 14px 14px 26px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
  max-width: 260px;
  transform-origin: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.polaroid img {
  width: 100%;
  aspect-ratio: 1/1; /* maakt elke foto vierkant */
  object-fit: cover; /* snijdt netjes bij zonder vervormen */
  display: block;
}

.polaroid figcaption {
  margin-top: 10px;
  font-family: "Shadows Into Light", cursive;
  font-size: 1.4rem;
  color: #444;
}

/* lichte “willekeurige” rotatie zoals voorbeeld */
.polaroid-left {
  transform: rotate(-5deg);
}

.polaroid-right {
  transform: rotate(4deg);
}

/* hover: iets rechter en dichterbij */
.polaroid:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
}

.cm-contact {
  font-size: 1rem;
  line-height: 1.6;
}

/* Mobiel / small screens */
@media (max-width: 768px) {
  .cm-section {
    padding: 60px 20px;
  }
  .cm-polaroids {
    gap: 30px;
  }
  .polaroid-left,
  .polaroid-right {
    transform: rotate(0deg); /* recht op mobiel voor leesbaarheid */
  }
}
body {
  font-family: "Bodoni Moda", serif;
  font-size: 1rem;
}

.footer-title {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  transition: 0.2s;
}

.footer-link:hover {
  text-decoration: underline;
  opacity: 0.85;
}

.footer-logo {
  max-width: 200px;
}

.rsvp-section {
  background: #f7f0ec;
}

.rsvp-title {
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.rsvp-subtitle {
  font-style: italic;
  font-size: 1.1rem;
  opacity: 0.8;
}

.rsvp-btn {
  background: #853626;
  border: none;
  padding: 0.75rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rsvp-btn:hover {
  background: #6b2b1b;
}

.dresscode-hero {
  text-align: center;
  padding: 120px 0 60px;
}

.dress-title {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.dress-sub {
  margin-top: 10px;
  font-size: 1.05rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.dress-moodboard img {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 0 auto 60px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.dress-text {
  text-align: center;
  font-size: 1.25rem;
  max-width: 720px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.dress-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 70px;
}

.dress-swatches .swatch {
  width: 52px;
  height: 52px;
  border-radius: 6px;
}

.dress-ideas {
  text-align: center;
  margin-bottom: 80px;
}

.dress-ideas h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 30px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.dress-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dress-grid figure {
  margin: 0;
}

.dress-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

/* mobiel */
@media (max-width: 767.98px) {
  .dresscode-hero {
    padding-top: 90px;
  }
  .dress-title {
    font-size: 2.4rem;
    letter-spacing: 0.15em;
  }
  .dress-sub {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
  }
  .dress-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dress-grid img {
    height: 180px;
  }
}
.dress-pinterest {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.dress-pinterest iframe {
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.program-section {
  background: #f8f5f2;
}

.program-title {
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.program-subtitle {
  font-size: 1rem;
  opacity: 0.7;
}

.program-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

/* ---------------------------------
   ITEMS
----------------------------------- */
.program-item {
  display: flex;
  gap: 24px;
  position: relative;
  padding: 28px 22px;
  transition: 0.25s ease;
}

/* even items licht tintje */
.program-item:nth-child(even) {
  background: rgba(133, 54, 38, 0.05); /* warm beige transparant */
  border-radius: 8px;
}

/* subtiele hover */
.program-item:hover {
  background: rgba(133, 54, 38, 0.09);
}

/* ---------------------------------
   MARKERS (dots + line)
----------------------------------- */
.program-marker {
  width: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.program-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #853626;
  border: 2px solid #f8f5f2;
  box-shadow: 0 0 0 1px #853626;
  margin-top: 4px;
}

.program-dot-muted {
  background: #ccc;
  box-shadow: 0 0 0 1px #ccc;
}

.program-line {
  flex: 1;
  width: 1px;
  background: rgba(133, 54, 38, 0.35);
  margin-top: 4px;
}

/* ---------------------------------
   CONTENT
----------------------------------- */
.program-content {
  flex: 1;
}

.program-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}

.program-label {
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  font-size: 0.82rem;
  color: #853626;
  font-weight: 600;
}

.program-label-muted {
  color: #b9b4ad;
}

.program-time {
  font-size: 0.85rem;
  font-weight: 500;
  color: #c27a3b;
}

.program-time-muted {
  color: #b9b4ad;
}

.program-icon {
  margin-right: 0.35rem;
  font-size: 0.9rem;
}

.program-text {
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.55;
}

.program-text-muted {
  color: #a8a29a;
}

/* ---------------------------------
   MOBILE
----------------------------------- */
@media (max-width: 575.98px) {
  .program-timeline {
    padding-left: 8px;
    padding-right: 8px;
  }
  .program-item {
    gap: 16px;
    padding: 22px 18px;
  }
  .program-title {
    letter-spacing: 0.18rem;
  }
}
.faq-section {
  background: #fbf9f6;
}

.faq-title {
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.faq-subtitle {
  font-size: 1rem;
  opacity: 0.7;
}

.faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: transparent;
}

.faq-accordion .accordion-button {
  background: transparent;
  padding: 1.1rem 0;
  box-shadow: none;
  border-radius: 0 !important;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 18px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: #853626;
}

.faq-accordion .accordion-button::after {
  content: "";
  margin-left: auto;
  width: 12px;
  height: 12px;
  border-right: 1px solid #444;
  border-bottom: 1px solid #444;
  transform: rotate(45deg);
  background-image: none;
}

.faq-accordion .accordion-button.collapsed::after {
  transform: rotate(-45deg);
}

.faq-q-number {
  font-size: 0.75rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: #b9b4ad;
  flex-shrink: 0;
}

.faq-q-text {
  font-weight: 500;
}

.faq-accordion .accordion-body {
  padding: 0 0 1.1rem 2.6rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-accordion .accordion-body a {
  color: #853626;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.faq-accordion .accordion-body a:hover {
  opacity: 0.8;
}

@media (max-width: 575.98px) {
  .faq-accordion .accordion-button {
    align-items: flex-start;
  }
  .faq-accordion .accordion-body {
    padding-left: 2.2rem;
  }
  .faq-title {
    letter-spacing: 0.18rem;
  }
}
.contact-section {
  background: #fbf9f6;
}

.contact-title {
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.contact-subtitle {
  font-size: 1rem;
  opacity: 0.7;
}

.contact-form .form-label {
  font-size: 0.9rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  color: #7c3a23;
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 8px;
  border: 1px solid #e1ddd7;
  font-size: 0.95rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #c27a3b;
  box-shadow: 0 0 0 0.15rem rgba(194, 122, 59, 0.25);
}

.rsvp-btn {
  border-radius: 999px;
  border: none;
  background: #853626;
  text-transform: uppercase;
  letter-spacing: 0.16rem;
  font-size: 0.78rem;
  padding: 0.9rem 1.2rem;
}

.rsvp-btn:hover {
  background: #6c2b1e;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: none; /* standaard rode rand weg */
  color: #fff; /* tekst kleur */
  font-size: 1.2rem;
  background: #65a36b;
  padding: 15px 20px;
  border-radius: 6px;
  text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output {
  background: #ffdddd;
  color: #c00;
  border-radius: 6px;
}

.thankyou-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem 5rem;
  background: #ffffff;
}

.thankyou-inner {
  max-width: 560px;
  text-align: center;
}

.thankyou-label {
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  font-size: 0.85rem;
  margin: 0 0 1rem;
  color: #777;
}

.thankyou-title {
  font-weight: 400;
  font-size: 2.2rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.thankyou-text {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 0.75rem;
}

.thankyou-divider {
  width: 70px;
  height: 1px;
  margin: 2.5rem auto 2rem;
  background: #111;
  opacity: 0.35;
}

.thankyou-link {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.35rem;
}

/* subtiele underline in jouw stijl */
.thankyou-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 55%;
  height: 1px;
  background: #111;
  transform: translateX(-50%);
  transition: width 0.25s ease, opacity 0.25s ease;
  opacity: 0.7;
}

.thankyou-link:hover::after {
  width: 80%;
  opacity: 1;
}

/* Desktop kleine finetuning */
@media (min-width: 992px) {
  .thankyou-page {
    padding: 2rem 1.5rem 2rem;
  }
  .thankyou-title {
    font-size: 2.6rem;
    letter-spacing: 0.16rem;
  }
  .thankyou-text {
    font-size: 1.05rem;
  }
}