/* ======================================================
   RESET & BASIS
   ====================================================== */

* { 
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;

  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Arial;
  line-height: 1.6;

  background: var(--bg);
  color: var(--text);
}

main section {
  background: var(--bg);
  color: var(--text);
}

main section.section-soft {
  background: var(--bg-soft);
}

/* ======================================================
   CSS VARIABELEN / THEMES
   ====================================================== */

:root {
  --radius: 18px;
}

/* Winter */
body.theme-winter {
  --bg: #0b1220;
  --bg-soft: #111d35;
  --card: #0b1220;
  --muted: #a9a9ff;
  --text: #eaf1ff;
  --eyebrow: #69d1ff;
  --hamburger: #69d1ff;
  --accent: #69d1ff;
  --accent-2: #7cf4a9;
  --ring: rgba(121,189,255,.45);
  --shadow: 0 10px 25px rgba(0,0,0,.35);
}

/* Summer */
body.theme-summer {
  --bg: #f2ecdd;
  --bg-soft: #eee4cc;
  --card: #fff9ec;
  --muted: #ff9999;
  --text: #2a343b;
  --eyebrow: #eee4cc;
  --hamburger: #2a343b;
  --accent: #a00100;
  --accent-2: #7ed7c1;
  --ring: rgba(255,184,92,0.35);
  --shadow: 0 8px 18px rgba(0,0,0,0.08);

  --theme-btn-bg: #fdf8ea;
  --theme-btn-text: #000;
  }

/* ======================================================
   LINKS
   ====================================================== */

a {
  color: var(--text);
  text-decoration: none;
}

/* ======================================================
   HEADER
   ====================================================== */

header {
  position: sticky;
  top: 0;
  z-index: 1000;

  width: 100%;
  background: var(--bg-dark);
  color: var(--text-light);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.header-container {
  max-width: 95%;
  margin-inline: auto;
  padding: 12px 24px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  pointer-events: auto;
}

/* ======================================================
   LOGO
   ====================================================== */

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  max-height: 60px;
}

/* ======================================================
   DESKTOP NAV
   ====================================================== */

nav.links {
  display: flex;
  justify-content: center;
  gap: 26px;
}

nav.links a {
  position: relative;
  padding: 8px 4px;
  font-weight: 500;
  color: var(--text-light);
}

/* hover lines */
nav.links a::before,
nav.links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0);
  transition: .2s ease;
}

nav.links a::before { top: -6px; }
nav.links a::after  { bottom: -6px; }

nav.links a:hover {
  color: var(--accent);
}

nav.links a:hover::before,
nav.links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* ======================================================
   HEADER ACTIONS (DESKTOP)
   ====================================================== */

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ======================================================
   BUTTONS
   ====================================================== */
