/* ============================================================
   Debby's Childcare — Main Stylesheet
   ============================================================
   Colour Palette:
     --white:   #FAF7F2  (cream background — matches logo)
     --green:   #C49A0A  (warm amber — secondary accent)
     --green-light: #FEF4CC (light amber tint — section backgrounds)
     --coral:   #F5C100  (golden yellow — primary accent, CTAs)
     --coral-light: #FFFBEA (light gold — section backgrounds)
     --brown:   #3D3229  (dark warm brown — headings)
     --text:    #5C4E45  (body text)
     --muted:   #9C8B83  (muted/secondary text)
     --border:  #E8DFD8  (soft border)

   Fonts: Nunito (loaded from Google Fonts in each HTML file)
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white:        #FAF7F2;
  --green:        #C49A0A;
  --green-dark:   #9A7808;
  --green-light:  #FEF4CC;
  --coral:        #F5C100;
  --coral-dark:   #D9AB00;
  --coral-light:  #FFFBEA;
  --brown:        #3D3229;
  --text:         #5C4E45;
  --muted:        #9C8B83;
  --border:       #E8DFD8;
  --shadow:       0 4px 20px rgba(61, 50, 41, 0.08);
  --shadow-md:    0 8px 32px rgba(61, 50, 41, 0.12);
  --radius:       16px;
  --radius-sm:    10px;
  --nav-height:   136px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Nunito', sans-serif;
  color: var(--brown);
  line-height: 1.25;
  font-weight: 800;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Layout Helpers ---- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--green {
  background-color: var(--green-light);
}

.section--coral {
  background-color: var(--coral-light);
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text);
  margin-top: 12px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.97rem;
  font-weight: 800;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--coral {
  background-color: #FFF380;
  color: #1A1A1A;
  border-color: #FFF380;
}

.btn--coral:hover {
  background-color: #FFE640;
  border-color: #FFE640;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 243, 128, 0.55);
}

.btn--green {
  background-color: var(--green);
  color: #1A1A1A;
  border-color: var(--green);
}

.btn--green:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 154, 10, 0.4);
}

.btn--outline {
  background-color: transparent;
  color: var(--brown);
  border-color: var(--border);
}

.btn--outline:hover {
  border-color: var(--green);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ---- Header & Navigation ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #FAF7F2;
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(61, 50, 41, 0.06);
  overflow: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--brown);
  flex-shrink: 0;
  white-space: nowrap;
  background: transparent;
}

.nav-logo-img {
  height: 120px;
  width: auto;
  display: block;
  background: transparent;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.nav-links a {
  white-space: nowrap;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--coral);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brown);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Nav CTA is more compact than the body CTAs so longer
   translations ("Kostenlosen Besuch buchen") still fit. */
.nav-cta .btn {
  white-space: nowrap;
  padding: 10px 18px;
  font-size: 0.88rem;
}

/* Between 720px and ~1160px, tighten nav spacing further so the
   longer German/Italian/French labels don't push the CTA off-row. */
@media (max-width: 1160px) {
  .nav {
    gap: 14px;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-links a {
    font-size: 0.9rem;
  }
  .nav-cta .btn {
    padding: 9px 14px;
    font-size: 0.82rem;
  }
  .nav-logo {
    font-size: 1.1rem;
  }
  .nav-logo-img {
    height: 100px;
  }
  .nav-logo-icon {
    width: 34px;
    height: 34px;
    font-size: 1.05rem;
  }
}

/* Hamburger — mobile only */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--brown);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Mobile Nav Drawer ---- */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background-color: #FAF7F2;
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 16px 24px 24px;
  box-shadow: var(--shadow-md);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav-mobile a:hover {
  color: var(--coral);
}

.nav-mobile .btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* ---- Footer ---- */
.site-footer {
  background-color: #FAF7F2;
  color: var(--text);
  padding: 56px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.92rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 4px;
}

.footer-logo-img {
  height: 100px;
  width: auto;
  display: block;
  max-width: 100%;
}

.footer-col h4 {
  color: var(--brown);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text);
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--brown);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.footer-contact-item a {
  color: var(--text);
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--brown); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---- WhatsApp Floating Button ---- */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #FFFFFF;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  max-width: 70%;
  display: block;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.65) 40%,
    rgba(255, 255, 255, 0.08) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--green-light);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--coral);
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.trust-item span.icon {
  font-size: 1.1rem;
}

/* ---- Intro Strip (homepage) ---- */
.intro-strip {
  background-color: var(--coral);
  padding: 32px 0;
  color: #1A1A1A;
}

.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 700;
}

.strip-item-icon {
  font-size: 1.5rem;
}

