﻿/* Tipizzz Twente — styles.css (High AAA Quality Upgrade)
   Professional, vibrant, accessible.
*/

:root {
  /* Core Palette */
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: #f7f8fb;        /* softer neutral, less blue */
  --text: #1a202c;
  --text-light: #4a5568;
  --text-dark: #1a202c;          /* was undefined (used at .included-item) */
  --border: #e6e8ee;             /* softer hairline */
  --border-strong: #d6d9e2;      /* inputs/dividers that need presence */

  /* Brand Colors (keep the joy) */
  --brand-primary: #ff5fa2; /* Pink */
  --brand-secondary: #7b6dff; /* Lilac */
  --brand-dark: #2d3748;

  --accent-success: #22c55e;
  --accent-sun: #f59e0b;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, var(--brand-primary) 0%, #ff80b5 100%);
  --gradient-secondary: linear-gradient(135deg, var(--brand-secondary) 0%, #9f7aea 100%);
  --gradient-hero: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,1) 100%);

  /* Shadows — lighter, crisper, lilac-tinted */
  --shadow-sm: 0 1px 2px rgba(45,55,72,.04), 0 2px 6px rgba(123,109,255,.06);
  --shadow-md: 0 4px 10px -2px rgba(45,55,72,.06), 0 8px 20px -4px rgba(123,109,255,.08);
  --shadow-lg: 0 8px 16px -4px rgba(45,55,72,.08), 0 16px 32px -8px rgba(123,109,255,.10);
  --shadow-brand: 0 8px 20px -6px rgba(255,95,162,.35);

  /* Radius */
  --r-xs: 10px;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 9999px;

  /* Spacing scale — 4px base */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --section-y: clamp(40px, 7vw, 80px);   /* fluid section rhythm */

  /* Layout */
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 24px);

  /* Typography - 'Outfit' is loaded in HTML (weights 400;500;700;800) */
  --font-main: 'Outfit', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-head: var(--font-main);

  /* Type scale */
  --h1: clamp(2rem, 4.5vw, 3rem);
  --h2: clamp(1.75rem, 3vw, 2.25rem);
  --h3: clamp(1.25rem, 2vw, 1.5rem);
  --h4: 1.25rem;
  --text-lead: clamp(1.05rem, 1.5vw, 1.2rem);
  --text-base: 1rem;
  --text-sm: 0.875rem;
  --text-xs: 0.75rem;

  /* Line-heights */
  --lh-tight: 1.15;     /* headings */
  --lh-body: 1.55;      /* body / answers */

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 0.15s;
  --dur-base: 0.22s;
  --dur-slow: 0.3s;

  /* Links — darker lilac that passes WCAG AA on white (~5.3:1) */
  --link: #5a4cff;

  /* Focus Ring — solid, white-spaced, visible (>=3:1 non-text contrast) */
  --focus: 0 0 0 2px #fff, 0 0 0 4px #d6246e;
  --focus-lilac: 0 0 0 2px #fff, 0 0 0 4px #5a4cff;

  /* Decorative — warm-premium visual layer */
  --gradient-text: linear-gradient(120deg, #be185d 0%, #6d28d9 100%);
  --gradient-band: linear-gradient(180deg, #fdf4f9 0%, #f3f1ff 100%);
  --gradient-icon: linear-gradient(135deg, #f43f8e 0%, #7c5cff 100%);
  --glow-pink: rgba(255, 95, 162, 0.16);
  --glow-lilac: rgba(123, 109, 255, 0.16);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  line-height: var(--lh-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Soft atmospheric glow behind the whole site (shows through transparent sections) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(38vw 38vw at 92% -6%, var(--glow-pink), transparent 62%),
    radial-gradient(34vw 34vw at -8% 22%, var(--glow-lilac), transparent 60%),
    radial-gradient(42vw 42vw at 82% 98%, var(--glow-lilac), transparent 64%);
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--link);
  text-decoration: none;
  font-weight: inherit;
  transition: color var(--dur-fast) var(--ease);
}

a:hover { color: var(--brand-primary); }
a:focus-visible { outline: none; box-shadow: var(--focus); border-radius: 4px; }

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  max-width: 100%;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  transform: translateY(-200%);
  background: var(--brand-dark);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--r-sm);
  z-index: 1000;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); outline: none; box-shadow: var(--focus); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: var(--r-pill); /* Modern Pill Shape */
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), filter var(--dur-base) var(--ease);
  border: none;
  cursor: pointer;
  text-decoration: none !important;
}

.btn:active { transform: scale(0.97); }

.btn:focus-visible { outline: none; box-shadow: var(--focus); }
.btn-primary:focus-visible { box-shadow: var(--focus), var(--shadow-brand); }

