/* ====== Reset & Basis-Setup ====== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=The+Seasons&display=swap');


*,
*::before,
*::after {
  box-sizing: border-box;
}
html, body {

  overflow-x: hidden !important;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;

  background: #3a3632;
}


/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'The Seasons', serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 0 0 1rem 0;
}

/*----------------------------------------------------------*/


#preloader {
  position: fixed;
  inset: 0;
  background-color: #eae6e2;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: all 0.5s ease;
}

.preloader-logo {
  width: 500px;
  height: auto;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

.preloader-hide {
  animation: zoomOut 0.6s ease forwards;
}

@keyframes zoomOut {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.15); }
}




/*----------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1rem;
  right: 1rem;
  background-color: rgba(58, 54, 50, 0.9);
  color: #f0e9e3;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-icon {
  font-size: 1.3rem;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
}

.cookie-banner a {
  color: #f0e9e3;
  text-decoration: underline;
}

.cookie-banner button {
  background-color: #f0e9e3;
  color: #3a3632;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  cursor: pointer;
  font-weight: 500;
}

.cookie-banner button:hover {
  opacity: 0.9;
}

/*----------------------------------------------------------*/

.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  border-radius: 3rem;
  padding: 0.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: background 0.4s ease, border 0.4s ease;
  backdrop-filter: blur(10px);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  display: flex;
  justify-content: center;
}

.nav-menu li a {
  display: block;
  padding: 0.8rem 1.6rem;
  border-radius: 2rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 160px;
  text-align: center;
  background: transparent;
}

.navbar.light {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.light .nav-menu li a {
  color: #d5cdc5;
}

.navbar.light .nav-menu li a:hover,
.navbar.light .nav-menu li a:focus {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.navbar.light .burger span {
  background-color: #d5cdc5;
}


/* Aktiver Link */
.nav-menu li a.active {
  background: rgba(58, 54, 50, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

/* Klick-Verhalten */
.nav-menu li a:active {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0.97);
}

/* =========================
   Burger-Menü
========================= */

.burger {
  display: none;
  position: relative;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
}

.burger span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger span:nth-child(3) {
  bottom: 0;
}

.burger.open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}


@media (max-width: 768px) {
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    list-style: none;
  }

  .nav-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
  }

  .nav-menu li {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .nav-menu.show li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu.show li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-menu.show li:nth-child(2) {
    transition-delay: 0.25s;
  }
  .nav-menu.show li:nth-child(3) {
    transition-delay: 0.4s;
  }

  .nav-menu li a {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-weight: bold;
    text-decoration: none;
    border-radius: 2rem;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .nav-menu li a:hover,
  .nav-menu li a:focus {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .nav-menu li a:active {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(0.97);
  }
}




/*----------------------------------------------------------*/





.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

canvas#cloudCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  pointer-events: none;
  display: block;
}

.hero-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  pointer-events: auto;
}

.hero-logo-large {
  max-width: 500px;
  width: 60vw;
  height: auto;
  filter:
  drop-shadow(0 0 8px rgba(58, 54, 50, 1))
  drop-shadow(0 0 20px rgba(58, 54, 50, 9));
}

.cta-glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #d5cdc5;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.cta-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.cta-glass:active {
  transform: scale(0.95);
  opacity: 0.8;
}

.scroll-element {
  min-height: 100vh;
  width: 100%;
  background-color: #b0a396;
  color: #3a3632;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.scroll-element.visible {
  opacity: 1;
  transform: translateY(0);
}


.scroll-element p,
.scroll-element form {
  max-width: 600px;
  font-size: 1.25rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 2rem auto;
  text-align: left;
}

input,
textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1.25rem;
}

textarea {
  resize: vertical;
}

form button {
  background-color: white;
  color: black;
  padding: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.hero-mobile-bg {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

@media (pointer: coarse) {
  .hero {
    background-image: url('hero.png');
    background-size: cover;
    background-repeat: no-repeat;

    /* Verschiebt den Fokus weiter nach rechts */
    background-position: 43% center;
  }

  canvas#cloudCanvas {
    display: none;
  }
}






/*----------------------------------------------------------*/

.welcome-divider img,
.welcome-divider-bottom img {
  display: block;
  margin: 0 auto;
  height: 80px;
  width: auto;
  opacity: 0.85;
}

#welcome h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 1.5rem -0.5rem;
  color: #3a3632;
}


#welcome.scroll-element {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
  min-height: 40vh;
}
#welcome.scroll-element.visible {
  opacity: 1;
  transform: translateY(0);
}


#welcome {
  background-color: #b0a396;
  color: #3a3632;
  padding: 6rem 2rem;
  text-align: center;
}