/* ---- About Preview (homepage) ---- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-preview-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  position: relative;
}

.about-preview-images img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

.about-preview-images img:first-child {
  grid-column: 1 / -1;
  height: 280px;
}

.about-preview-images img:nth-child(2),
.about-preview-images img:nth-child(3) {
  height: 180px;
}

.about-text .section-label {
  display: block;
}

.about-text h2 {
  margin-bottom: 16px;
}

.about-text p {
  margin-bottom: 16px;
}

.about-text .btn {
  margin-top: 8px;
}

/* ---- Services Preview Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background-color: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--text);
  flex: 1;
  margin-bottom: 24px;
}

.service-card .btn {
  align-self: flex-start;
}

/* ---- Photo Gallery Strip ---- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-strip img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  height: 240px;
  transition: transform 0.3s;
}

.gallery-strip img:hover {
  transform: scale(1.02);
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: #35281E;
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
  color: #fff;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 32px;
}

.cta-banner .btn--coral {
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--coral-light) 100%);
  padding: 72px 0 64px;
  text-align: center;
}

.page-hero .section-label {
  display: block;
  margin-bottom: 10px;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  color: var(--text);
}

/* ---- About Page ---- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.about-story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-story-images img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

.about-story-images img:first-child {
  grid-column: 1 / -1;
  height: 300px;
}

.about-story-images img:nth-child(2),
.about-story-images img:nth-child(3) {
  height: 190px;
}

.about-qualifications {
  margin-top: 32px;
}

.about-qualifications h3 {
  margin-bottom: 16px;
}

.qual-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qual-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background-color: var(--green-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.qual-item-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Values Section ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
  background-color: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---- Services Page ---- */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-full-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.service-full-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-full-card .card-img {
  height: 220px;
  overflow: hidden;
}

.service-full-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s;
}

.service-full-card:hover .card-img img {
  transform: scale(1.05);
}

.card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body .service-icon {
  margin-bottom: 16px;
}

.card-body h3 {
  margin-bottom: 8px;
}

.card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0 16px;
}

.badge {
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  background-color: var(--green-light);
  color: var(--green-dark);
}

.badge--coral {
  background-color: var(--coral-light);
  color: var(--coral-dark);
}

.card-body p {
  font-size: 0.93rem;
  color: var(--text);
  flex: 1;
  margin-bottom: 24px;
}

.card-body .btn {
  align-self: flex-start;
}

.pricing-note {
  text-align: center;
  padding: 32px;
  background-color: var(--green-light);
  border-radius: var(--radius);
  margin-top: 40px;
}

.pricing-note p {
  margin: 0;
  font-size: 1rem;
  color: var(--brown);
}

.pricing-note strong {
  color: var(--coral-dark);
}