.btn-primary {
  background: var(--gradient-brand);
  color: #ffffff;
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  filter: brightness(110%);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(255, 95, 162, 0.5);
  color: #fff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--brand-secondary);
  border: 2px solid var(--brand-secondary);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--brand-secondary);
  color: #ffffff;
  box-shadow: 0 10px 25px -5px rgba(123, 109, 255, 0.3);
  transform: translateY(-2px);
}

/* --- Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85); /* Glassmorphism */
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

/* Mobile: compact navbar */
@media (max-width: 480px) {
  .navbar {
    padding: 8px 0;
  }
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 80px;
  width: auto;
  max-width: min(85vw, 600px);
  object-fit: contain;
  transition: height var(--dur-slow) var(--ease);
}

/* Mobile: smaller logo */
@media (max-width: 480px) {
  .brand-logo {
    height: 64px;
    max-width: 200px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .brand-logo {
    height: 76px;
    max-width: 240px;
  }
}

.brand-name {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  border-radius: var(--r-sm);
  color: white;
  padding: 10px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background var(--dur-base) var(--ease), transform var(--dur-fast) var(--ease);
  min-width: 48px;
  min-height: 48px;
}

.nav-toggle:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: scale(1.05);
}

.nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.nav-toggle:active {
  transform: scale(0.95);
}

.nav-toggle svg { width: 28px; height: 28px; stroke-width: 2.5; }

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  display: none;
  transform-origin: top;
}

.nav-menu[data-open="true"] { 
  display: block; 
  animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-list a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  color: var(--text);
  font-weight: 600;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: var(--surface-alt);
  color: var(--brand-primary);
}

.nav-list a:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 6px;
}

@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .nav-menu {
    position: static;
    display: block;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }
  .nav-list {
    flex-direction: row;
    gap: clamp(14px, 1.8vw, 30px);
    flex-wrap: nowrap;
    align-items: center;
    width: auto;
    max-width: none;
    margin-inline: 0;
    overflow: visible;
  }
  .nav-list a {
    padding: 8px 0;
    font-size: 1rem;
    position: relative;
    border-radius: 0;
    white-space: nowrap;
  }
  .nav-list a:hover,
  .nav-list a[aria-current="page"] {
    background: transparent;
    color: var(--brand-primary);
  }
  /* Underline effect */
  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-brand);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--dur-slow) var(--ease);
    transform-origin: right;
  }
  .nav-list a:hover::after,
  .nav-list a:focus-visible::after,
  .nav-list a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background-color: var(--surface-alt);
}

/* Hero background image (shared across pages) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Primary: hero.jpg. Fallback: hero.jpeg. */
  background-image: url("../img/hero.jpg"), url("../img/hero.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.9; /* Extremely visible */
  filter: saturate(1.03) contrast(1.08) brightness(1.1);
  mix-blend-mode: normal;
}

/* Overlay: warm tint + soft colour blobs (keeps left text legible, reveals photo right) */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(42vw 42vw at 86% 12%, rgba(255, 95, 162, 0.20), transparent 60%),
    radial-gradient(38vw 38vw at 72% 100%, rgba(123, 109, 255, 0.18), transparent 62%),
    linear-gradient(100deg, rgba(255, 250, 252, 0.94) 0%, rgba(255, 246, 251, 0.86) 32%, rgba(247, 244, 255, 0.50) 62%, rgba(255, 255, 255, 0.12) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: var(--section-y) 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

/* Single-column hero (pages without a hero-card) */
.hero-inner.hero-inner--single {
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

/* Mobile: compact hero for single screen view */
@media (max-width: 480px) {
  .hero-inner {
    padding: 24px 0 32px;
    gap: 20px;
  }
  
  .hero h1 {
    margin-bottom: 0.75rem;
    line-height: 1.15;
  }
  
  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  .hero-actions {
    gap: 10px;
  }
  
  .hero-actions .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }
  
  .hero-card {
    padding: 20px;
  }
  
  .hero-card h2 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-card ul {
    gap: 8px;
  }
  
  .hero-card li {
    font-size: 0.9rem;
    padding-left: 24px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .hero-inner {
    padding: 40px 0;
    gap: 28px;
  }
  
  .hero h1 {
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-card {
    padding: 28px;
  }
}

@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1.2fr 0.8fr;
    padding: clamp(64px, 8vw, 100px) 0;
    align-items: start;
  }
}

.hero h1 {
  font-size: var(--h1);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: var(--text-lead);
  color: var(--text-light);
  max-width: 60ch;
  margin-bottom: var(--space-8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero Card (Aside) */
.hero-card {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

/* Decorative top border */
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-text);
}

.hero-card h2 {
  font-size: var(--h3);
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--brand-secondary);
  letter-spacing: -0.01em;
}

.hero-card ul {
  padding: 0;
  list-style: none;
  margin: 0;
  display: grid;
  gap: 16px;
}

.hero-card li {
  padding-left: 34px;
  position: relative;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: var(--r-pill);
  background: var(--gradient-icon);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px -2px rgba(255, 95, 162, 0.45);
}

/* --- General Sections --- */
.section {
  padding: var(--section-y) 0;
}

.section-band {
  position: relative;
  overflow: hidden;
  background: var(--gradient-band);
  border-top: 1px solid rgba(123, 109, 255, 0.10);
  border-bottom: 1px solid rgba(123, 109, 255, 0.10);
}

/* Soft organic colour blob in the band */
.section-band::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -25%;
  right: -8%;
  width: min(46vw, 540px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-lilac) 0%, transparent 70%);
  pointer-events: none;
}

