/*
 Theme Name: Art Studio
 Version: 1.1.0
*/
/* CSS for section section:Header */
.site-header {
  background-color: #0b1f47;
  padding: 16px 0;
  position: relative;
  z-index: 100;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
/* Mobile: keep the logo in flow so it can't be clipped off the top of the page. */
.logo img {
  height: 56px;
  width: auto;
  display: block;
}
a.logo {
  display: block;
}

/* Desktop: the tall logo overhangs the header bar as designed. */
@media (min-width: 1024px) {
  .logo img {
    height: 90px;
    position: absolute;
    margin-top: -45px;
  }
  a.logo {
    min-width: 135px;
  }
}
.main-nav {
  display: none;
  align-items: center;
  gap: 34px;
}
.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s;
}
.main-nav a:hover {
  opacity: 0.8;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.phone {
  color: #ffffff;
  font-size: 14px;
  display: none;
  text-decoration: none;
}
.phone:hover {
  opacity: 0.8;
}
.social-icon img {
  width: 24px;
  height: 24px;
}
.btn-small {
      padding: 11px 26px;
    font-size: 14px;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }
  .phone {
    display: block;
  }
}

/* Between 1024 and the 1440 design width the container padding leaves too
   little room for logo + nav + phone + CTA, so the header wrapped onto a
   second row. Tighten the nav and drop the (duplicated) phone number. */
@media (min-width: 1024px) and (max-width: 1439px) {
  .main-nav {
    gap: 20px;
  }
  .phone {
    display: none;
  }
}

/* CSS for section section:Hero */
.hero-title span {
    font-style: italic;
}
.hero-wrapper {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}
@media (min-width: 768px) {
  .hero-wrapper {
    min-height: 800px;
  }
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(47,45,43,0.25) 0%, rgba(47,45,43,1) 100%);
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hero-title {
  font-size: 36px;
  margin: 0;
  font-family: 'Playfair Display';
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 72px;
  }
}
.hero-subtitle {
  font-size: 18px;
  color: #e9effa;
  margin: 0;
}
@media (min-width: 768px) {
      .hero-subtitle {
        font-size: 24px;
        line-height: 110%;
        text-transform: uppercase;
    }
}
.hero-divider {
  width: 100%;
  height: 1px;
  background-color: #efeeec;
  margin: 8px 0;
}
.hero-price {
  font-size: 20px;
    font-weight: bold;
  color: #efeeec;
  margin: 0;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  width: 100%;
}
@media (min-width: 600px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }
}
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 2;
}
.slider-dots img {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* CSS for section section:Features */
.features-wrapper {
  padding: 80px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #dde1e6;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 24px;
}
@media (min-width: 1024px) {
  .feature-card {
    align-items: center;
    text-align: center;
    padding: 0;
  }
}
.feature-card img {
  width: 64px;
  height: 64px;
}
.feature-text h3 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  font-size: 24px;
  color: #2f2d2b;
  margin-bottom: 8px;
  line-height: 110%;
  letter-spacing: 0.02em;
}
.feature-text p {
  font-size: 14px;
  color: #2f2d2b;
  margin: 0;
}

/* CSS for section section:About */
.about-wrapper {
  background-color: #0b1f47;
  position: relative;
  overflow: hidden;
}
.about-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/e132e854917fb70b4da07889d9c44c847315206f.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.about-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .about-container {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
}
.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-content .section-heading {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 110%;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .about-content .section-heading {
    font-size: 48px;
  }
}
.about-divider {
  border-top-color: #efeeec;
  opacity: 0.3;
  margin: 32px 0 0;
}
.about-text {
  color: #ffffff;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0.005em;
}
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.about-image img {
  width: 100%;
  max-width: 514px;
  height: auto;
  object-fit: cover;
  background-color: #dddfe6;
}