.btn-book {
  background: #a00100;
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-book:hover{
  background: #00a003;
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600;
}
.btn-theme {
  background-color: transparent;
  border: 1.5px solid var(--accent, #a00100);
  color: var(--accent, #a00100);
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  min-width: 126px;          /* afgestemd op “Summer ☀” */
  text-align: center;

}

.btn-book,
.btn-theme {
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-theme.is-winter {
  background: var(--accent);
  color: #000;
}

.btn-theme.is-summer {
  background: var(--theme-btn-bg);
  color: var(--theme-btn-text);
}

@media (hover: hover) {
  .btn-theme:hover {
    filter: brightness(1.05);
  }
}

/* ================================================
   BUTTONS - THEME TOGGLE – HOVER STATES
   ================================================ */

/* site staat op SUMMER → hover toont WINTER-kleur */
body.theme-summer .btn-theme:hover {
  background-color: #69d1ff;   /* winter accent */
  color: #0b1220;
  border-color: #69d1ff;
}

/* site staat op WINTER → hover toont SUMMER-kleur */
body.theme-winter .btn-theme:hover {
  background-color: #ffb85c;   /* summer accent */
  color: #2a343b;
  border-color: #ffb85c;
}

/* ======================================================
   HAMBURGER (DESKTOP UIT)
   ====================================================== */

.header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.header-hamburger span {
  height: 3px;
  width: 100%;
  background: var(--hamburger);
  border-radius: 2px;
}

/* ======================================================
   MOBILE MENU (DESKTOP UIT)
   ====================================================== */

.header-mobile-menu {
  display: none;
  pointer-events: auto;
}

/* ======================================================
   MOBILE
   ====================================================== */

@media (max-width: 960px) {

  /* layout */
  .header-container {
    grid-template-columns: auto 1fr auto;
  }

  /* desktop uit */
  nav.links,
  .header-actions {
    display: none;
  }

  /* hamburger aan */
  .header-hamburger {
    display: flex;
    justify-self: end;
  }

  /* dropdown menu */
  .header-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    background: var(--bg-soft);
    padding: 24px 0;
  }

  header.menu-open .header-mobile-menu {
    display: block;
  }

  .header-mobile-menu nav.mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0;          /* voorkomt zijwaartse offset */
    margin: 0 auto;
    gap: 18px;
  }

  .header-mobile-menu nav.mobile-links a,
  .header-mobile-menu nav.mobile-links button {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 80%;
    max-width: 260px;

    margin: 0;          /* voorkomt vastgeplakte overlap */
    text-align: center;
    box-sizing: border-box;
  }
  
  .header-mobile-menu .mobile-actions {
    display: flex;
    flex-direction: column;
    align-items: center;   /* centreert horizontaal */
    justify-content: center;
    gap: 16px;             /* ruimte tussen knoppen */
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }

  .header-mobile-menu .mobile-actions a,
  .header-mobile-menu .mobile-actions button {
    width: 80%;
    max-width: 260px;
    text-align: center;
    margin: 0;
  }

  .header-mobile-menu .header-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
    align-items: center;
  }

  .header-mobile-menu a,
  .header-mobile-menu button {
    width: 80%;
    max-width: 260px;
    text-align: center;
  }

  .header-mobile-menu .header-actions {
    width: 100%;
    align-items: center;
  }

  .header-mobile-menu .header-actions > * {
    display: flex;
    justify-content: center;
  }

}

/* ======================================================
   BUTTONS (ALGEMEEN)
   ====================================================== */

.btn {
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  background: rgba(255,255,255,0.3);
  color: var(--text);
  cursor: pointer;
}

/* ======================================================
   HERO
   ====================================================== */

.hero {
  position: relative;
  color: #fff;
  width: 100%;
  max-width: 100vw;
  min-height: 90vh;
  z-index: 1;
}

.hero-media,
.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-slides img,
.hero-slides video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.hero-slides img.active,
.hero-slides video.active {
  opacity: 1;
}

.hero-slides video {
  object-position: center center;
}

.hero-slides video {
  background: #000; /* voorkomt witte flits */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,.45),
    rgba(0,0,0,.25)
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 5%;
}

.hero-content {
  max-width: 100%;
  margin-left: clamp(24px, 8vw, 140px);
  margin-right: auto;

  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero .eyebrow {
  display: inline-block;
  width: fit-content;
  background: rgba(17,29,53,.6);
  border: 1px solid rgba(255,255,255,.24);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--eyebrow);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero .subtitle {
  max-width: 750px;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.2fr;
  gap: 40px;
  align-items: center;
  padding-left: 110px;
  padding-right: 188px;
}

/* ======================================================
   SLIDER DOTS/ARROWS
   ====================================================== */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
}

.hero-dots button.active {
  background: #fff;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,.45);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 26px;
  pointer-events: auto;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* ======================================================
   HERO – MOBILE
   ====================================================== */

@media (max-width: 960px) {

  .hero {
    min-height: 70vh;
    height: auto;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .hero-media,
  .hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-slides img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* grid wordt 1 kolom */
  .hero-grid {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    align-items: start;
  }

  /* content bovenop de hero */
  .hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-content {
    height: auto;
    justify-content: flex-start;
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 60vh;
  }
}

/* ======================================================
   ACCOMMODATIONS OP DE HOMEPAGE
   ====================================================== */

.content-width {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.accommodations {
  padding: 80px 0;
  background: var(--bg-soft);
  color: var(--text);
}

.accommodations h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.accommodations p {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.accommodation-card {
  background: var(--card);
  color: var(--text);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.accommodation-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.accommodation-card h3 {
  margin: 16px;
  font-size: 1.5rem;
  text-align: center;
}

.accommodation-card p {
  margin: 0 16px 16px;
  font-size: 0.95rem;
}

.accommodation-card .features {
  margin: 0 16px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: #555;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;                 /* vult beschikbare hoogte */
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center; /* cruciaal */
}

.features span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.features sup {
  font-size: 0.65em;
  line-height: 0;
  vertical-align: super;
  margin-left: 1px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem 1rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.features li {
  display: flex;
  flex-direction: column-reverse; /* tekst boven, icoon eronder */
  align-items: center;
  gap: 0.4rem;

  font-size: 0.85rem;
  line-height: 1.2;
  text-align: center;

  color: var(--text);
  opacity: 0.75;
}

.features img {
  width: 36px;
  height: 36px;
  display: block;
}

.feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.features li svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.features li:hover svg,
.features li:hover img {
  transform: translateY(-4px);
}

.accommodation-card .features {
  justify-items: center;
}

.features sup {
  font-size: 0.65em;
  vertical-align: super;
  line-height: 0;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  margin-left: 16px;
  margin-right: 16px;
  padding-top: 8px;
}

.accommodation-card .btn {
  margin: 0;
  text-align: center;
  color: var(--text-light);
}

.accommodation-card .btn:hover {
  color: var(--accent);
}

.from-price {
  font-size: 0.95rem;
  color: #00a003;
  white-space: nowrap;
}

.from-price sup {
  font-size: 0.7em;
  vertical-align: super;
}

.card-footer .btn,
.card-footer .from-price {
  display: inline-flex;
  align-items: center;
}

.accommodation-card .accommodation-footnote {
  font-size: 0.7rem;     /* ±12px */
  line-height: 1.4;
  opacity: 0.75;          /* subtieler zonder onleesbaar te worden */
  margin-top: 24px;
  color: var(--text);
  text-align: center;
}

.accommodation-card .accommodation-footnote sup {
  font-size: 0.7em;
  vertical-align: super;
  color: var(--text);
}

/* ======================================================
   SECTIES & CARDS
   ====================================================== */

section {
  padding: 68px 0;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

/* ======================================================
   ABOUT US - INTRO
   ====================================================== */

.about-intro {
  background: var(--bg-soft);
  overflow: hidden;
  position: relative;
}

.about-intro .media-circle {
  max-width: 100%;
  will-change: transform;
}

.about-intro-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

/* TEKST */

.about-intro .eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--eyebrow);
  background: rgba(17,29,53,.5);
}

.about-intro-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.about-intro-text .lead {
  margin-bottom: 2rem;
  max-width: 68ch;
}

/* KNOP */

.about-btn {
  border: 1px solid var(--accent);
  background: transparent;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: #00a003;
  color: #fff;
  border: none;
}

/* ======================================================
   MEDIA – OVERLAPPENDE CIRKELS
   ====================================================== */

.about-intro-media {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}

.media-stack {
  position: relative;
  width: 395px;            /* desktop compositie */
  height: 300px;
}

/* ALGEMEEN */
.media-circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow);
  opacity: 0;

  transition:
    transform 1.2s cubic-bezier(.22,.61,.36,1),
    opacity 1.2s ease;
}

.media-circle img,
.media-circle video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* VIDEO – groot, links gecentreerd */
.media-video {
  width: 300px;
  height: 300px;
  left: 0;
  top: 0;
  z-index: 1;

  transform: translateX(120px);
}

.media-video.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* FOTO – kleiner, overlapt */
.media-photo {
  width: 190px;
  height: 190px;

  right: -40px;
  top: 150px;
  z-index: 2;

  border: 5px solid var(--bg-soft);

  transform: translateX(160px);
  transition-delay: 0.35s;
}

.media-photo.is-visible {
  opacity: 1;
  transform: translateX(-40px);
}

/* ======================================================
   MOBIEL
   ====================================================== */

@media (max-width: 960px) {
  .about-intro-inner {
    grid-template-columns: 1fr;
  }

  .media-stack {
    width: 300px;
    height: 300px;
  }

  .media-video {
    width: 260px;
    height: 260px;
    aspect-ratio: 1 / 1;
  }

  .media-photo {
    width: 160px;
    height: 160px;
    aspect-ratio: 1 / 1;
    right: -20px;
    bottom: 0;

    transform: translateX(80px);
  }

  .media-photo.is-visible {
    transform: translateX(-20px);
    opacity: 1;
  }
}

/* ======================================================
   SURROUNDINGS - INTRO
   ====================================================== */

.surroundings-intro {
  background: var(--bg-soft);
}

.surroundings-intro-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  gap: 3rem;
  align-items: stretch; /* BELANGRIJK: hoogte = tekstkolom */
}

/* forceer visuele volgorde */
.surroundings-intro-media {
  order: 1; /* links */
  display: flex;
  align-items: stretch;   /* frame hoogte = tekstkolom */
  justify-content: center; /* horizontaal in vrije ruimte */
}

.surroundings-intro-text {
  order: 2; /* rechts */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* TEKST */

.surroundings-intro .eyebrow {
  display: block;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--eyebrow);
  background: rgba(17,29,53,.5);
}

.surroundings-intro-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.surroundings-intro-text .lead {
  max-width: 68ch;
  margin-bottom: 2rem;
  order: 2;
}

/* knop */
.surroundings-btn {
  align-self: flex-start;
  border: 1px solid var(--accent);
  background: transparent;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  order: 3;
}

.surroundings-btn:hover {
  background: #00a003;
  color: #fff;
  border: none;
}

/* MAP FRAME */

/* container linkerkolom */
.surroundings-intro-media {
  position: relative;
  order: 1;
}

/* rechthoek – hoogte = tekstkolom, horizontaal gecentreerd in linker vrije ruimte */
.theme-summer .map-frame {
  width: 100%;
  max-width: 450px;       /* niet te breed */
  align-self: stretch;     /* hoogte = grid/tekstkolom */

  /* horizontaal midden tussen linkerkant scherm en rechterkant linker gridkolom */
  margin-left: auto;
  margin-right: auto;

  border-radius: 20px;
  overflow: hidden;

  background: #000;
  box-shadow: var(--shadow);
  border: 6px solid var(--bg-soft);

  opacity: 0;
  transform: translateX(-60px);
  animation: map-float-in 1.2s ease-out forwards;
}

.theme-summer .map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ANIMATIE */
@keyframes map-float-in {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .surroundings-intro-inner {
    grid-template-columns: 1fr;
  }

  .surroundings-intro-text {
    order: 1;
  }

  .surroundings-intro-media {
    order: 2;
    height: 300px;
    margin-bottom: 2.5rem;
    justify-content: center; /* gecentreerd op mobiel */
    margin-top: 24px;
  }

  .theme-summer .map-frame {
    max-width: 100%;
    height: 100%;
  }
}

/* ======================================================
   STORY
   ====================================================== */

.story-inner {
  max-width: 800px;
  margin-inline: auto;
}

.story-image img {
  width: 100%;
  border-radius: var(--radius);
}

/* ======================================================
   SITE FOOTER
   ====================================================== */

.site-footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 2rem 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  max-width: 95%;
  margin: 0 auto;
}

/* COLUMN STYLING */
.footer-column h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: var(--accent);
}

/* ABOUT COLUMN with logo */
.footer-about .footer-logo img {
  display: block;       /* voorkomt ongewenste spaties */
  width: 100%;          /* vult kolombreedte */
  max-width: 180px;     /* optioneel: voorkom dat hij te groot wordt */
  height: auto;         /* behoudt verhoudingen */
  margin-bottom: 0.8rem;
}

.footer-about .footer-description {
  font-size: 0.95rem;
  color: var(--text);
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-light); /* optioneel: lichte achtergrond rond de iconen */
  transition: all 0.3s ease;
}