.section-band > .container { position: relative; z-index: 1; }

.section-title {
  font-size: var(--h2);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 800;
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  color: var(--text);
}

/* Gradient heading text (guarded so it never renders invisible) */
@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .section-title {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

/* Gradient accent bar under the title */
.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: var(--r-pill);
  background: var(--gradient-text);
}

/* Left-aligned, smaller title for card headers (contact, voorwaarden) */
.section-title--sm {
  font-size: var(--h3);
  display: block;
  text-align: left;
  margin-bottom: var(--space-4);
}

.section-title--sm::after {
  margin-left: 0;
  margin-right: auto;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(32px, 5vw, 48px);
}

.section-lead {
  font-size: var(--text-lead);
  color: var(--text-light);
}

/* ============================================
   Alignment & polish helpers (audit)
   ============================================ */
.section-cta { margin: 0; text-align: center; }

/* Lone section title (no lead) shouldn't double its bottom gap */
.section-header > div > .section-title:last-child { margin-bottom: 0; }

/* Contact: balanced, equal-height cards */
.contact-grid .theme-card { padding: clamp(24px, 4vw, 40px); }
.contact-grid .theme-card > p { margin-bottom: var(--space-6); color: var(--text-light); }
.contact-card-foot {
  margin-top: auto;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}
.contact-card-foot h3 { font-family: var(--font-head); font-size: var(--h4); margin: 0 0 var(--space-4); }
.contact-card-foot .social { margin-top: 0; }
.contact-submit { width: 100%; margin-top: var(--space-3); }
.icon-btn span { font-size: var(--text-sm); font-weight: 600; }

/* Pricing notes */
.theme-note { text-align: center; font-weight: 800; font-size: var(--text-sm); }
.theme-note--success { color: var(--accent-success); }
.theme-note--brand { color: var(--brand-primary); }

/* Readable measure for legal/terms text */
.container--readable { max-width: 820px; }
.card ul { padding-left: var(--space-5); margin: 0 0 var(--space-4); }
.card li { margin-bottom: var(--space-2); line-height: var(--lh-body); }

/* Calendar header / aside spacing */
.calendar-header h2 { margin: 0 0 var(--space-1); font-size: 1.25rem; }
.calendar-header .booking-help { margin: 0; }
.calendar-request h3 { margin: 0 0 var(--space-2); font-size: var(--h4); }
.calendar-request .form-group { margin-bottom: var(--space-3); }
.calendar-request .booking-field-grid .form-group { margin-bottom: 0; }
.calendar-actions .btn { padding: var(--space-2) var(--space-3); }
.calendar-actions #calendarMonthLabel { min-width: 160px; text-align: center; font-weight: 800; }

/* FAQ: no trailing gap before the CTA */
.faq > details:last-child { margin-bottom: 0; }

/* --- Features List --- */
.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature {
  background: #fff;
  padding: 24px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
  border: 1px solid var(--border);
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(123, 109, 255, 0.3);
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--surface-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-content h3 {
  margin: 0 0 4px;
  font-size: var(--h4);
}

.feature-content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

/* --- Reserveren / Pricing Tables --- */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

@media (max-width: 720px) {
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

th, td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--surface-alt);
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

tr:last-child td { border-bottom: none; }

/* --- Forms --- */
input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-strong);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 16px; /* 16px prevents iOS zoom on focus */
  background: #fff;
  transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--brand-secondary);
  box-shadow: var(--focus-lilac);
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
}

.form-group { margin-bottom: var(--space-6); }

/* Content card (algemene voorwaarden, contact info/form) */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: clamp(24px, 4vw, 40px);
}

.card > :first-child { margin-top: 0; }
.card > :last-child { margin-bottom: 0; }

/* Form row / field (contact form) */
.form-row { display: grid; gap: var(--space-4); }
@media (min-width: 560px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.field { margin-bottom: var(--space-4); }

/* --- Booking (Reserveren v2) --- */
.booking-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.booking-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--r-pill);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-weight: 800;
}