/* CSS for section section:Rooms */
.rooms-wrapper {
  background-color: #efeeec;
  padding-top: 80px;
}
.backgrounds-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 1024px) {
  .backgrounds-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.bg-card {
  background-color: #ffffff;
  border: 1px solid #a4a09a;
  display: flex;
  flex-direction: column;
  /* Without this the fixed-height cover image forces the 1fr track
     to its intrinsic aspect width and the card overflows on mobile. */
  min-width: 0;
}
.bg-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background-color: #dddfe6;
}
@media (min-width: 768px) {
  .bg-card img {
    height: 400px;
  }
}
.bg-card-content {
  padding: 32px;
}
@media (min-width: 768px) {
  .bg-card-content {
    padding: 48px;
  }
}
.bg-card-content h3 {
  font-size: 28px;
  margin-bottom: 16px;
  font-family: 'Playfair Display';
  overflow-wrap: break-word;
}
@media (min-width: 768px) {
  .bg-card-content h3 {
    font-size: 36px;
  }
}
.zones-container {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
}
.zone-row {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .zone-row {
    flex-direction: row;
    align-items: stretch;
    min-height: 600px;
  }
  .zone-row.reverse {
    flex-direction: row-reverse;
  }
}
.zone-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 1024px) {
  .zone-image,
  .zone-text-wrapper {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
/* ZONE-004: dekorativer Schriftzug in "Great Vibes" laut Design-System. */
.zone-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-family: 'Great Vibes', cursive;
  font-size: 48px;
  font-weight: 400;
  color: #f5ece9;
  opacity: 0.35;
  pointer-events: none;
}
@media (min-width: 600px) {
  .zone-overlay-text {
    font-size: 72px;
  }
}
@media (min-width: 768px) {
  .zone-overlay-text {
    font-size: 96px;
  }
}
.zone-text-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}
@media (min-width: 1024px) {
  .zone-text-wrapper {
    padding: 80px;
  }
}
.zone-text {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.zone-text h3 {
  font-size: 36px;
  margin: 0;
  font-family: 'Playfair Display';
}

.zone-text hr {
  width: 1px;
  height: 120px;
  margin: 24px auto;
  border: 0;
  background-color: #d6d2cc;
}
.booking-banner {
  background-color: #0b1f47;
  color: #c1d3f1;
  text-align: center;
  padding: 24px 0;
  font-size: 16px;
}
.booking-banner p {
  margin: 0;
}

/* CSS for section section:Equipment */
.equipment-wrapper {
  background-color: #efeeec;
  padding: 80px 0;
}
.equipment-content-box {
  background-color: #ffffff;
  border: 1px solid #a4a09a;
  display: flex;
  flex-direction: column;
}
.equipment-main-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background-color: #dddfe6;
}
@media (min-width: 768px) {
  .equipment-main-img img {
    height: 400px;
  }
}
.equipment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 32px;
}
@media (min-width: 768px) {
  .equipment-grid {
    grid-template-columns: 1fr 1fr;
    padding: 48px;
  }
}
.eq-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.eq-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.eq-header img {
  width: 48px;
  height: 48px;
}
@media (min-width: 768px) {
  .eq-header img {
    width: 64px;
    height: 64px;
  }
}
.eq-header h3 {
  font-size: 26px;
  font-family: 'Playfair Display';
  margin: 0;
  overflow-wrap: break-word;
  min-width: 0;
}
@media (min-width: 480px) {
  .eq-header h3 {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .eq-header h3 {
    font-size: 36px;
  }
}
.eq-item p {
  font-size: 16px;
  margin-bottom: 12px;
}
.equipment-additional-box {
  margin-top: 24px;
}
.additional-equipment {
  padding: 32px;
}
@media (min-width: 768px) {
  .additional-equipment {
    padding: 48px;
  }
}

.eq-list {
  margin: 16px 0 0;
  padding-left: 20px;
}

.eq-list li {
  margin: 0 0 16px;
}

.eq-list li:last-child {
  margin-bottom: 0;
}
.add-eq-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .add-eq-cols {
    grid-template-columns: 1fr 1fr;
  }
}
.add-eq-cols p {
  margin-bottom: 12px;
}

