/*
Theme Name: Camping de Zeester
Version: 2.0.0
Description: Geoptimaliseerd WordPress theme met ACF
Author: Custom
*/

:root {
  --primary: #1e6376;
  --secondary: #f0cd5d;
  --accent: #42bfb8;
  --tertiary: #ea9741;
  --light: #b8e4ed;
  /* Spacing tokens */
  --page-padding: 1rem; /* px-4 */
  --header-horizontal: 2rem; /* header left/right */
  --space-sm: 0.75rem;
  --space-md: 1.5rem;
  --section-vertical: 5rem; /* py-20 */
  --section-vertical-mobile: 3rem;
  --space-lg: 2rem;
}

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

body {
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.6;
  color: #333;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

.section {
  padding: var(--section-vertical) 0;
}

@media (max-width: 768px) {
  .section {
    padding: var(--section-vertical-mobile) 0;
  }
}

/* Header & Hero customizations */
:root {
  --header-height: 112px;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
}

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}
#header.scrolled {
  /* Alleen eventueel extra effecten zoals shadow of border toevoegen */
}

.header-container {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 var(--header-horizontal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 96px;
  width: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  height: 96px;
  flex-shrink: 0;
}

.header-logo img {
  height: 96px;
  width: auto;
  object-fit: contain;
}

.header-logo .site-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.header-navigation {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: white;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.312px;
  transition: opacity 0.3s ease;
}

.nav-menu a:hover {
  opacity: 0.8;
}

.nav-menu li.current-menu-item a::after,
.nav-menu li.current_page_item a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--secondary);
}

/* Global button styling - matches Figma design */
.btn,
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  background: #f0cd5d;
  color: #1e6376;
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  margin-top: auto;
}

.card-button {
  width: -webkit-fill-available;
}

.btn:hover,
.contact-button:hover {
  background: #ea9741;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(1.05);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  /* .header-container {
    padding: 0 1.5rem;
  } */

  .nav-menu {
    gap: 1.5rem;
  }

  .header-navigation {
    position: fixed;
    top: var(--header-height, 64px); /* sluit aan op header */
    left: 0;
    right: 0;
    z-index: 49;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0)
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
      background 0.3s,
      backdrop-filter 0.3s;
    border-radius: 0 0 1.5rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    /* Verwijder eventuele andere background! */
  }
  .header-navigation[style*="background"] {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0)
    ) !important;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 80px;
  }

  .header-container {
    height: 48px;
  }

  .header-logo {
    height: 64px;
  }

  .header-logo img {
    height: 64px;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 8px;
    border-radius: 8px;
  }

  /* Add border to header when menu is open on mobile */
  #header.menu-open {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  /* Mobile navigation: dropdown under header - hidden by default */
  .header-navigation {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
    padding-left: var(--page-padding);
    padding-right: var(--page-padding);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0)
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 49;
  }

  /* Show menu when active */
  .header-navigation.active {
    display: flex;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0)
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    margin-bottom: var(--space-md);
  }

  .nav-menu li {
    width: 100%;
    border-bottom: none;
  }

  .nav-menu a {
    display: block;
    padding: 0.5rem 0;
    width: 100%;
    color: white;
    font-weight: 600;
    transition: color 0.3s duration-300;
  }
  .nav-menu a:hover {
    color: var(--secondary);
  }

  .nav-menu li.current-menu-item a::after,
  .nav-menu li.current_page_item a::after {
    display: none;
  }

  .btn,
  .contact-button {
    width: 100%;
    margin-top: var(--space-md);
    padding: 12px 24px;
  }

  /* Mobile CTA override to match design */
  .header-navigation .contact-button {
    background: #f0cd5d;
    color: #1e6376;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  .header-navigation .contact-button:hover {
    background: #ea9741;
    color: #1e6376;
  }
}

/* Hero: non-sticky, full-viewport section */
#hero {
  position: relative;
  min-height: 70vh;
  height: 100vh;
  max-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

#hero .hero-bg {
  position: absolute;
  inset: 0;
}

#hero .hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 0 1rem;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
}