.booking-step .n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(123, 109, 255, 0.10);
  border: 1px solid rgba(123, 109, 255, 0.25);
  color: var(--text);
  font-weight: 800;
}

.booking-step.is-active {
  background: rgba(255, 95, 162, 0.10);
  border-color: rgba(255, 95, 162, 0.35);
  color: var(--text);
}

.booking-step.is-active .n {
  background: rgba(255, 95, 162, 0.16);
  border-color: rgba(255, 95, 162, 0.40);
}

.booking-grid {
  display: grid;
  gap: var(--space-6);
}

.booking-calendar-card {
  margin-bottom: 18px;
}

.calendar-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-weight: 800;
  font-size: 0.9rem;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.2);
}

.legend-dot--available { background: #0f766e; }
.legend-dot--full { background: #b91c1c; }
.legend-dot--selected { background: rgba(255, 95, 162, 0.95); }

.calendar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.booking-calendar {
  margin-top: 12px;
  display: block;
}

.calendar-body {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

@media (min-width: 980px) {
  .calendar-body {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.calendar-request {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: #fff;
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.booking-field-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 520px) {
  .booking-field-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.booking-hints {
  border: 1px solid var(--border);
  background: var(--surface-alt);
  border-radius: var(--r-md);
  padding: 10px 12px;
  margin-top: 8px;
}

.booking-cta {
  margin-top: 12px;
}

.booking-cta .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 980px) {
  .calendar-request {
    position: sticky;
    top: 96px;
  }
}

.calendar-month {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface-alt);
  padding: 12px;
}

.calendar-month-title {
  font-weight: 700;
  margin: 0 0 10px;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 6px;
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-day {
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
  background: #fff;
  border-radius: var(--r-xs);
  padding: 10px 8px 8px;
  min-height: 60px;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  touch-action: manipulation;
}

@media (min-width: 720px) {
  .calendar-day {
    min-height: 70px;
  }
}

.calendar-day::before {
  content: '';
  position: absolute;
  left: 8px;
  bottom: 8px;
  width: 9px;
  height: 9px;
  border-radius: var(--r-pill);
  background: transparent;
  opacity: 0;
}

.calendar-day:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(123, 109, 255, 0.35);
}

.calendar-day:not(.is-disabled):active {
  transform: scale(0.97);
}

.calendar-day:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.calendar-day.is-empty {
  visibility: hidden;
  pointer-events: none;
}

.calendar-day.is-disabled {
  opacity: 1;
  cursor: not-allowed;
  background: #f0f0f0;
  color: #b0b0b0;
}

.calendar-day.is-disabled .d {
  color: #b0b0b0;
}

.calendar-day.is-disabled::before {
  background: transparent;
  opacity: 0;
}

.calendar-day.is-available {
  border-color: rgba(15, 118, 110, 0.25);
}

.calendar-day.is-available::before {
  background: #0f766e;
  opacity: 1;
}

.calendar-day.is-full {
  border-color: rgba(185, 28, 28, 0.25);
}

.calendar-day.is-full::before {
  background: #b91c1c;
  opacity: 1;
}

.calendar-day.is-disabled:hover {
  transform: none;
  box-shadow: none;
}

.calendar-day .d {
  font-weight: 800;
}

.calendar-day .cap {
  position: absolute;
  right: 8px;
  top: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text);
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 2px 7px;
  border-radius: var(--r-pill);
}

.calendar-day.is-available .cap {
  color: #0f766e;
  background: rgba(15, 118, 110, 0.10);
  border-color: rgba(15, 118, 110, 0.18);
}

.calendar-day.is-full .cap {
  color: #b91c1c;
  background: rgba(185, 28, 28, 0.10);
  border-color: rgba(185, 28, 28, 0.18);
}

.calendar-day.is-selected {
  border-color: rgba(255, 95, 162, 0.65);
  box-shadow: 0 0 0 3px rgba(255, 95, 162, 0.22);
}

.calendar-day.is-selected::before {
  background: rgba(255, 95, 162, 0.95);
  opacity: 1;
}

.calendar-day.is-today {
  border-color: rgba(123, 109, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(123, 109, 255, 0.12);
}

.calendar-day.is-today.is-selected {
  /* selected should remain dominant */
  border-color: rgba(255, 95, 162, 0.65);
  box-shadow: 0 0 0 3px rgba(255, 95, 162, 0.22);
}

.calendar-day.is-in-range {
  border-color: rgba(123, 109, 255, 0.35);
  background: rgba(123, 109, 255, 0.08);
}

@media (min-width: 980px) {
  .booking-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.booking-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-5);
}

.booking-card h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.booking-help {
  margin: 0 0 14px;
  color: var(--text-light);
  font-weight: 500;
}

.booking-row {
  display: grid;
  gap: 12px;
}

/* Booking extras (step 2 form) */
.booking-extras {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .booking-extras {
    grid-template-columns: 1fr 1fr;
  }
}

.extra-option {
  display: grid;
  grid-template-columns: 22px 64px minmax(0,1fr) minmax(96px,max-content) 60px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  user-select: none;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

@media (max-width: 480px) {
  .extra-option {
    grid-template-columns: 22px 52px 1fr auto 50px;
    gap: 10px;
    padding: 10px 12px;
  }
}

.extra-option:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(123, 109, 255, 0.35);
}

.extra-option:active {
  transform: scale(0.995);
}

.extra-option:focus-within {
  outline: none;
  box-shadow: var(--shadow-md), var(--focus);
  border-color: rgba(255, 95, 162, 0.55);
}

.extra-option__check {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-primary);
}

.extra-option__imgbtn {
  width: 64px;
  height: 64px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--surface-alt);
  overflow: hidden;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}

@media (max-width: 480px) {
  .extra-option__imgbtn {
    width: 52px;
    height: 52px;
    border-radius: var(--r-sm);
  }
}

.extra-option__imgbtn:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.extra-option__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.extra-option__content {
  min-width: 0;
}

.extra-option__title {
  display: block;
  font-weight: 700;
  line-height: 1.2;
}

.extra-option__price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(123, 109, 255, 0.18);
  background: rgba(123, 109, 255, 0.08);
  font-weight: 800;
  white-space: nowrap;
  justify-self: start;
}