/* CSS for section section:Pricing */
.pricing-wrapper {
  background-color: #0b1f47;
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.pricing-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/e132e854917fb70b4da07889d9c44c847315206f.png');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}
.pricing-wrapper .container {
  position: relative;
  z-index: 2;
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  .pricing-cards {
    grid-template-columns: 1fr 1fr;
  }
}
.price-card {
  background-color: #ffffff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}
@media (min-width: 768px) {
  .price-card {
    padding: 48px;
  }
}
.price-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
}
.price-desc {
  font-size: 16px;
  margin-bottom: 24px;
  min-height: 72px;
}
.price-limit {
  font-weight: 600;
  margin-bottom: 16px;
}
.price-card hr {
  width: 100%;
  margin: 24px 0;
}
.price-tiers {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.price-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.price-amount {
  font-size: 56px;
  color: #4c7dd9;
      line-height: 56px;
}
.payment-methods {
  margin-top: 80px;
}
.payment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) {
  .payment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.payment-card {
  background-color: #ffffff;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-width: 0;
}
.payment-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.payment-card img {
  width: 48px;
  height: 48px;
}
.payment-card h4 {
  font-size: 28px;
  margin: 0;
  font-family: 'Playfair Display';
  overflow-wrap: break-word;
  hyphens: auto;
}
@media (min-width: 1200px) {
  .payment-card h4 {
    font-size: 36px;
  }
}
.payment-card p {
  font-size: 14px;
  margin: 0;
}
.payment-badge {
  background-color: #d7d3ce;
  color: #444240;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 600;
  align-self: flex-start;
  text-align: center;
  width: 100%;
}

/* CSS for section section:CTA */
.cta-wrapper {
  background-color: #ffffff;
  padding: 80px 0;
}

/* CSS for section section:FAQ */
.faq-wrapper {
  background-color: #efeeec;
  padding: 80px 0;
}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 1024px) {
  .faq-container {
    flex-direction: row;
    align-items: flex-start;
  }
}
.faq-header {
  flex: 1;
}
.faq-list {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.faq-item {
  background-color: #ffffff;
  border: 1px solid #a4a09a;
  padding: 16px;
  cursor: pointer;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  font-family: 'Playfair Display';
  /* body sets line-height: 110%, which makes wrapped questions overlap */
  line-height: 1.3;
}
@media (min-width: 768px) {
  .faq-question {
    font-size: 24px;
  }
}
.faq-question img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.container.faq-container {
    max-width: 1010px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #2f2d2b;
}

.faq-item.is-open .faq-answer {
  max-height: 240px;
}

.faq-item.is-open .faq-question img {
  transform: rotate(45deg);
}

.faq-question img {
  transition: transform 0.2s ease;
}

/* CSS for section section:Gallery */
.gallery-wrapper {
  background-color: #ffffff;
  padding: 80px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: #dddfe6;
}
@media (min-width: 768px) {
  .gallery-grid img {
    height: 300px;
  }
}
.gallery-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media (min-width: 600px) {
  .gallery-buttons {
    flex-direction: row;
  }
}

/* CSS for section section:Contact */
.contact-wrapper {
  background-color: #efeeec;
  padding: 80px 0;
}
.contact-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.contact-info {
  text-align: center;
}
@media (min-width: 1024px) {
  .contact-info {
    text-align: left;
  }
}
.contact-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .contact-content {
    flex-direction: row;
    gap: 24px;
  }
}
.contact-map-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-map {
  background-color: #d7d3ce;
  height: 300px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .contact-map {
    height: 419px;
  }
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-detail-item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.contact-detail-item a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.contact-detail-item a:hover {
  text-decoration: underline;
}
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 600px) {
  .form-row {
    flex-direction: row;
  }
  .form-row .form-group {
    flex: 1;
  }
}
.form-input {
  background-color: #ffffff;
  border: 1px solid #a4a09a;
  padding: 12px 16px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  color: #2f2d2b;
  width: 100%;
}
.form-input::placeholder {
  color: #726f6b;
}
.form-textarea {
  height: 150px;
  resize: vertical;
}
@media (min-width: 768px) {
  .form-textarea {
    height: 201px;
  }
}
.form-submit {
  width: 100%;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #151a0e;
  margin-top: 8px;
  line-height: 1.4;
}
.form-checkbox img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.form-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin: 0;
  border: 1px solid #a4a09a;
  border-radius: 4px;
  background-color: #ffffff;
  cursor: pointer;
  display: grid;
  place-content: center;
  transition: background-color 0.2s, border-color 0.2s;
}
.form-checkbox input[type="checkbox"]::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg) translate(1px, -1px);
  opacity: 0;
  transition: opacity 0.2s;
}
.form-checkbox input[type="checkbox"]:checked {
  background-color: #224a96;
  border-color: #224a96;
}
.form-checkbox input[type="checkbox"]:checked::after {
  opacity: 1;
}
.form-checkbox input[type="checkbox"]:focus-visible {
  outline: 2px solid #224a96;
  outline-offset: 2px;
}