#welcome h2 {
  font-family: 'The Seasons', serif;
  font-size: 3rem;
  margin-bottom: 2rem;
}



.welcome p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  max-width: 800px;
  margin: 1.2rem auto;
  padding-bottom: 1.5rem;
}



/*----------------------------------------------------------*/
.services-heading {
  width: 100%;
  text-align: center;
  font-family: 'The Seasons', serif;
  font-size: 3rem !important;
  color: #b0a396;
  margin-bottom: 3rem;
}

h3 {
  width: 100%;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #b0a396;
  margin: 1.5rem 0 -0.5rem;
}


.services-section {
  position: relative;
  padding: 4rem 2rem;
  background-color: #6a5d51; /* Grundfarbe */
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 100%;
  min-height: 50vh;
  flex-wrap: wrap;
}


.service-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 700px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease;
}


/* Kategorie-Schrift unten auf der Karte */
.service-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 3rem;
  font-weight: 800;
  color: #b0a396;
  padding: 0rem 1.2rem;
  text-align: left;
  z-index: 2;
  transition: text-align 0.3s ease;
}

.service-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
  background: rgba(176, 163, 150, 0.92);
  color: #3a3632;
  padding: 2rem;
  font-size: 1.05rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch; /* Neu: volle Breite */
  box-sizing: border-box;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.service-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Neu: linksbündig */
  gap: 1rem;
  box-sizing: border-box;
}

.service-overlay li {
  text-align: left;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
  padding-bottom: 1rem;
}

.service-overlay li small{
  display: block;
  margin-top: 0.4rem;
}

.service-overlay li:not(:last-child)::after {
  content: "—";
  display: block;
  margin-top: 0.8rem;
  font-size: 1.03rem;
  color: #5a4f48;
  opacity: 0.5;
}

.service-overlay a {
  color: inherit;
  text-decoration: underline;
  font-weight: inherit;
}

/* ---------- Desktop: Hover aktiviert ---------- */
@media (hover: hover) and (pointer: fine) {
  .service-card:hover .service-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .service-card:hover .service-title {
    text-align: left;
  }
}

/* ---------- Mobile: Tap-to-open, optimiert für Lesbarkeit ---------- */
@media (max-width: 768px) {
  .services-section {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .service-card {
    width: 100%;
    max-width: 480px;
    min-height: unset;
    position: relative;
    flex-shrink: 0;
    padding-bottom: 2rem; /* etwas Platz unten */
  }

  .service-title {
    font-size: 2.2rem;
    word-break: break-word;
    line-height: 1.1;
    text-align: center;
  }

  .service-overlay {
    opacity: 0;
    pointer-events: none;
    font-size: 0.95rem;
    padding: 1.5rem;
    max-height: none;
    overflow-y: auto;
    display: block;
    background: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    box-sizing: border-box;
  }

  .service-overlay ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .service-overlay li {
    font-size: 0.95rem;
    padding-bottom: 0.6rem;
  }

  .service-overlay li small {
    font-size: 0.85rem;
    margin-top: 0.2rem;
    display: block;
  }

  .service-card.open .service-overlay {
    opacity: 1;
    pointer-events: auto;
    z-index: 5;
  }

  .service-card.open .service-title {
    opacity: 0;
  }
}




/*----------------------------------------------------------*/



.bride-section {
  position: relative;
  padding: 8rem 2rem;
  background-color: #b0a396;
  overflow: hidden;
  z-index: 0;
}


.bride-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.bride-background {
  position: absolute;
  top: -5%;
  bottom: -10%;
  left: -1000px;
  right: -1000%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  border-radius: 0;
  z-index: 1;
}



.bride-textblock {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 2rem;
}

.bride-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #3a3632;
  margin-bottom: 0.5rem;
}

.bride-textblock h2 {
  font-family: 'The Seasons', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.bride-textblock p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.bride-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #3a3632;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 1rem 4rem;
  border: none;
  border-radius: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  width: fit-content;
  margin: 1rem auto 0 auto;
  display: block;
}

.bride-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.bride-btn:active {
  transform: scale(0.97);
  opacity: 0.85;
}






/*----------------------------------------------------------*/



.statement-section {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #2f2b28;
}

.statement-text {
  flex: 1 1 50%;
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  position: relative;
  font-family: 'Montserrat', sans-serif;
}

.statement-text h2 {
  font-family: 'The Seasons', serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  color: #b0a396;
  max-width: 800px;
  margin: 0;
  margin-bottom: -0.5;
  z-index: 2;
}

.bio-caption {
  font-size: 1.5rem !important;
  font-weight: 300;
  color: #b0a396;
  font-family: 'Montserrat', sans-serif;
}