.footer-social a img {
  width: 70%;  /* past in de ronde container */
  height: 70%;
  object-fit: contain;
  display: block;
}

.footer-social a:hover {
  background: var(--accent);
}

/* BOTTOM BAR */
.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  font-size: 0.85rem;
  color: var(--text);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 500px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-social .social-icons {
    justify-content: flex-start;
  }
}


/* ======================================================
   RESPONSIVE
   ====================================================== */

@media (max-width: 760px) {
  nav.links {
    display: none;
  }

  .hero {
    min-height: 80vh;
  }
}

/* ============================================================================================================
   AVAILABILITY-SEARCH PAGE
   ============================================================================================================ */

.availability-page {
  background: var(--bg);
  color: var(--text);
}

.availability-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.availability-iframe {
  width: 100%;
  min-height: 520px;
  border: none;
  display: block;
}

.booking-iframe {
  width: 100%;
  border: none;
  display: block;
  min-height: 350px; /* fallback */
  background-color: transparent;
  padding: 0;
  background: #fff9ec;
}

.booking-iframe iframe {
  background-color: transparent;
  border-radius: 12px;
}

.mphb_sc_search-submit-button .button{
  background-color: #a00100;
}

/*  ======================================================
    TABLET
    ====================================================== */
@media (max-width: 1024px) {
  .availability-iframe {
    min-height: 600px;
  }
}