/* Honeypot — hidden from humans, reachable by bots */
.contact-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-status {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  min-height: 1px;
}
.form-status:empty {
  display: none;
}
.form-status.is-success {
  color: #1c6b3a;
}
.form-status.is-error {
  color: #b3261e;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* CSS for section section:Footer */
.site-footer {
  background-color: #0b1f47;
  color: #ffffff;
  padding: 48px 0;
  position: relative;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-logo-address {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-logo-address {
    flex-direction: row;
    align-items: center;
    gap: 48px;
            height: 50px;
  }
}
.footer-logo {
  height: 100px;
  width: auto;
}
.footer-logo-address p, .footer-contact p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
/* iOS Safari auto-links bare phone numbers and paints them its own blue.
   These are explicit links, so force the footer colour on every state. */
.footer-contact a,
.footer-contact a:link,
.footer-contact a:visited,
.footer-contact a:hover,
.footer-contact a:active,
.site-footer a[href^="tel"],
.site-footer a[href^="mailto"] {
  color: #ffffff;
  text-decoration: none;
  -webkit-text-fill-color: #ffffff;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-contact {
  text-align: left;
}
@media (min-width: 768px) {
  .footer-contact {
    text-align: right;
  }
}
.footer-divider {
  border-top-color: #c1c7cd;
  opacity: 0.3;
  margin: 24px 0;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-bottom p {
  margin: 0;
}
.footer-links {
  display: flex;
  gap: 16px;
}
.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer-links a:hover {
  opacity: 0.8;
}
.scroll-top {
  position: absolute;
  bottom: 48px;
  right: 20px;
  width: 48px;
  height: 48px;
  background-color: #224a96;
  border: 1px solid #4c7dd9;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media (min-width: 768px) {
  .scroll-top {
    right: 40px;
    width: 64px;
    height: 64px;
  }
}

/* ========================================
   BOOKING PAGE STYLES (Multi-step)
   ======================================== */

.booking-page {
  background-color: #ffffff;
}

.booking-step {
  padding: 40px 0;
}

.step-header {
  text-align: center;
  margin-bottom: 48px;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  color: #2f2d2b;
  margin: 0 0 16px;
}

.step-subtitle {
  font-size: 18px;
  color: #726f6b;
  margin: 0;
}

/* Booking Hero + Progress (match temp pages structure) */
.booking-hero {
  padding-top: 50px;
  padding-bottom: 32px;
}

.booking-hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
      max-width: 100%;
}

.booking-hero .hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  color: #2f2d2b;
  margin: 0 0 0px;
}

.booking-hero .title-italic {
  font-style: italic;
}

.booking-hero .hero-subtitle {
  font-size: 16px;
  color: #2f2d2b;
  margin: 0 0 30px;
  text-transform: none;
  letter-spacing: normal;
}

.booking-hero .booking-type-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.booking-page {
  --booking-accent: #4c7dd9;
  --booking-accent-strong: #224a96;
  --booking-accent-hover: #1a3a75;
  --booking-accent-soft: #e9effa;
  --booking-accent-soft-line: #d0def4;
  --booking-accent-contrast: #ffffff;
}

.booking-page[data-booking-type="commercial"] {
  --booking-accent: #d09a7d;
  --booking-accent-strong: #8d6350;
  --booking-accent-hover: #7b5443;
  --booking-accent-soft: #f4e8e1;
  --booking-accent-soft-line: #ead5c8;
}

.booking-hero .toggle-switch {
  display: inline-flex;
  background-color: #ffffff;
  border: 1px solid #d7d3ce;
  border-radius: 51px;
  padding: 4px;
}

.booking-hero .toggle-btn {
  padding: 12px 24px;
  border-radius: 52px;
  font-size: 14px;
  font-weight: 500;
  color: var(--booking-accent-strong);
  background: transparent;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s;
}

.booking-hero .toggle-btn.active {
  background-color: var(--booking-accent-strong);
  color: #ffffff;
}

.booking-hero .toggle-desc {
  font-size: 14px;
  color: #000000;
  text-align: center;
  margin: 0;
}

.booking-progress {
  padding: 0 0 64px;
}

.progress-wrapper {
  width: 100%;
  max-width: 1062px;
  margin: 0 auto;
}

.progress-container {
  position: relative;
  width: 100%;
  overflow: visible;
}

.progress-container::before,
.progress-container::after {
  content: '';
  position: absolute;
  top: 28px;
  width: 24px;
  height: 1px;
  background-color: #d7d3ce;
  z-index: 0;
}

.progress-container::before {
  left: -24px;
}

.progress-container::after {
  right: -24px;
}

.progress-line {
  position: absolute;
  top: 28px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d7d3ce;
  z-index: 0;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  width: 100%;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #efeeec;
  border: 1px solid #a4a09a;
  color: #726f6b;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.step.completed .step-icon {
  background-color: var(--booking-accent-soft);
  border-color: var(--booking-accent);
  color: var(--booking-accent);
}

.step.completed .step-icon img,
.step.completed .step-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.step.active .step-icon {
  background-color: var(--booking-accent);
  border-color: var(--booking-accent);
  color: #ffffff;
}

.step-label {
  font-size: 18px;
  color: #726f6b;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

.step.active .step-label,
.step.completed .step-label {
  color: #2f2d2b;
  font-weight: 600;
}


/* Pricing List (Step 1) */
#section-pricing {
  padding-top: 40px;
  padding-bottom: 40px;
}

#section-pricing .pricing-content {
  max-width: 1062px;
  margin: 0 auto;
}

#section-pricing .pricing-header {
  margin-bottom: 32px;
}

#section-pricing .pricing-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: #2f2d2b;
  margin: 0 0 8px;
}

#section-pricing .pricing-header p {
  font-size: 14px;
  color: #726f6b;
  margin: 0;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1062px;
  margin: 0 auto 48px;
}

.pricing-item {
  display: flex;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  width: 100%;
}

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

.hidden-radio {
  display: none;
}

.duration {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  min-width: 180px;
}

.radio-icon {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.radio-icon::before {
  content: '';
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  border: 1.5px solid var(--booking-accent);
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.2s;
}

.radio-icon::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.2s;
}

.pricing-item.selected .radio-icon::before,
.payment-card.selected .radio-icon::before {
  background-color: var(--booking-accent-soft);
}

.pricing-item.selected .radio-icon::after,
.payment-card.selected .radio-icon::after {
  background-color: var(--booking-accent);
}

.duration-text {
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  color: #2f2d2b;
}

.line {
  flex-grow: 1;
  height: 2px;
  background-color: #efeeec;
  margin: 0 24px 0 24px;
}

.pricing-item .line {
  margin-right: 0;
}

.line.active-line {
  background-color: var(--booking-accent-soft-line);
}

.price {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 140px;
}

.old-price {
  font-size: 36px;
  color: #a4a09a;
  text-decoration: line-through;
}

.current-price {
  font-size: 42px;
  color: var(--booking-accent);
  font-weight: 500;
}

/* Summary Box */
#section-summary {
  padding-top: 0px;
  padding-bottom: 80px;
}

#section-summary .summary-content {
  max-width: 1062px;
  margin: 0 auto;
}

.summary-box-wrapper {
  max-width: 1062px;
  margin: 0 auto;
}

.summary-box {
  background-color: #efeeec;
  padding: 32px;
  display: flex;
  gap: 64px;
  margin-bottom: 48px;
}

