/* =============================================
   RESERVEREN PAGE
   ============================================= */

.reserveren {
  background-color: var(--warm-white);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}

.reserveren-inner {
  max-width: 580px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

/* Eyebrow row */
.res-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  justify-content: center;
}

.res-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
}

.res-eyebrow-row .res-line:first-child {
  background: linear-gradient(to right, transparent, var(--red-accent));
}

.res-eyebrow-row .res-line:last-child {
  background: linear-gradient(to left, transparent, var(--red-accent));
}

/* Title */
.res-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.res-rule {
  width: 50px;
  height: 2px;
  background-color: var(--red-accent);
  border-radius: 2px;
}

/* Intro tekst */
.res-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 440px;
}

/* Divider */
.res-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 320px;
}

.res-divider-line {
  flex: 1;
  height: 1px;
  background-color: rgba(30,58,47,0.12);
}

.res-divider-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--red-accent);
  flex-shrink: 0;
}

/* Contact blok */
.res-contact {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  border: 1px solid rgba(30,58,47,0.1);
  background-color: var(--off-white);
}

.res-contact-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 2rem 1.5rem;
  transition: background 0.25s ease;
  text-decoration: none;
}

.res-contact-item:hover {
  background-color: var(--green-deep);
}

.res-contact-item:hover .res-contact-label,
.res-contact-item:hover .res-contact-value {
  color: var(--off-white);
}

.res-contact-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-accent);
  transition: color 0.25s ease;
}

.res-contact-value {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.03em;
  transition: color 0.25s ease;
}

.res-contact-sep {
  width: 1px;
  background-color: rgba(30,58,47,0.1);
  flex-shrink: 0;
}

/* Info onderaan */
.res-info {
  display: flex;
  gap: 3rem;
  justify-content: center;
}

.res-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}

.res-info-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.res-info-value {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--green-deep);
  font-weight: 500;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 600px) {
  .reserveren { padding: 4rem 1.25rem; }

  .res-contact {
    flex-direction: column;
  }

  .res-contact-sep {
    width: 100%;
    height: 1px;
  }

  .res-info {
    flex-direction: column;
    gap: 1.25rem;
  }
}