/*  ======================================================
    MOBIEL
    ====================================================== */

@media (max-width: 768px) {
  .availability-iframe {
    min-height: 720px;
  }
}

.availability-page + footer {
  padding-top: 0rem;
}

/* ============================================================================================================
   AVAILABILITY-RESULT PAGE
   ============================================================================================================ */

.availability-results-page {
  min-height: calc(100vh - var(--header-height));
  background: var(--bg);
}

.results-iframe {
  width: 100%;
  height: calc(100vh - var(--header-height));
  border: none;
  display: block;
}

/* ============================================================================================================
   ACCOMMODATIONS PAGE
   ============================================================================================================ */

.accommodations-accommodations {
  background: var(--bg-soft);
  color: var(--text);
}

.accommodations-accommodations h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.accommodations-accommodations .section-intro {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.accommodations-accommodations {
  padding-top: 10px !important; 
}

/* ============================================================================================================
   THE YELLOW HOUSE PAGE & BNB PAGES
   ============================================================================================================ */

.page-yellow-house .hero .eyebrow {
  color: #f2c94c;                 /* geel, tekstkleur */
  background: rgba(242,201,76,.15);
  border-color: rgba(242,201,76,.35);

  max-width: none;                /* <-- dit is de sleutel */
  width: fit-content;             /* shrink-wrap rond tekst */
}

.room-scene {
  padding: 5rem 0;
}

.bg-alt {
  background: var(--bg-soft);
}

.scene-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
}