.summary-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 150px;
}

.summary-label {
  font-size: 14px;
  font-weight: 600;
  color: #2f2d2b;
}

.summary-value {
  font-size: 16px;
  color: #2f2d2b;
}

.action-area {
  display: flex;
  justify-content: flex-end;
}

/* Step navigation buttons keep the fixed brand blue in both booking modes */
.btn-primary {
  background-color: #224a96;
  color: #ffffff;
  padding: 20px 32px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: #1a3a75;
}

/* Booking Grid (Step 2) */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
  max-width: 1062px;
  margin-left: auto;
  margin-right: auto;
}

.panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel-subtitle {
  font-size: 16px;
  color: #726f6b;
  font-weight: 400;
  margin: 0;
}

.panel-card {
  background-color: #ffffff;
  border: 1px solid #a4a09a;
  border-radius: 4px;
  padding: 32px;
  height: 100%;
}

/* Calendar */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.current-month {
  font-size: 16px;
  font-weight: 500;
  color: #2f2d2b;
}

.nav-btn {
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-btn img {
  width: 24px;
  height: 24px;
}

.calendar-divider {
  width: 100%;
  margin-bottom: 16px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 10px;
  column-gap: 0;
  justify-items: center;
}

.weekday {
  font-size: 14px;
  color: #726f6b;
  margin-bottom: 8px;
}

.day {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #2f2d2b;
  cursor: pointer;
  border-radius: 4px;
}

.day:hover:not(.disabled):not(.selected) {
  background-color: #f0f0f0;
}

.day.disabled {
  color: #a4a09a;
  cursor: default;
}

.day.selected {
  background-color: var(--booking-accent);
  color: #ffffff;
}

/* Time Slots */
.time-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.time-slot {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  color: #2f2d2b;
  cursor: pointer;
  transition: all 0.2s;
}

.time-slot:hover:not(.disabled):not(.selected) {
  background-color: #f9f9f9;
  border-color: #d7d3ce;
}

.time-slot.disabled {
  color: #a4a09a;
  cursor: default;
}

.time-slot.selected {
  background-color: var(--booking-accent);
  color: #ffffff;
  border-color: var(--booking-accent);
}

.booking-calendar-overview {
  padding-bottom: 64px;
}

.booking-calendar-legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.booking-calendar-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #726f6b;
}

.booking-calendar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.booking-calendar-dot--free {
  background-color: var(--booking-accent);
}

.booking-calendar-dot--booked {
  background-color: #d9534f;
}

.time-slot.booked,
.time-slot.booked:hover {
  background-color: #f9eceb;
  border-color: #d9534f;
  color: #aa2b26;
  cursor: default;
}

/* Booking Summary */
.booking-summary {
  background-color: #efeeec;
  padding: 32px;
  display: flex;
  gap: 64px;
  margin-bottom: 32px;
  max-width: 1062px;
  margin-left: auto;
  margin-right: auto;
}

.summary-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.booking-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1062px;
  margin: 0 auto;
}

.footer-actions-section {
  padding: 48px 0 80px;
}

.footer-actions-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  max-width: 1062px;
  margin: 0 auto;
}

/* Payment Cards (Step 3) */
.payment-cards {
  display: flex;
  gap: 32px;
  width: 100%;
  max-width: 1062px;
  margin: 0 auto 32px;
}

.payment-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  background-color: #ffffff;
  transition: background-color 0.2s;
}

.payment-card.selected {
  background-color: transparent;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.card-title h3 {
  font-size: 28px;
  color: #2f2d2b;
  margin: 0;
  font-weight: 400;
  font-family: 'Playfair Display', serif;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.card-divider {
  width: calc(100% + 48px);
  margin: 0 -24px;
  height: 1px;
  display: block;
  max-width: none;
  background-color: #a4a09a;
  transition: background-color 0.2s;
}

.payment-card.selected .card-divider {
  background-color: var(--booking-accent);
}

.payment-card p {
  font-size: 16px;
  color: #2f2d2b;
  margin: 0;
  line-height: 1.4;
}

.payment-info {
  display: flex;
  gap: 32px;
  background-color: #efeeec;
  padding: 32px;
  max-width: 1062px;
  margin: 0 auto;
}

.info-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-block h4 {
  font-size: 16px;
  color: #21272a;
  margin: 0;
  font-weight: 700;
}

.info-block p {
  font-size: 16px;
  color: #21272a;
  margin: 0;
}

/* Booking Details (Step 5) */
#section-booking-details {
  padding-top: 40px;
  padding-bottom: 32px;
}

#section-booking-details .container {
  max-width: 1062px;
  margin: 0 auto;
}

.details-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.details-title {
  font-size: 20px;
  font-weight: 600;
  color: #21272a;
  margin: 0;
}

.details-subtitle {
  font-size: 16px;
  color: #726f6b;
  margin: 0;
}

.details-card {
  background-color: #efeeec;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #a4a09a;
}

.detail-row:first-child {
  padding-top: 0;
}

.detail-row.total-row {
  border-bottom: none;
  padding-bottom: 0;
  padding-top: 24px;
}