/* ---- Pricing Section: Betreuungsangebot und Tarife ---- */
.pricing-table-wrap {
  overflow-x: auto;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 40px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.pricing-table thead th {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: var(--brown);
  background-color: var(--green-light);
  font-size: 0.9rem;
}

.pricing-table thead th:first-child {
  border-radius: var(--radius) 0 0 0;
}

.pricing-table thead th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.pricing-table tbody th {
  font-weight: 800;
  color: var(--brown);
  white-space: nowrap;
}

.pricing-table tbody td {
  color: var(--text);
  font-weight: 700;
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-time {
  display: block;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 2px;
  white-space: nowrap;
}

/* Mobile pricing cards: hidden by default, shown below the table breakpoint */
.pricing-cards {
  display: none;
}

.pricing-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.pricing-card h3 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.pricing-card-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.pricing-card-list li:first-child {
  padding-top: 0;
  border-top: none;
}

.pricing-card-list li span {
  color: var(--text);
  font-size: 0.93rem;
}

.pricing-card-list li strong {
  color: var(--coral-dark);
  font-size: 1rem;
  white-space: nowrap;
}

.pricing-info-card {
  margin-top: 32px;
  padding: 32px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.pricing-info-card--accent {
  background-color: var(--coral-light);
  border-color: var(--coral-light);
}

.pricing-info-card h3 {
  margin-bottom: 16px;
}

.pricing-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-info-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
}

.pricing-info-list li strong {
  color: var(--coral-dark);
}

.pricing-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.pricing-fact h4 {
  font-size: 0.98rem;
  margin-bottom: 6px;
  color: var(--brown);
}

.pricing-fact p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0;
}

.pricing-note-box {
  margin-top: 32px;
  padding: 28px 32px;
  background-color: var(--green-light);
  border-radius: var(--radius);
}

.pricing-note-box h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.pricing-note-box p {
  color: var(--brown);
  margin-bottom: 0;
}

.pricing-validity {
  margin-top: 24px;
  text-align: center;
  font-weight: 800;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .pricing-table-wrap {
    display: none;
  }

  .pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .pricing-info-card {
    padding: 24px;
  }
}

/* ---- Booking Page ---- */
.booking-sections {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.booking-block {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.booking-block-header {
  margin-bottom: 28px;
}

.booking-block-header h2 {
  margin-bottom: 8px;
}

.booking-block-header p {
  color: var(--text);
  font-size: 0.98rem;
}

/* Cal.com embed container */
.cal-embed-wrapper {
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 600px;
  background-color: var(--white);
}

/* Stripe payment block */
.stripe-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.stripe-note {
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Contact form */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--brown);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--brown);
  background-color: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(196, 154, 10, 0.18);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239C8B83' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-submit-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-success {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ---- Contact Page ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.2s;
}

.contact-card:hover {
  box-shadow: var(--shadow);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card-body h4 {
  margin-bottom: 4px;
}

.contact-card-body a,
.contact-card-body p {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
}

.contact-card-body a:hover {
  color: var(--coral);
}

.contact-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.contact-images img {
  border-radius: var(--radius);
  object-fit: cover;
  height: 200px;
  width: 100%;
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero {
    height: 500px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .about-preview {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-height: 76px;
  }

  .section {
    padding: 56px 0;
  }

  /* Hide desktop nav links and CTA on mobile */
  .nav-links,
  .nav-cta {
    display: none;
  }

  /* Constrain logo to fit inside mobile header */
  .nav-logo-img {
    height: 60px;
    max-height: 60px;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    height: 400px;
  }

  .hero-bg::after {
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.92) 0%,
      rgba(255,255,255,0.75) 60%,
      rgba(255,255,255,0.40) 100%
    );
  }

  .hero-content {
    padding: 40px 0;
    max-width: 100%;
  }

  .hero-trust {
    display: none;
  }

  .about-preview-images img:first-child {
    height: 220px;
  }

  .about-story-images img:first-child {
    height: 240px;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip img {
    height: 200px;
  }

  .cta-banner {
    padding: 40px 24px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .booking-block {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .intro-strip-inner {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .services-full-grid {
    grid-template-columns: 1fr;
  }

  .contact-images {
    grid-template-columns: 1fr;
  }

  .contact-images img {
    height: 180px;
  }
}


/* ============================================================
   LANGUAGE SWITCHER
   Flag-only round buttons. Inactive flags are slightly faded
   (desaturated + reduced opacity) to direct the eye to the
   selected one. Hover restores full colour.
   ============================================================ */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background-color: var(--green-light);
  border-radius: 999px;
  border: 1px solid var(--border);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1;
  transition: background-color 0.15s, opacity 0.15s, filter 0.15s, transform 0.15s;
  opacity: 0.6;
  filter: grayscale(45%);
}

.lang-btn:hover {
  opacity: 1;
  filter: grayscale(0%);
  background-color: rgba(255, 255, 255, 0.7);
}

.lang-btn.active {
  opacity: 1;
  filter: grayscale(0%);
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(61, 50, 41, 0.12);
  transform: scale(1.04);
}

.lang-btn .lang-flag {
  display: block;
  line-height: 1;
}

/* Nav row — sit between nav links and the CTA */
.nav-lang {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

/* Mobile drawer switcher — centred above the CTA button */
.nav-mobile .lang-switcher {
  align-self: center;
  margin: 8px 0;
}

/* ============================================================
   TYPICAL DAY SCHEDULE (About page)
============================================================ */
.day-schedule {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.day-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-left: 3px solid var(--green-light);
  margin-left: 12px;
  position: relative;
}

.day-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: var(--green);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--green);
}

.day-item:last-child {
  border-left-color: transparent;
}

.day-time {
  font-weight: 900;
  font-size: 0.92rem;
  color: var(--green-dark);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.day-activity {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--text);
}

.day-dot {
  font-size: 1.25rem;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .day-item {
    grid-template-columns: 110px 1fr;
    gap: 10px;
    padding: 12px 12px;
  }
  .day-time { font-size: 0.82rem; }
}

/* ============================================================
   CONTACT FORM (EmailJS) — contact.html
============================================================ */
.contact-form-section {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.contact-form-section .form-group {
  margin-bottom: 18px;
}

.contact-form-section label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brown);
  margin-bottom: 6px;
}

.contact-form-section input,
.contact-form-section select,
.contact-form-section textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.contact-form-section input:focus,
.contact-form-section select:focus,
.contact-form-section textarea:focus {
  outline: none;
  border-color: var(--green);
}

.contact-form-section textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 560px) {
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-form-section { padding: 24px 18px; }
}

.form-success-msg {
  display: none;
  align-items: center;
  gap: 12px;
  background: var(--green-light);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--green-dark);
  font-weight: 700;
  margin-top: 16px;
}

.form-success-msg.visible { display: flex; }

/* ============================================================
   CALENDAR EMBED SECTION
============================================================ */
.calendar-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--bg-light);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-wrapper iframe {
  width: 100%;
  min-height: 500px;
  border: none;
  display: block;
}