/* FOTO'S LINKS (tekst rechts) */
.layout-text-right .scene-grid {
  grid-template-columns: 1.8fr 0.9fr;
}

/* FOTO'S RECHTS (tekst links) */
.layout-text-left .scene-grid {
  grid-template-columns: 0.9fr 1.8fr;
}

/* TEXT LEFT */
.layout-text-left .scene-text {
  order: 1;
}
.layout-text-left .scene-media {
  order: 2;
}

/* TEXT RIGHT */
.layout-text-right .scene-media {
  order: 1;
}
.layout-text-right .scene-text {
  order: 2;
}

.layout-text-left .scene-text,
.layout-text-right .scene-text {
  max-width: 420px;
}

/* TEXT MIDDLE (stacked, but still desktop-friendly) */
.layout-text-middle .scene-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.layout-text-middle .scene-text {
  grid-column: 2;
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}

.layout-text-middle .scene-media {
  display: block;
}

.layout-text-middle .scene-text h2 {
  margin-bottom: 1rem;
}

.layout-text-middle .scene-text p {
  font-size: 1.05rem;
  opacity: 0.9;
}

.layout-text-middle .media-left {
  grid-column: 1;
}

.layout-text-middle .media-right {
  grid-column: 3;
}

.media-big-left .media-left img {
  height: 420px;
}

.media-big-left .media-right img {
  height: 300px;
}

.media-big-right .media-right img {
  height: 420px;
}

.media-big-right .media-left img {
  height: 300px;
}

.scene-media {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.2rem;
}

.layout-text-left .scene-media,
.layout-text-right .scene-media {
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
}

.scene-media img.secondary {
  opacity: 0.92;
}

.scene-media .primary {
  grid-row: span 2;
}

.scene-media .secondary {
  opacity: 0.92;
}

.scene-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}

.scene-media video.secondary {
  height: 350px;
}