/* Small screens: prevent title/price collisions by stacking price below the title */
@media (max-width: 820px) {
  .extra-option {
    grid-template-columns: 22px 64px 1fr;
    grid-template-rows: auto auto;
    align-items: start;
  }

  .extra-option__check {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    margin-top: 6px;
  }

  .extra-option__imgbtn {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
  }

  .extra-option__content {
    grid-column: 3;
    grid-row: 1;
  }

  .extra-option__title {
    word-break: break-word;
  }

  .extra-option__price {
    grid-column: 3;
    grid-row: 2;
    justify-self: start;
    margin-top: 6px;
  }

  .extra-option__qtywrap {
    grid-column: 1 / span 2;
    grid-row: 2;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 6px;
  }

  .extra-option__qtylabel {
    font-size: 0.82rem;
  }
}

.extra-option__qty {
  width: 60px;
  padding: 6px 8px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-sm);
  font-size: 1rem;
  text-align: center;
  background: #fff;
  transition: border-color 0.15s ease;
}

.extra-option__qtywrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.extra-option__qtylabel {
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1;
}

.extra-option__qty:focus {
  outline: none;
  border-color: var(--brand-secondary);
  box-shadow: var(--focus-lilac);
}

.extra-option__qty::-webkit-inner-spin-button,
.extra-option__qty::-webkit-outer-spin-button {
  opacity: 1;
}

@media (max-width: 480px) {
  .extra-option__qty {
    width: 64px;
    min-height: 44px;
    padding: 8px 10px;
    font-size: 16px;
  }
}
.extra-option__unit {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Selected state */
.extra-option__check:checked ~ .extra-option__content .extra-option__title {
  color: var(--brand-primary);
}

.extra-option__check:checked ~ .extra-option__price {
  border-color: rgba(255, 95, 162, 0.22);
  background: rgba(255, 95, 162, 0.12);
}

/* Lightbox (extras image zoom) */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
}

.lightbox[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox__panel {
  position: relative;
  width: min(92vw, 920px);
  max-height: 92vh;
}

.lightbox__img {
  width: 100%;
  height: auto;
  max-height: 92vh;
  object-fit: contain;
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.lightbox__close {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

@media (min-width: 720px) {
  .booking-row {
    grid-template-columns: 1fr 1fr;
  }
}

.booking-status {
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--surface-alt);
  padding: 12px 14px;
  font-weight: 700;
  color: var(--text);
}

.booking-status[data-type="success"] {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.10);
}

.booking-status[data-type="warning"] {
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.12);
}

.booking-status[data-type="danger"] {
  border-color: rgba(255, 95, 162, 0.35);
  background: rgba(255, 95, 162, 0.10);
}

.booking-summary {
  display: grid;
  gap: 10px;
}

.booking-summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--surface-alt);
}

.booking-summary-item strong {
  font-weight: 800;
}

.booking-total {
  padding: 12px 12px;
  border-radius: var(--r-md);
  border: 2px solid rgba(123, 109, 255, 0.35);
  background: rgba(123, 109, 255, 0.08);
}

.booking-total .price {
  font-weight: 800;
  font-size: 1.25rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--brand-dark);
  color: #fff;
  padding: clamp(40px, 6vw, 60px) 0;
  margin-top: var(--section-y);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-icon);
}