.detail-label {
  font-size: 16px;
  font-weight: 500;
  color: #21272a;
}

.detail-value {
  font-size: 16px;
  color: #21272a;
  text-align: right;
}

.total-price {
  font-size: 48px;
  font-weight: 500;
  color: var(--booking-accent);
}


/* Form (Step 4) */
.form-wrapper {
  max-width: 1062px;
  margin: 0 auto;
}

.form-header {
  margin-bottom: 32px;
}

.form-header h2 {
  font-size: 20px;
  font-weight: 600;
  color: #21272a;
  margin-bottom: 8px;
}

.form-header p {
  font-size: 14px;
  color: #726f6b;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 24px;
}

.form-group.half {
  flex: 1;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d7d3ce;
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
  color: #2f2d2b;
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.2s;
}

.form-control:focus {
  border-color: var(--booking-accent);
}

.form-control::placeholder {
  color: #a4a09a;
}

.form-control.textarea {
  height: 169px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  min-width: 24px;
  height: 24px;
  border: 1px solid #d7d3ce;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: all 0.2s;
  margin-top: -2px;
}

.custom-checkbox:hover input ~ .checkmark {
  border-color: var(--booking-accent);
}

.custom-checkbox input:checked ~ .checkmark {
  border-color: var(--booking-accent);
}

.custom-checkbox input:checked ~ .checkmark:after {
  content: "";
  width: 6px;
  height: 12px;
  border: solid var(--booking-accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -1px;
}

.checkbox-text {
  font-size: 14px;
  color: #2f2d2b;
  line-height: 1.4;
}

/* Confirmation (Step 5) */
.confirmation-box {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
  padding: 48px;
  background-color: #efeeec;
  border-radius: 8px;
}

.confirmation-icon {
  margin-bottom: 24px;
}

.confirmation-icon img {
  width: 80px;
  height: 80px;
}

.confirmation-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #2f2d2b;
  margin: 0 0 16px;
}

.confirmation-box > p {
  font-size: 18px;
  color: #726f6b;
  margin-bottom: 32px;
}

.confirmation-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.confirmation-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #d7d3ce;
}

.confirmation-row.total {
  border-bottom: none;
  font-weight: 600;
  font-size: 18px;
  color: var(--booking-accent);
}

.confirmation-label {
  font-size: 16px;
  color: #2f2d2b;
}

.confirmation-value {
  font-size: 16px;
  color: #2f2d2b;
  font-weight: 500;
}

.confirmation-row.total .confirmation-value {
  font-size: 24px;
  color: var(--booking-accent);
}

/* Header switches to the minimal variant on the confirmation screen */
.booking-header-back {
  display: none;
}

body.booking-success-active .booking-header-back {
  display: inline-flex;
}

body.booking-success-active .site-header .phone,
body.booking-success-active .site-header .social-icon {
  display: none;
}

.booking-success {
  padding: 72px 0 120px;
}

.booking-success-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.booking-success-variant[hidden] {
  display: none;
}

.booking-success-title {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  line-height: 1.12;
  font-weight: 400;
  color: #2f2d2b;
  margin: 0 0 48px;
}

.booking-success-title .title-italic {
  font-style: italic;
}

.booking-success-icon {
  width: 80px;
  height: 80px;
  color: #d09a7d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
}

.booking-success-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.booking-success-subtitle {
  font-size: 26px;
  line-height: 1.3;
  color: #2f2d2b;
  font-weight: 600;
  margin: 0 0 24px;
}

.booking-success-text {
  font-size: 22px;
  line-height: 1.5;
  color: #2f2d2b;
  margin: 0 0 12px;
}

.booking-success-text:last-of-type {
  margin-bottom: 0;
}

.booking-success-btn {
  margin-top: 48px;
  display: inline-flex;
  min-width: 234px;
  justify-content: center;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.booking-modal-dialog {
  position: relative;
  width: min(760px, calc(100% - 32px));
  margin: 10vh auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 48px 44px;
  text-align: center;
}

.booking-modal-close {
  position: absolute;
  right: 24px;
  top: 22px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  color: #2f2d2b;
  cursor: pointer;
}

.booking-modal-close svg {
  width: 100%;
  height: 100%;
  display: block;
}

.booking-modal-icon {
  width: 76px;
  height: 70px;
  color: #d09a7d;
  margin: 0 auto 24px;
}

.booking-modal-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.booking-modal-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
  color: #21272a;
  font-weight: 600;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e1dc;
}

.booking-modal-text {
  font-size: 20px;
  line-height: 1.5;
  color: #2f2d2b;
  margin: 28px auto 36px;
  max-width: 620px;
}

.booking-modal-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.booking-modal-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 290px;
  padding: 18px 32px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.booking-modal .btn-secondary {
  background-color: #e9effa;
  color: #224a96;
}

.booking-modal .btn-secondary:hover {
  background-color: #d0def4;
}