/* Afbeeldingen én video’s gelijk behandelen */
.scene-media img,
.scene-media video {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.scene-text h2 {
  margin-bottom: 1rem;
}

.scene-text p {
  line-height: 1.55;
}

.scene-intro {
  max-width: 420px;
  font-size: 1.05rem;
  opacity: 0.9;
}

@media (max-width: 900px) {

  /* 1️⃣ ALLE scenes: 1 kolom */
  .room-scene .scene-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  /* 2️⃣ Tekst altijd boven */
  .room-scene .scene-text {
    order: 1;
    text-align: center;
    margin: 0 0 1.5rem;
  }

  /* =========================
     LINKS & RECHTS layouts
     ========================= */

  .layout-text-left .scene-media,
  .layout-text-right .scene-media {
    order: 2;
    grid-template-columns: 1fr;
  }

  .layout-text-left .scene-media img.primary,
  .layout-text-right .scene-media img.primary {
    height: 300px;
  }

  .layout-text-left .scene-media img.secondary,
  .layout-text-right .scene-media img.secondary {
    height: 200px;
  }

  /* =========================
     MIDDLE layout (3 children!)
     ========================= */

  .layout-text-middle .scene-text {
    order: 1;
    max-width: none;
    width: 100%;
  }

  .layout-text-middle .media-left {
    order: 2;
    width: 100%;
  }

  .layout-text-middle .media-right {
    order: 3;
    width: 100%;
  }

  .layout-text-middle .media-left img {
    height: 300px;
    width: 100%;
    display: block;
    height: 300px;
    margin-bottom: 1rem;
  }

  .layout-text-middle .media-right img {
    height: 200px;
    width: 100%;
    display: block;
  }

  .layout-text-middle .scene-text,
  .layout-text-middle .media-left,
  .layout-text-middle .media-right {
    grid-column: auto !important;
  }

  .layout-text-middle .scene-text {
    order: 1;
    max-width: none;
    width: 100%;
    margin: 0 0 1.5rem;
    text-align: center;
  }

  .layout-text-middle .media-left {
    order: 2;
  }

  .layout-text-middle .media-right {
    order: 3;
  }

  .layout-text-middle img {
    width: 100%;
    display: block;
    object-fit: cover;
  }

  .layout-text-middle .media-left img {
    height: 300px;
    margin-bottom: 1rem;
  }

  .layout-text-middle .media-right img {
    height: 200px;
  }

  .scene-media video.secondary {
    height: 200px;
  }

}

/* ============================================================================================================
   SURROUNDINGS PAGE – ALGEMEEN
   ============================================================================================================ */

.surroundings-section {
    background-color: var(--bg-soft);
  }

.surrounding-scene {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 350px;
}

/* titel */
.surroundings-section .section-title {
  text-align: center;
  font-size: 2.5rem;
}

/* MEDIA – vrij schalen (geen inner grid) */
.surroundings-section .scene-media {
  display: block;
}

.surroundings-section .scene-media img,
.surroundings-section .scene-media video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* vult grid netjes zonder vervormen */
}

.surrounding-scene.scene-media-left .media-circle {
  transform: translateX(-80px);
}

/* SURROUNDINGS – circle animation */
.surroundings-section .scene-media.media-circle {
  position: relative;
  border-radius: 50%;
  height: auto;
  overflow: hidden;
  box-shadow: var(--shadow);

  opacity: 0;
  transform: translateX(80px);

  transition:
    transform 1.2s cubic-bezier(.22,.61,.36,1),
    opacity 1.2s ease;
}

.surroundings-section .scene-media.media-circle.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* MEDIA – cirkel */
.scene-media.media-circle {
  width: 420px;
  aspect-ratio: 1 / 1;
  max-width: 50vw;
  justify-self: center;
  margin-right: -80px;
  
}

/* SCENE – media rechts */
.surrounding-scene.scene-media-right {
  grid-template-areas: "text media";
}

.surrounding-scene.scene-media-right .scene-text {
  margin-left: 180px;
}

.surrounding-scene.scene-media-right .scene-media.media-circle {
  justify-self: start;
  margin-left: 180px;
  margin-right: 0;
}

/* tekst */
.scene-text h3 {
  font-size: 1.5rem;
}

/* ============================================
   GOOGLE MAP HIKES – SPECIFIEK 3-KOLOMS GRID
   Alleen voor de hikes-sectie
   ============================================ */

.surrounding-scene.hikes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 50px; /* map | tekst | icons */
  gap: 64px;
  align-items: stretch; /* map vult volledige hoogte van grid */
  min-height: 350px;
}

/* MAP linkerkolom */
.surrounding-scene.hikes-grid .scene-media {
  grid-column: 1;
  height: 100%; 
  display: flex;
}

.surrounding-scene.hikes-grid .scene-media .map-frame {
  flex: 1;               /* iframe vult hoogte en breedte */
  border-radius: 16px;
  overflow: hidden;
}

.surrounding-scene.hikes-grid .scene-media .map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

/* TEKST middenkolom – verticaal centreren */
.surrounding-scene.hikes-grid .scene-text {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center; /* verticaal centreren */
  height: 100%;
}

/* ICONS rechterkolom – boven elkaar, verticaal gecentreerd */
.surrounding-scene.hikes-grid .external-hike-links {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  justify-content: center; /* verticaal centreren */
  align-items: center;
  gap: 16px;
}