.site-footer a { color: #cbd5e0; }
.site-footer a:hover { color: #fff; }

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-meta {
  display: grid;
  gap: 10px;
}

.footer-meta p { margin: 0; }

.footer-actions {
  display: flex;
  align-items: flex-start;
}

.owner-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform var(--dur-base) var(--ease), background var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}

.owner-login:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.owner-login:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
  }
}

.footer-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Utilities */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Spacing / alignment helpers (replace one-off inline styles) */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-12 { margin-top: var(--space-12); }
.text-center { text-align: center; }
.field-hint {
  margin-top: var(--space-2);
  color: var(--text-light);
  font-size: var(--text-sm);
}

/* Fine print — used widely for hints, captions and footnotes */
.small {
  font-size: var(--text-sm);
  line-height: var(--lh-body);
  color: var(--text-light);
}

/* Keep footer fine print legible on the dark surface */
.site-footer .small { color: inherit; }

/* Video Embed */
.video-embed {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  aspect-ratio: 16/9;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Theme Cards (Custom) --- */
.theme-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.theme-grid--two {
  max-width: 980px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .theme-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .theme-grid { grid-template-columns: repeat(3, 1fr); }
  .theme-grid.theme-grid--two { grid-template-columns: repeat(2, 1fr); }
}

.theme-card {
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
  height: 100%;
}

.theme-card--featured {
  position: relative;
  border: 2px solid rgba(255, 95, 162, 0.55);
  box-shadow: 0 16px 40px -12px rgba(255, 95, 162, 0.35);
  overflow: visible; /* let the "Beste deal" badge poke above the card */
}

.theme-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.theme-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(123, 109, 255, 0.3);
}

.theme-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  transition: transform var(--dur-slow) var(--ease);
}

.theme-card:hover .theme-card-image {
  transform: scale(1.05);
}

.theme-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.theme-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.theme-title {
  font-family: var(--font-head);
  font-size: var(--h4);
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
}

.theme-price {
  background: var(--brand-secondary);
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #9f7aea 100%);
  border-radius: var(--r-sm);
  padding: 6px 10px;
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
  white-space: nowrap;
  box-shadow: 0 4px 6px -1px rgba(123, 109, 255, 0.3);
}

.theme-description {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.theme-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  font-size: 0.95rem;
  color: var(--text-light);
  display: grid;
  gap: 8px;
}

.theme-list li {
  padding-left: 24px;
  position: relative;
}

.theme-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-primary);
  font-weight: 800;
}

.price-was {
  text-decoration: line-through;
  opacity: 0.55;
  margin-right: 6px;
}

.theme-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.theme-footer .btn {
  width: 100%;
}

.price-small { 
    display: block; 
    text-align: center; 
    font-size: 0.8rem; 
    color: var(--text-light);
    margin-top: 4px;
}

/* --- Social Media Icons --- */
.social {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s ease, color 0.2s ease;
}

.icon-btn svg {
  width: 48px;
  height: 48px;
  fill: none; /* Ensure fill is handled by component or svg attr */
}

.icon-btn:hover {
  transform: translateY(-3px);
}

/* --- WhatsApp Float Button --- */
.whatsapp-float {
  position: fixed;
  bottom: calc(30px + env(safe-area-inset-bottom));
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 8px 20px -4px rgba(37, 211, 102, 0.45);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), background-color var(--dur-base) var(--ease);
  text-decoration: none; /* No underline */
}

.whatsapp-float:hover {
  background-color: #20ba5a; /* Slightly darker on hover */
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -4px rgba(37, 211, 102, 0.5);
  color: white; /* Ensure text/icon stays white */
}