/* Hero inner styles */
#hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

#hero p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Hero buttons inherit global button styling */

/* Hero background & overlay */
#hero .hero-bg {
  position: absolute;
  inset: 0;
}

#hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.5)
  );
}

/* Plattegrond modal */
#plattegrond-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  animation: fadeIn 0.3s;
}

#plattegrond-modal .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

#plattegrond-modal .modal-window {
  position: relative;
  width: 90vw;
  max-width: 1000px;
  height: 80vh;
  margin: 5vh auto;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

#plattegrond-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  background: var(--primary);
  color: white;
  flex-shrink: 0;
  gap: 1rem;
}

#plattegrond-modal .zoom-controls {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

#plattegrond-modal .zoom-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

#plattegrond-modal .zoom-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

#plattegrond-modal .zoom-level {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  min-width: 45px;
  text-align: center;
}

#plattegrond-modal .modal-close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background 0.3s;
}

#plattegrond-modal .modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

#plattegrond-modal .modal-body {
  flex: 1;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #f5f5f5;
}

#plattegrond-modal .modal-body img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform-origin: center;
  cursor: grab;
  user-select: none;
  pointer-events: auto;
}

#plattegrond-modal .modal-body img:active {
  cursor: grabbing;
}

@media (max-width: 768px) {
  #plattegrond-modal .modal-window {
    width: 95vw;
    height: 85vh;
    margin: 7.5vh auto;
  }

  #plattegrond-modal .modal-header {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  #plattegrond-modal .zoom-controls {
    order: 3;
    width: 100%;
    margin-top: 0.5rem;
  }

  #plattegrond-modal .zoom-btn {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Tarieven Section */
.tarieven-section {
  background: linear-gradient(to bottom, white, rgba(184, 228, 237, 0.2));
}

.tarieven-container {
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem !important;
  font-weight: bold;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1rem;
}

.title-underline {
  width: 100px;
  height: 4px;
  background: var(--secondary);
  margin: 0 auto 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
}