.surrounding-scene.hikes-grid .external-hike-links img {
  height: 50px;
  width: auto;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.surrounding-scene.hikes-grid .external-hike-links a:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

/* ========================================
   MAP FRAME (algemeen voor surroundings)
   ======================================== */

.surroundings-section .map-frame {
  max-width: none; /* surroundings page specifiek */
  border-radius: 16px;
  overflow: hidden;
}

/* ========================================
   FOTO´S ONDER HIKE-MAP
   ======================================== */

.hikes-atmosphere {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.hikes-atmosphere img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
}

/* Tablet */
@media (max-width: 900px) {
  .hikes-atmosphere {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile */
@media (max-width: 500px) {
  .hikes-atmosphere {
    grid-template-columns: 1fr;
  }
}

.hikes-atmosphere img {
  filter: saturate(1.05) contrast(1.02);
}

/* ========================================
   PROVIDERS GRID
   ======================================== */

.activities-providers .providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.provider-card {
  display: flex;
  flex-direction: column;
  padding: 20px 22px 18px;
  background-color: var(--card);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.provider-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

.provider-card:first-child {
  border-top: none;
}

.provider-card h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  color: var(--text);
}

.provider-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}

.provider-link {
  margin-top: auto;      /* ← duwt link naar onderkant */
  align-self: flex-start;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
}

.provider-link:hover {
  text-decoration: underline;
}

/* ========================================
   MODAL
   ======================================== */

.provider-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
}

.provider-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.provider-modal-content {
  position: relative;
  max-width: 560px;
  margin: 6vh auto;
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 24px;
}

.provider-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
}

.provider-modal-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
}

.provider-modal-images img {
  width: 100%;
  border-radius: 12px;
}

.provider-modal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.provider-modal-link {
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.provider-modal-link:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 600px) {
  .provider-card {
    padding: 18px;
  }
}

/* =========================================================
   MOBILE – EENDUIDIGE LAYOUT
   ========================================================= */
@media (max-width: 900px) {

  /* -------------------------------------------------
     1. DESKTOP GRID / MARGINS VOLLEDIG UIT
     ------------------------------------------------- */
  .surrounding-scene,
  .surrounding-scene.scene-media-left,
  .surrounding-scene.scene-media-right,
  .surrounding-scene.hikes-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: 12px;
  }

  .surrounding-scene + .surrounding-scene {
    margin-top: 36px;   /* hier zit je “lucht” */
  }

  .surrounding-scene {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .scene-media,
  .scene-text,
  .external-hike-links {
    width: 100%;
    margin: 0 !important;
  }

  /* -------------------------------------------------
     2. ALGEMENE VOLGORDE (MOBILE STANDAARD)
     h3 → media → p
     ------------------------------------------------- */

  .surrounding-scene .scene-text {
    display: contents;
  }

  .scene-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 520px;
    order: 1;
  }

.surrounding-scene h3 {
    order: 1;
    margin: 0 0 6px 0;
    text-align: center;
  }

  .surrounding-scene .scene-media {
    order: 2;
    margin: 8px auto;
  }

  .surrounding-scene p {
    order: 3;
    margin: 0;
    text-align: center;
  }

  /* -------------------------------------------------
     3. BBQ – PERFECTE CIRKEL + CENTRERING
     ------------------------------------------------- */
  .scene-media.media-circle {
    width: 260px !important;
    height: 260px !important;
    min-width: 260px;
    min-height: 260px;

    border-radius: 50%;
    overflow: hidden;

    flex: 0 0 auto;           /* <-- cruciaal */
    box-sizing: content-box; /* <-- voorkomt knijpen */

    margin: 0 auto;           /* centreert */
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transform: translateX(60px);
    animation: bbq-fly-in 0.8s ease-out forwards;
  }

  .scene-media.media-circle video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  @keyframes bbq-fly-in {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* -------------------------------------------------
     4. HIKES – SPECIFIEKE VOLGORDE
     tekst → map → icons
     ------------------------------------------------- */
  .surrounding-scene.hikes-grid .scene-text {
    order: 1;
  }

  .surrounding-scene.hikes-grid .scene-media {
    order: 2;
  }

  .surrounding-scene.hikes-grid .external-hike-links {
    order: 3;
  }

  /* -------------------------------------------------
     5. HIKES MAP – ZICHTBAAR & JUISTE MAAT
     ------------------------------------------------- */
  .surrounding-scene.hikes-grid .map-frame {
    width: 100%;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
  }

  .surrounding-scene.hikes-grid iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
  }

  /* -------------------------------------------------
     6. HIKES ICONS – NAAST ELKAAR ONDER MAP
     ------------------------------------------------- */
  .external-hike-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
  }

  .external-hike-links img {
    width: 44px;
    height: 44px;
  }

    .surrounding-scene.hikes-grid .external-hike-links {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-top: 12px;
  }

}

/* ============================================================================================================
   ABOUT US PAGE
   ============================================================================================================ */

/* ===== SECTION ===== */

.about-hosts {
  background: var(--bg-soft);
}