.whatsapp-float:active { transform: scale(0.94); }
.whatsapp-float:focus-visible {
  outline: none;
  box-shadow: var(--focus), 0 8px 20px -4px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

@media screen and (max-width: 768px) {
  .whatsapp-float {
      width: 50px;
      height: 50px;
      bottom: calc(20px + env(safe-area-inset-bottom));
      right: 20px;
      font-size: 25px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* --- Instagram Float Button --- */
.instagram-float {
  position: fixed;
  bottom: calc(100px + env(safe-area-inset-bottom));
  right: 30px;
  background-color: #e1306c;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 8px 20px -4px rgba(225, 48, 108, 0.40);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), background-color var(--dur-base) var(--ease);
  text-decoration: none; /* No underline */
}

.instagram-float:hover {
  background-color: #c1275b;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -4px rgba(225, 48, 108, 0.45);
  color: white;
}

.instagram-float:active { transform: scale(0.94); }
.instagram-float:focus-visible {
  outline: none;
  box-shadow: var(--focus), 0 8px 20px -4px rgba(225, 48, 108, 0.40);
}

.instagram-float svg {
  width: 35px;
  height: 35px;
}

@media screen and (max-width: 768px) {
  .instagram-float {
      width: 50px;
      height: 50px;
      bottom: calc(80px + env(safe-area-inset-bottom));
      right: 20px;
      font-size: 25px;
  }
  
  .instagram-float svg {
    width: 28px;
    height: 28px;
  }
}




/* --- FAQ / Accordion --- */
details {
  background: #ffffff;
  border-radius: var(--r-md);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--dur-slow) var(--ease), transform var(--dur-base) var(--ease);
  border: 1px solid var(--border);
}

details:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

details[open]:hover {
  transform: none;
}

details[open] {
  box-shadow: var(--shadow-brand); /* Subtle pink glow when active */
  border-color: rgba(255, 95, 162, 0.3);
}

summary {
  padding: 20px 24px;
  cursor: pointer;
  position: relative;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  list-style: none; /* Hide default triangle */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brand-secondary);
  transition: transform var(--dur-slow) var(--ease);
  line-height: 1;
}

details[open] summary::after {
  transform: rotate(45deg); /* Turns + into x */
  color: var(--brand-primary);
}

details[open] summary {
  padding-bottom: 12px; /* Reduce bottom padding when open to connect with content */
  color: var(--brand-primary);
}

.answer {
  padding: 0 24px 24px 24px;
  color: var(--text-light);
  line-height: var(--lh-body);
  border-top: 1px solid transparent;
  animation: slideDown var(--dur-slow) var(--ease);
}

/* --- Compact Included Items Grid (AAA) --- */
.included-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.included-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--r-md); /* Smooth rounded corners */
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
  font-weight: 700; /* Bold text as requested */
  color: var(--text-dark);
}

.included-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-secondary);
  background: linear-gradient(to right, #ffffff, #fcfaff);
}

.included-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: var(--r-pill);
  background: var(--gradient-icon);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px -4px rgba(255, 95, 162, 0.45);
}

.included-icon svg {
  width: 22px;
  height: 22px;
}

/* ================================
   Contact Success Modal
   ================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: white;
  border-radius: var(--r-lg);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease-out;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.modal-icon svg {
  width: 44px;
  height: 44px;
}

.modal-title {
  font-family: var(--font-head);
  font-size: var(--h3);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.modal-text {
  color: var(--text-light);
  margin: 0 0 24px;
  line-height: 1.6;
}

.modal-details {
  background: var(--surface-alt);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  text-align: left;
}

.modal-details p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
}

.modal-details p + p {
  margin-top: 8px;
}

.modal-details strong {
  color: var(--text-light);
  font-weight: 500;
}

.modal-btn {
  min-width: 160px;
}

@media (max-width: 480px) {
  .modal-content {
    padding: 32px 24px;
  }
  .modal-icon {
    width: 64px;
    height: 64px;
  }
  .modal-icon svg {
    width: 36px;
    height: 36px;
  }
  .modal-title {
    font-size: 1.5rem;
  }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVENESS (v2)
   All pages fully optimized for mobile
   ============================================ */