/* Single-action notices (validation, missing input) hide the secondary button. */
.booking-modal.is-notice .booking-modal-actions #booking-modal-switch {
  display: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .payment-cards {
    flex-direction: column;
  }
  .payment-info {
    flex-direction: column;
  }
  .booking-grid {
    grid-template-columns: 1fr;
  }
  .summary-box,
  .booking-summary {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .step-title {
    font-size: 36px;
  }
  /* Five steps have to share the viewport width, so the row shrinks and the
     labels are allowed to wrap instead of forcing the track wider. */
  .booking-progress {
    padding-bottom: 40px;
  }
  .progress-container::before,
  .progress-container::after {
    display: none;
  }
  .step {
    flex: 1 1 0;
    min-width: 0;
    gap: 8px;
  }
  .step-icon {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .step.completed .step-icon img,
  .step.completed .step-icon svg {
    width: 16px;
    height: 16px;
  }
  .step-label {
    font-size: 12px;
    line-height: 1.25;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .progress-line {
    top: 20px;
  }
  .duration-text {
    font-size: 22px;
  }
  .current-price {
    font-size: 32px;
  }
  .old-price {
    font-size: 24px;
    white-space: nowrap;
  }
  .time-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    flex-direction: column;
    gap: 24px;
  }
  .panel-card {
    padding: 20px;
  }
  .day {
    width: 36px;
    height: 36px;
  }
  .booking-actions {
    flex-direction: column-reverse;
    gap: 16px;
  }
  .booking-actions .btn-primary {
    width: 100%;
  }

  .footer-actions-section .container {
    flex-direction: column-reverse;
  }

  .footer-actions-section .btn-primary {
    width: 100%;
  }

  .details-card {
    padding: 24px 20px;
  }

  .detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .detail-value {
    text-align: left;
  }

  .detail-row.total-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .total-price {
    font-size: 36px;
  }

  .booking-success-title {
    font-size: 40px;
  }

  .booking-success-subtitle {
    font-size: 22px;
  }

  .booking-success-text {
    font-size: 20px;
  }

  .booking-modal-dialog {
    width: calc(100% - 24px);
    margin: 24px auto;
    padding: 32px 20px 28px;
  }

  .booking-modal-icon {
    width: 64px;
    height: 58px;
    margin-bottom: 20px;
  }

  .booking-modal-title {
    font-size: 20px;
    padding-bottom: 20px;
  }

  .booking-modal-text {
    font-size: 17px;
    margin: 20px auto 28px;
  }

  .booking-modal-actions {
    flex-direction: column;
  }

  .booking-modal-actions .btn-primary {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .step-icon {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .step.completed .step-icon img,
  .step.completed .step-icon svg {
    width: 14px;
    height: 14px;
  }
  .step {
    gap: 6px;
  }
  .step-label {
    font-size: 11px;
  }
  .progress-line {
    top: 16px;
  }
      .current-price {
        font-size: 24px;
        white-space: nowrap;
    }
}
@media (min-width: 1024px) {
  .scroll-top {
    right: 80px;
  }
}
.scroll-top:hover {
  background-color: #1a3a7a;
}
.scroll-top img {
  width: 24px;
  height: 24px;
}

#section-hero .step:not(:last-child)::after {
  display: none;
}

#section-progress .progress-steps .step:not(:last-child)::after {
  content: none;
}
.payment-header {
    max-width: 1062px;
    margin: 0 auto;
}
/* Step 4's action bar keeps the shared .container gutters so its buttons line
   up with every other step instead of running edge to edge on mobile. */
section#section-footer-actions > div {
    padding-top: 0;
    padding-bottom: 0;
}
.home section#section-pricing {
    padding: 0;
}
/* ========================================
   QA-FIXES (Checkliste 08/2026)
   ======================================== */

/* HDR-004: Header bleibt beim Scrollen oben fixiert. */
#section-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* HDR-005: Menü-Hover wechselt von Weiß zu #9AB7E9. */
.main-nav a:hover {
  color: #9ab7e9;
  opacity: 1;
}

/* HERO-001/002: Hero-Slider mit Fade-Übergang; Overlay dunkelt jedes Foto für Textkontrast ab. */
.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slider .hero-slide.is-active {
  opacity: 1;
}

.hero-slider .hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  z-index: 1;
}

.slider-dots .slider-dot {
  width: 16px;
  height: 16px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dots .slider-dot.is-active {
  background-color: #ffffff;
}

/* HERO-003: "Nach oben"-Button fixiert unten rechts, erscheint erst nach dem Scrollen. */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 20px;
  z-index: 950;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .scroll-top {
    bottom: 40px;
  }
}

/* ZONE-003: Hover-Animation der Fotozonen + Pop-up-Slider (Lightbox). */
.zone-image[data-zone-slider] {
  cursor: pointer;
  transition: filter 0.4s ease;
}

.zone-image[data-zone-slider]:hover {
  filter: brightness(1.12);
}

.zone-image[data-zone-slider]:hover .zone-overlay-text {
  opacity: 0.55;
  transition: opacity 0.4s ease;
}

.zone-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.zone-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.85);
}

.zone-lightbox-body {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 72px;
}

.zone-lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.zone-lightbox-close,
.zone-lightbox-nav {
  position: absolute;
  border: none;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  z-index: 2;
}