.about-hosts-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
/* ===== GRID (desktop) ===== */

.about-hosts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: top;
}

/* ===== TEXT ===== */

.about-hosts-text h1 {
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.about-hosts-text p {
  margin-bottom: 1rem;
  max-width: 620px;
}

/* ======================================================
   MEDIA – OVERLAPPENDE CIRKELS
   ====================================================== */

.about-hosts-media {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}

.about-hosts-media .media-stack {
  position: relative;
  width: 400px;            /* desktop compositie */
  height: 400px;
}

/* ALGEMEEN */
.about-hosts-media .media-circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow);
  opacity: 0;

  transition:
    transform 1.2s cubic-bezier(.22,.61,.36,1),
    opacity 1.2s ease;
}

.about-hosts-media .media-circle img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* VIDEO – groot, links gecentreerd */
.about-hosts-media .media-photo1 {
  width: 400px;
  height: 400px;
  left: 0;
  top: 0;
  z-index: 1;

  transform: translateX(120px);
}

.about-hosts-media .media-photo1.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* FOTO – kleiner, overlapt */
.about-hosts-media .media-photo2 {
  width: 300px;
  height: 300px;

  right: -240px;
  top: 240px;
  z-index: 2;

  border: 8px solid var(--bg-soft);

  transform: translateX(160px);
  transition-delay: 0.35s;
}

.about-hosts-media .media-photo2.is-visible {
  opacity: 1;
  transform: translateX(-40px);
}

/* =================================================
    CONTINUED CONTENT 
   ================================================= */

.about-hosts-content {
  margin-top: 0.5rem;
  max-width: 800px;
}

.about-hosts-content p {
  margin-bottom: 0.5rem;
}

/* inline image inside text */
.inline-photo-grid {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
}

.about-inline-photo {
  width: 260px;
  height: auto;
  margin: 2rem auto;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.inline-photo-grid-content {
  align-content: center;
}

/* ======================================================
   MOBIEL
   ====================================================== */

@media (max-width: 960px) {
  .about-hosts-grid {
    grid-template-columns: 1fr;
  }

  .about-hosts-media {
    margin-top: 0;
  }

  .about-hosts-text h1 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .about-hosts-media .media-stack {
    width: 300px;
    height: 300px;
  }

  .about-hosts-media .media-photo1 {
    width: 260px;
    height: 260px;
    aspect-ratio: 1 / 1;
  }
  
  .about-hosts-media .media-photo1.is-visible {
    transform: translateX(-20px);
    opacity: 1;
  }

  .about-hosts-media .media-photo2 {
    width: 160px;
    height: 160px;
    aspect-ratio: 1 / 1;
    right: -50px;
    top: 150px;

    transform: translateX(80px);
  }

  .about-host-media .media-photo2.is-visible {
    transform: translateX(-20px);
    opacity: 1;
  }

  .inline-photo-grid {
    grid-template-columns: 1fr;
  }

  .inline-photo {
    display: flex;
    justify-content: center;
  }

}

/* ============================================================================================================================
   CONTACT PAGE
   ============================================================================================================================ */

.contact {
  background: var(--bg-soft);
}

/* Grid */
.contact-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-intro h1 {
  margin-bottom: 0.75rem;
}

/* Left text */
.contact-info p {
  max-width: 620px;
  margin-bottom: 1.25rem;
}

.contact-note {
  font-size: 0.95rem;
  opacity: 0.85;
}

.contact-note a {
  text-decoration: underline;
}

/* Form */
.contact-form-wrapper {
  background: var(--bg-main);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.form-field input,
.form-field textarea {
  font-family: inherit;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;

  background-color: var(--bg-input, #ffffff);
  color: var(--text-main, #111);

  border: 1px solid var(--border-soft, rgba(0,0,0,0.25));

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(160, 1, 0, 0.15);
}

/* Button */
.btn-primary {
  margin-top: 0.75rem;
  align-self: flex-start;

  width: auto;
  height: 34px;

  padding: 0.5rem;
  border-radius: 12px;

  background-color: #a00100;
  color: #ffffff;

  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;

  border: none;
  cursor: pointer;

  transition:
    background-color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-primary:hover {
  background-color: #00a003;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.contact-form-feedback {
  opacity: 0;
  transition: opacity 0.5s ease;
  margin-top: 1rem;
  font-weight: 600;
}

.contact-form-feedback.show {
  opacity: 1;
}

/* ======================================================================
   MOBILE
   ====================================================================== */

@media (max-width: 900px) {

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

}