@media (max-width: 600px) {
  /* --- Global Mobile Reset (scoped — never blanket `*`) --- */
  img, svg, video, iframe, table, .video-embed {
    max-width: 100%;
  }

  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  /* --- Headings --- */
  h1, .section-title {
    font-size: 1.6rem;
    line-height: 1.2;
    word-wrap: break-word;
  }
  
  h2, .h2 {
    font-size: 1.35rem;
    line-height: 1.25;
  }
  
  h3, .h3 {
    font-size: 1.15rem;
    line-height: 1.3;
  }

  /* --- Booking/Reserveren Page Mobile --- */
  .booking-steps {
    flex-wrap: wrap;
    overflow: visible;
    margin: 0;
  }
  
  .booking-step {
    flex-shrink: 0;
    font-size: 0.85rem;
    padding: 6px 10px;
    gap: 6px;
    white-space: nowrap;
  }
  
  .booking-step .n {
    width: 22px;
    height: 22px;
    font-size: 0.8rem;
  }

  .booking-grid {
    gap: 12px;
  }
  
  /* Calendar Mobile Optimization */
  .calendar-header {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  
  .calendar-legend {
    flex-wrap: wrap;
    overflow: visible;
    gap: 6px;
  }
  
  .legend-item {
    flex-shrink: 0;
    font-size: 0.75rem;
    padding: 4px 8px;
    gap: 5px;
  }
  
  .legend-dot {
    width: 8px;
    height: 8px;
  }
  
  .calendar-actions {
    width: 100%;
    justify-content: center;
  }
  
  .calendar-actions .btn {
    flex: 1;
    font-size: 0.85rem;
    padding: 10px 14px;
  }
  
  .calendar-month {
    padding: 8px;
  }
  
  .calendar-month-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .calendar-weekdays {
    font-size: 0.74rem;
    gap: 4px;
  }

  .calendar-grid {
    gap: 5px;
  }

  .calendar-day {
    padding: 6px 4px 5px;
    min-height: 46px;
    border-radius: var(--r-xs);
  }
  
  .calendar-day .d {
    font-size: 0.8rem;
  }
  
  .calendar-day .cap {
    font-size: 0.66rem;
    padding: 1px 4px;
    right: 3px;
    top: 3px;
  }
  
  .calendar-day::before {
    width: 6px;
    height: 6px;
    left: 4px;
    bottom: 4px;
  }
  
  .calendar-request {
    padding: var(--space-3);
  }
  
  .booking-field-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .booking-hints {
    padding: 8px 10px;
    font-size: 0.85rem;
  }
  
  /* --- Forms Mobile --- */
  .form-group {
    margin-bottom: 16px;
  }
  
  .form-group label {
    font-size: 0.9rem;
  }
  
  textarea {
    min-height: 100px;
  }

  /* --- Cards & Grid Mobile --- */
  .card, .intro-card, .booking-calendar-card {
    padding: 16px;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* --- Pricing Page Mobile --- */
  .pricing-grid, .packages-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .price-card, .package-card {
    padding: 20px 16px;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .price-period {
    font-size: 0.85rem;
  }
  
  /* --- Tables Mobile --- */
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  
  th, td {
    padding: 10px 8px;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  /* --- Extras Page Mobile --- */
  .extras-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .extra-item {
    padding: 16px;
  }

  /* --- FAQ Page Mobile --- */
  .faq-item {
    margin-bottom: 12px;
  }
  
  .faq-question {
    padding: 14px 16px;
    font-size: 0.95rem;
    gap: 10px;
  }
  
  .faq-answer {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  /* --- Contact Page Mobile --- */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-info-card {
    padding: 20px 16px;
  }
  
  .contact-form .btn {
    width: 100%;
    justify-content: center;
  }

  /* --- Footer Mobile --- */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* --- Buttons Mobile --- */
  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
  
  .btn-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  
  .btn-group .btn {
    width: 100%;
  }
  
  /* Inline button pair - side by side */
  .btn-pair {
    display: flex;
    gap: 8px;
  }
  
  .btn-pair .btn {
    flex: 1;
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  /* --- CTA Section Mobile --- */
  .cta-section {
    padding: 32px 16px;
    text-align: center;
  }
  
  .cta-section h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  
  .cta-section p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  /* --- Features Grid Mobile --- */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-card {
    padding: 20px 16px;
  }
  
  .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  /* --- Algemene Voorwaarden Mobile --- */
  .terms-content, .legal-content {
    padding: 16px;
    font-size: 0.9rem;
  }
  
  .terms-content h2, .legal-content h2 {
    font-size: 1.2rem;
    margin-top: 20px;
  }
  
  .terms-content h3, .legal-content h3 {
    font-size: 1.05rem;
  }
  
  .terms-content ul, .legal-content ul {
    padding-left: 20px;
  }
  
  .terms-content li, .legal-content li {
    margin-bottom: 8px;
  }
}

/* ============================================
   Entrance & scroll-reveal (progressive, safe)
   - hero entrance: all browsers, plays once
   - scroll reveal: only where animation-timeline
     is supported; elsewhere content is just visible
   - uses the `translate` property so hover `transform`
     lifts still compose without conflict
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .hero h1,
  .hero p,
  .hero-actions,
  .hero-card {
    animation: heroIn 0.7s var(--ease) both;
  }
  .hero p { animation-delay: 0.06s; }
  .hero-card { animation-delay: 0.10s; }
  .hero-actions { animation-delay: 0.14s; }

  @keyframes heroIn {
    from { opacity: 0; translate: 0 16px; }
    to { opacity: 1; translate: 0 0; }
  }

  @supports (animation-timeline: view()) {
    .section-header,
    .included-item,
    .theme-card,
    .feature,
    .video-embed {
      animation: revealUp linear both;
      animation-timeline: view();
      animation-range: cover 0% cover 20%;
    }

    @keyframes revealUp {
      from { opacity: 0; translate: 0 28px; }
      to { opacity: 1; translate: 0 0; }
    }
  }
}

/* ============================================
   Reduced motion — respect user preference
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .btn:hover, .feature:hover, .theme-card:hover, .included-item:hover,
  .calendar-day:hover, .icon-btn:hover, .whatsapp-float:hover, .instagram-float:hover,
  .extra-option:hover, details:hover, .owner-login:hover {
    transform: none !important;
  }

  /* Scroll-driven reveals aren't duration-based — disable them explicitly */
  .section-header, .included-item, .theme-card, .feature, .video-embed {
    animation: none !important;
    opacity: 1 !important;
    translate: none !important;
  }
}