.zone-lightbox-close {
  top: 16px;
  right: 20px;
  font-size: 40px;
}

.zone-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
}

.zone-lightbox-prev { left: 16px; }
.zone-lightbox-next { right: 16px; }

.zone-lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 14px;
}

/* PRICE-005: Bild statt einfarbigem Hintergrund in der Preissektion (analog zur About-Sektion). */
.pricing-wrapper::before {
  opacity: 1;
}

/* GAL-004: "Mehr laden" blendet weitere Galeriebilder ein. */
.gallery-grid .gallery-extra {
  display: none;
}

.gallery-grid.is-expanded .gallery-extra {
  display: block;
}

/* CONTACT-010: Markierung ungültiger Felder + Hinweistexte. */
.form-input.is-invalid,
.form-control.is-invalid {
  border-color: #b3261e;
}

.form-checkbox input[type="checkbox"].is-invalid {
  border-color: #b3261e;
}

.field-hint {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.4;
  color: #b3261e;
}

/* CONTACT-011 / FOOT: Links in Einwilligungstexten. */
.form-checkbox a,
.checkbox-text a {
  color: #224a96;
  text-decoration: underline;
}

/* BOOK-002: 16px Abstand zwischen Linie und Preis in Schritt 1. */
.pricing-item .line {
  margin-right: 16px;
}

/* PRICE-004 / BOOK: Zahlungsarten-Karten ohne abgerundete Ecken. */
.booking-page .payment-card {
  border-radius: 0;
}

/* ========================================
   FIGMA-ABGLEICH (Typografie & Details)
   ======================================== */

/* Sektions-Überschriften laut Figma: Playfair 48px auf Desktop. */
@media (min-width: 768px) {
  .section-heading {
    font-size: 48px;
  }
}

/* USP/ABOUT/ZONE/EQUIP/PRICE/GAL: kursiver Teil der Überschriften kommt aus <em>. */
.section-heading em,
.feature-text h3 em,
.zone-text h3 em {
  font-style: italic;
}

/* PRICE-002: Kartentitel "Private"/"Kommerziell" in Playfair 36px laut Figma. */
.price-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
}

/* HERO-005: 16px-Punkte mit 32px Zwischenraum laut Figma. */
.slider-dots {
  gap: 32px;
}

/* FAQ: längere Antworten (Zahlungsarten) brauchen mehr Platz als 240px. */
.faq-item.is-open .faq-answer {
  max-height: 900px;
}

/* CONTACT-011: Öffnungszeiten-Block unter den Kontaktdaten (laut Figma). */
.contact-hours {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #2f2d2b;
}

/* HDR-006 / FOOT-007: neues horizontales Logo — normale Höhe, kein Überhang mehr. */
.logo img {
  height: 40px;
  width: auto;
}

@media (min-width: 1024px) {
  .logo img {
    height: 48px;
    position: static;
    margin-top: 0;
  }
  a.logo {
    min-width: 0;
  }
}

.footer-logo {
  height: 48px;
  width: auto;
}

/* ========================================
   MOBILE-POLITUR (QA 22.08.2026)
   ======================================== */

/* Banner-Text: eigene Klasse statt Inline-Style, Zeilen dürfen nicht überlappen. */
.booking-banner-text {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 1.45;
}

@media (max-width: 767px) {
  .booking-banner-text {
    font-size: 20px;
  }
  .booking-banner {
    padding: 24px 0;
  }
}

/* Mobiler Header: eine Zeile statt zwei — kleineres Logo, kompakter Button. */
@media (max-width: 1023px) {
  .header-container {
    flex-wrap: nowrap;
    gap: 12px;
  }
  .logo img {
    height: 30px;
  }
  .header-right {
    gap: 12px;
    flex-shrink: 0;
  }
  .btn-small {
    padding: 10px 14px;
    font-size: 12px;
    white-space: nowrap;
  }
}

@media (max-width: 359px) {
  .header-right .social-icon {
    display: none;
  }
}

/* Anker-Scroll: mobiler Header ist flacher als der Desktop-Header. */
@media (max-width: 1023px) {
  html {
    scroll-padding-top: 64px;
  }
}

/* Mobile Abstände: großzügige Desktop-Paddings leicht reduziert. */
@media (max-width: 767px) {
  .section-caption {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .price-amount {
    font-size: 44px;
    line-height: 1.1;
  }
  .old-price {
    font-size: 28px;
  }
  .zone-text hr {
    height: 64px;
    margin: 8px auto;
  }
  .zone-overlay-text {
    font-size: 56px;
  }
  .scroll-top {
    width: 44px;
    height: 44px;
    bottom: 20px;
    right: 16px;
  }
  .hero-buttons {
    padding: 0 20px;
  }
}

/* Buchung Schritt 1 mobil: feste Mindestbreiten sprengen die 375px-Zeile. */
@media (max-width: 600px) {
  .duration {
    min-width: 0;
    gap: 12px;
  }
  .price {
    min-width: 0;
    gap: 10px;
  }
  .line {
    margin: 0 12px;
  }
  .pricing-item .line {
    margin-right: 12px;
  }
}