/* Tab Buttons */
.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  background: white;
  color: var(--primary);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tab-btn:hover {
  background: rgba(240, 205, 93, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.tab-btn.active {
  background: var(--secondary);
  color: var(--primary);
}

.tab-btn.active:hover {
  transform: scale(1.05) translateY(-2px);
}

/* Tab Content */
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* Pricing Card */
.pricing-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Special Card Header */
.special-cards-wrapper {
  margin-bottom: 0;
}

.special-card-header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.special-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.special-card-text h4 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  line-height: 1.2;
}

.special-card-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

/* Pricing Intro */
.pricing-intro {
  padding: var(--space-lg);
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
  line-height: 1.6;
}

.pricing-intro p {
  margin: 0;
}

/* Pricing Table */
.pricing-table {
  padding: 0 2rem;
}

.pricing-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-row {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-label {
  color: #374151;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.pricing-value {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  margin-left: 1rem;
}

/* Highlight Section (Bordered Card) */
.highlight-section {
  margin: var(--space-md);
  padding: var(--space-md);
  border: 3px solid var(--secondary);
  border-radius: 12px;
  background: #fffbf0;
}

.highlight-title {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.highlight-subtitle {
  color: #6b7280;
  font-size: 0.9rem;
  font-style: italic;
  margin: 0 0 1.25rem 0;
}

.highlight-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlight-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.highlight-label {
  color: #374151;
  font-size: 0.95rem;
}

.highlight-value {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

/* Alert Boxes */
.alerts-section {
  padding: 0 var(--page-padding) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.alert-box {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid;
}

.alert-tip {
  background: #e0f2fe;
  border-left-color: #0ea5e9;
}

.alert-notice {
  background: #fee2e2;
  border-left-color: #ef4444;
}

.alert-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2px;
}

.alert-tip .alert-icon {
  color: #0ea5e9;
}

.alert-notice .alert-icon {
  color: #ef4444;
}

.alert-content {
  flex: 1;
}

.alert-heading {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.alert-content p {
  margin: 0;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .special-card-header {
    padding: 1.25rem 1.5rem;
  }

  .special-card-text h4 {
    font-size: 1.25rem;
  }

  .pricing-table,
  .pricing-intro {
    padding: var(--space-md);
  }

  .highlight-section {
    margin: 1.5rem;
  }

  .alerts-section {
    padding: 0 1.5rem 1.5rem;
  }

  .pricing-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .pricing-value {
    margin-left: 0;
  }
}

/* === SEMANTIC UTILITY CLASSES === */
/* Section Title Pattern */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1rem;
}

/* Decorative Divider */
.section-divider {
  width: 100px;
  height: 4px;
  background: var(--secondary);
  margin: 0 auto 1rem;
}

/* Section Subtitle */
.section-subtitle {
  font-size: 1.25rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
}

/* Section description text */
.section-desc {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #333;
}

/* Grid: auto-fit cards */
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.grid-auto-300 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}

/* Card */
.card {
  background: white;
  border-radius: 1rem;
  padding: var(--space-lg);
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.card-no-center {
  background: white;
  border-radius: 1rem;
  padding: var(--space-lg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.card-hover {
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Icon Circle (large, 80px) */
.icon-circle {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.icon-circle-secondary {
  background: var(--secondary);
}

.icon-circle-accent {
  background: var(--accent);
}

.icon-circle-tertiary {
  background: var(--secondary);
}

/* Icon Circle (small, 48px) */
.icon-circle-sm {
  width: 48px;
  height: 48px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 20px;
}

.icon-circle-sm-secondary {
  background: var(--secondary);
}
.icon-circle-sm-accent {
  background: var(--accent);
}
.icon-circle-sm-primary {
  background: var(--primary);
}

/* Contact Item */
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-label {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

/* Icon Box for Accommodations (large image placeholder) */
.icon-box {
  min-height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  color: white;
  font-size: 64px;
}

/* USP (Unique Selling Points) */
.usp-title {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.usp-desc {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
}

/* Section-specific heading sizes */
#accommodations .usp-title {
  font-size: 1.5rem;
}

.section.bg-gradient-facilities .usp-title {
  font-size: 1.25rem;
}

/* Facility Cards */
.facility-card {
  background: linear-gradient(
    to bottom right,
    rgba(184, 228, 237, 0.3),
    rgba(240, 205, 93, 0.2)
  );
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.facility-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.facility-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  font-size: 2rem;
}

.facility-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.facility-description {
  color: #4b5563;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}

/* Section backgrounds gradients */
.bg-gradient-facilities {
  background: white;
}

.bg-gradient-accommodations {
  position: relative;
  padding: var(--section-vertical) var(--page-padding);
  background: linear-gradient(to bottom, rgba(240, 205, 93, 0.1), white);
}

.bg-gradient-surroundings {
  background: linear-gradient(to bottom, rgba(184, 228, 237, 0.2), white);
}

.bg-gradient-tarieven {
  padding: var(--section-vertical) var(--page-padding);
  background: linear-gradient(to bottom, white, rgba(255, 225, 225, 0));
}

.bg-gradient-contact {
  background: linear-gradient(to bottom, white, var(--primary));
}

.bg-gradient-contact-map {
  background: linear-gradient(
    135deg,
    rgba(184, 228, 237, 0.4),
    rgba(240, 205, 93, 0.3)
  );
}

/* Flex Patterns */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Footer */
footer {
  background: var(--primary);
  color: white;
  padding: 3rem 0 1rem;
}

footer h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 400;
  color: white;
}

footer p {
  font-size: 1rem;
  font-weight: 400;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-divider {
  border-top: 1px solid var(--accent);
  padding-top: 1rem;
  text-align: center;
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition:
    transform 0.3s,
    background 0.3s;
}

.footer-social a:hover {
  transform: translateY(-4px);
  background: var(--accent);
  color: white;
}

.footer-contact-desc {
  color: var(--accent);
  margin-top: 1rem;
}

/* About Section Negative Margin */
#about {
  position: relative;
  z-index: 2;
  margin-top: -190px;
  padding: var(--section-vertical) var(--page-padding);
  background: linear-gradient(
    to bottom,
    transparent,
    white,
    rgba(184, 228, 237, 0.2)
  );
}

/* Accommodation Icon Box Sizes */
.accom-color-64 {
  font-size: 64px;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.feature-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: #666;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
}

/* Hero Section Headings */
#hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

#hero p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  font-weight: 400;
}

/* Modal Image */
.modal-body img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* Main Content (single post/page) */
main.page-main {
  padding: 8rem 0 4rem;
}

main.page-main h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
  font-weight: 700;
}

/* Generic Heading Styling */
h1 {
  font-weight: 700;
  line-height: 1.2;
  font-size: 3.5rem;
}

h2 {
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.5rem;
}

h3 {
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.5rem;
}

h4 {
  font-weight: 700;
  line-height: 1.2;
}

/* Utility margins and padding */
.margin-bottom-1 {
  margin-bottom: 1rem;
}
.margin-bottom-1-5 {
  margin-bottom: 1.5rem;
}
.margin-2rem {
  margin: 2rem;
}
.margin-auto {
  margin: 0 auto;
}
.gap-1 {
  gap: 1rem;
}
.gap-1-5 {
  gap: 1.5rem;
}
.gap-2 {
  gap: 2rem;
}
.gap-3 {
  gap: 3rem;
}
.flex-1 {
  flex: 1;
}
.flex-wrap {
  flex-wrap: wrap;
}
.max-width-800 {
  max-width: 800px;
}
.text-center-alt {
  text-align: center;
}

/* Section h2/h3 for Other Sections */
.section h2,
.section h3 {
  color: var(--primary);
  font-weight: 700;
}

.section h2 {
  font-size: 1.75rem;
}

.section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Surroundings Section */
.surroundings-item {
  display: grid;
  gap: 3rem;
}

.surroundings-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.surroundings-row.alt-order-1 > div:first-child {
  order: 2;
}

.surroundings-row.alt-order-1 > div:last-child {
  order: 1;
}

.surroundings-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  height: 275px;
}

.surroundings-content h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.surroundings-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 400;
}

.surroundings-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--primary);
}

/* Showcase image */
.showcase-img {
  width: 100%;
  height: auto;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: 1.5rem;
  overflow: hidden;
}

/* Card variations */
.card-showcase {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* About section styles */
.about-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 2rem auto;
}

/* Map region text styling */
.map-region {
  color: #666;
  margin-bottom: 1.5rem;
}

/* Flex/Padding utilities */
.flex-col-padded {
  display: flex;
  flex-direction: column;
  padding: var(--space-md);
  padding-bottom: 0;
}

.card-footer {
  padding: 1.5rem;
}

/* Special Pricing Card */
.special-card {
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.special-card-header {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 0;
}

.special-card-icon {
  flex-shrink: 0;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.special-card-text h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
}

.special-card-text p {
  margin: 0;
  font-size: 1rem;
}

/* Special Card Color Variants */
.special-card.card-blue {
  background: var(--primary);
}

.special-card.card-blue .special-card-icon {
  color: white;
}

.special-card.card-blue .special-card-text h4 {
  color: white;
}

.special-card.card-blue .special-card-text p {
  color: white;
}

.special-card.card-light {
  background: var(--accent);
}

.special-card.card-light .special-card-icon {
  color: white;
}

.special-card.card-light .special-card-text h4 {
  color: white;
}

.special-card.card-light .special-card-text p {
  color: white;
}

.special-card.card-orange {
  background: var(--secondary);
}

.special-card.card-orange .special-card-icon {
  color: white;
}

.special-card.card-orange .special-card-text h4 {
  color: white;
}

.special-card.card-orange .special-card-text p {
  color: white;
}

/* Notice Text (WYSIWYG) */
.notice-text {
  padding: 0 2rem;
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.6;
}

/* Pricing Remarks */
.pricing-remark {
  font-size: 0.875rem;
  font-style: italic;
  color: #666;
  padding: 0 1rem 0.75rem 1rem;
  display: block;
}