.statement-image {
  flex: 1 1 70%;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.statement-image img {
  height: 100%;
  width: auto;
  object-fit: cover;
  object-position: right center;
  display: block;
  position: relative;
  z-index: 1;
}

/* ✅ Farbfilter über dem Bild */
.statement-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(58, 54, 50, 0.65); /* #b0a396 mit Transparenz */
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}
.statement-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 3rem;
  max-width: 800px;
}

.statement-col {
  flex: 1 1 300px;
  font-size: 1.25rem !important;
  color: #b0a396;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  text-align: left;
}

  @media (max-width: 768px) {
    .statement-section {
      flex-direction: column;
      height: auto;
      min-height: auto; /* override */
    }
  
    .statement-image {
      position: relative;
      width: 100%;
      height: auto;
      min-height: 300px;
    }
  
    .statement-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center; /* <- wichtig */
  }
  

  .statement-text {
    padding: 3rem 1.5rem;
    text-align: center;
    align-items: center;
  }

  .statement-text h2 {
    font-size: 2.2rem;
    text-align: center;
  }


  .statement-columns {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .statement-col {
    text-align: center;
  }
  }


/*----------------------------------------------------------*/


#termin h2 {
  font-size: 3rem;
  padding-bottom: -0.5;
}

.termin.sub {   
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
}

.booking-comingsoon {
  max-width: 500px;
  margin: 3rem auto 0;
  padding: 3rem;
  border-radius: 1rem;
  backdrop-filter: blur(12px);
  background: rgba(58, 54, 50, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  text-align: center;
  color: #f0e9e3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.coming-soon-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.coming-soon-content svg {
  width: 64px;
  height: 64px;
}

.soon-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f0e9e3;
}

.soon-underline {
  width: 120px;
  height: 1px;
  background-color: #f0e9e3;
  margin-top: -0.5rem;
}




/*----------------------------------------------------------*/
#preise {
  position: relative;
  background-image: url('preise_backround.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 2rem;
  z-index: 0;
  overflow: hidden;
}

#preise::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(58, 54, 50, 0.3); /* dunkler Filter über Bild */
  z-index: 1;
  pointer-events: none;
}
#preise h2{
  color: #f0e9e3;
  font-family: 'The Seasons', serif;
  font-size: 3rem;
}

#preise p {
  color: #f0e9e3;
  font-size: 1.05rem;
  display: block;
  margin-top: 1rem;
  padding: 0 1rem;
  text-align: center;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  position: relative;
  z-index: 2; /* Inhalte über dem Filter */
}

.price-card {
  flex: 1 1 340px;
  padding: 2rem;
  background: rgba(58, 54, 50, 0.35);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  color: #f0e9e3;
  transition: all 0.3s ease;
  z-index: 1;
}

.price-card:hover {
  background: rgba(58, 54, 50, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #d5cdc5;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.05rem;
  margin-top: 1rem;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  vertical-align: top;
}

.price-table th {
  font-size: 1.03rem;
  text-transform: uppercase;
  color: #c9c2b9;
}

.price-table td small {
  font-size: 0.75rem;
  color: #b5ada5;
  display: block;
  margin-top: 0.2rem;
}

.pr



/*----------------------------------------------------------*/

.kontakt-section {
  padding: 6rem 2rem;
  color: #3a3632;
  font-family: 'Montserrat', sans-serif;
}

.kontakt-wrapper {
  display: flex;
  flex-direction: row; /* <--- Wichtig */
  flex-wrap: wrap;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: space-between;
}

.kontakt-links {
  flex: 1 1 600px;
  min-width: 280px;
}

.kontakt-links h2 {
  font-family: 'The Seasons', serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #3a3632;
}

.kontakt-sub {
  font-size: 1.25rem;
  font-weight: 300;
  color: #3a3632;
  margin-bottom: 2rem;
  text-align: left; /* Standard */

  /* mobile zentrieren */
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .kontakt-sub {
    text-align: center;
    padding: 0 1rem;
  }
}

.kontakt-form {
  width: 100%;
}

.kontakt-form .form-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.kontakt-form input,
.kontakt-form textarea {
  width: 100%;
  padding: 0.75rem 0;
  font-size: 1.05rem;
  font-family: 'Montserrat', sans-serif;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(58, 54, 50, 0.6);
  color: #3a3632;
  transition: border-color 0.3s ease;
  resize: none;
  text-align: left;
}

small a {
  text-decoration: underline;
  color: inherit;
}
.kontakt-form input:focus,
.kontakt-form textarea:focus {
  outline: none;
  border-bottom: 1px solid #3a3632;
}

.kontakt-form button,
.kontakt-button {
  background: rgba(255, 255, 255, 0.1);
  color: #3a3632;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 4rem;
  border: none;
  border-radius: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  width: fit-content;
  margin: 1rem auto 0 auto;
  display: block;
}

.kontakt-button:hover,
.kontakt-form button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.kontakt-button:active,
.kontakt-form button:active {
  transform: scale(0.97);
  opacity: 0.85;
}

.kontakt-rechts {
  flex: 1 1 300px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.kontakt-rechts h3 {
  font-size: 1.5rem;
  color: #3a3632;
}

.kontakt-rechts p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #3a3632;
  margin-bottom: 0.5rem;
}

.kontakt-button i {
  font-size: 1.35rem;
  margin: 0 1rem;
}

.form-status {
  opacity: 0;
  transition: opacity 0.6s ease;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  color: #3a3632;
}

.form-status.visible {
  opacity: 1;
}

.form-status.error {
  color: #3a3632;
}

.hidden {
  display: none;
}

/* ✅ Responsive: stacked unter 768px */
@media (max-width: 768px) {
  .kontakt-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .kontakt-links,
  .kontakt-rechts {
    width: 100%;
  }

  .kontakt-form .form-row {
    flex-direction: column;
  }
  
}




/*----------------------------------------------------------*/





.site-footer {
  position: relative;
  background-color: #b0a396;
  padding: 4rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  color: #3a3632;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(58, 54, 50, 0.35); /* wie .navbar */
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.footer-columns {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.footer-col {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertikal zentriert */
  align-items: center;       /* horizontal zentriert */
  text-align: center;
  height: 100%;   
  gap: 0.5rem;
}

.footer-col p {
  margin: 0;
  line-height: 1.5;
}

.footer-col a {
  color: inherit;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  font-size: 1.5rem;
}


.footer-social a:hover img {
  filter: brightness(120%);
}

.footer-rights {
  font-size: 1rem;
  color: #3a3632;
  margin-top: 1rem;
}

@media (max-width: 960px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
    align-items: flex-start;
    gap: 1.5rem; /* kleineres Spaltengap */
  }

  .footer-col {
    position: relative;
    width: 100%;
    max-width: 320px;
    max-height: fit-content;
    height: auto; 
    padding: 0;
    margin: 0 auto;
    align-items: center;
  }

  /* Trennlinien schmal & eng anliegend */
  .footer-col:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -0.75rem;
    left: 15%;
    width: 70%;
    height: 1px;
    background-color: rgba(58, 54, 50, 0.3);
  }

  .footer-logo {
    display: block;
    margin: 0 auto 0.7rem auto;
    max-width: 200px;
  }

  .footer-social {
    justify-content: center;
    margin-top: 0.5rem;
  }

  .footer-social img {
    width: 24px;
    height: 24px;
  }

  /* Paragraph-Abstände reduzieren */
  .footer-col p {
    margin: 0.25rem 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem !important;
  }

  h3, .sub, .termin.sub, .bride-sub {
    font-size: 1.25rem !important;
  }

  p,
  .bio-caption,
  .soon-text,
  .statement-col,
  .welcome p,
  .kontakt-sub,
  .kontakt-rechts p,
  .footer-col p,
  .price-card h3,
  .price-table {
    font-size: 1rem !important;
  }

  .footer-rights {
    font-size: 0.85rem !important;
  }

  .cta-glass {
    font-size: 1rem;
  }
}

/* ============ Apple Devices Fixes ============ */

/* iPhone SE, 5, 5S, Mini */
@media only screen 
  and (max-device-width: 375px) 
  and (max-device-height: 667px)
  and (-webkit-min-device-pixel-ratio: 2) {
  html {
    font-size: 14px;
  }
}

/* iPhone 6/7/8 & iPhone SE (2./3. Gen) */
@media only screen 
  and (device-width: 375px) 
  and (device-height: 667px)
  and (-webkit-device-pixel-ratio: 2) {
  html {
    font-size: 15px;
  }
}

/* iPhone X, XS, 11 Pro */
@media only screen 
  and (device-width: 375px) 
  and (device-height: 812px)
  and (-webkit-device-pixel-ratio: 3) {
  html {
    font-size: 15px;
  }
}

/* iPhone XR, 11, 12, 13, 14 */
@media only screen 
  and (device-width: 414px)
  and (device-height: 896px),
  (device-width: 390px)
  and (device-height: 844px) {
  html {
    font-size: 16px;
  }
}

/* iPads (alle) */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px)
  and (orientation: portrait),
  only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1366px)
  and (orientation: landscape) {
  
  html {
    font-size: 17px;
  }

  .service-card {
    max-height: 600px;
  }

  .service-overlay {
    font-size: 1rem;
    padding: 1.2rem;
  }

  .service-overlay li {
    font-size: 0.95rem;
  }
}

