
/* Section Styles */

.section {
  padding: 96px 0;
}

.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  max-width: 700px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.1rem;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 700px;
  margin: 0 auto;
}



/* Hero section */

.hero-layout {
  padding: 140px 0 50px 0;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-template-areas:
    "hero-item1 hero-item2"
    "hero-item3 hero-item2"
    "hero-item4 hero-item2";
  gap: 1rem;
}

.hero-item1 { grid-area: hero-item1; }
.hero-item2 { grid-area: hero-item2; }
.hero-item3 { grid-area: hero-item3; }
.hero-item4 { grid-area: hero-item4; }

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero-item1"
      "hero-item2"
      "hero-item3"
      "hero-item4";
  }
}

.hero-layout h1 {
  font-size: 2.6rem;
  line-height: 1.22;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-layout em {
  font-style: italic;
  color: var(--gold);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 16px rgba(201,168,76,0.25);
}

.hero-offer {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
  padding: 8px 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary:hover {
  background: #b8973f;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.3);
}

.btn-primary svg {
  width: 16px; height: 16px;
}



/* Rollen-Ticker */




.rollen-section {
  padding: 48px 0 40px;
  background: var(--mint);
  border-top: 1px solid rgba(206,232,227,0.5);
}

.rollen-question {
  text-align: center;
  /*max-width: 600px;*/
  max-width: 1200px;
  margin: 0 auto 24px;
}

.rollen-question p {
  font-size: 1.2rem;
  color: var(--dark);
  line-height: 1.5;
  font-family: 'Playfair Display', serif;
}

.rollen-question p em {
  font-style: italic;
  color: var(--gold);
}

.ticker-wrapper {
  overflow: hidden; 
  position: relative;
  border-top: 1px solid rgba(206,232,227,0.4);
  border-bottom: 1px solid rgba(206,232,227,0.4);
  padding: 16px 0;
}

.ticker-wrapper::before, .ticker-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.ticker-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--mint), transparent);
}

.ticker-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--mint), transparent);
}

.ticker-track {
  display: flex; gap: 10px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  display: inline-block;
  padding: 7px 20px;
  background: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 24px;
  font-size: 0.8rem;
  color: var(--dark);
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes ticker {
    0% { transform: translateX(0); }
  100% { transform: translateX(-2820px); }
}

/* Situationen, Kundenerleben */

.situationen {
  background: var(--white);
}

.situationen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.situation-card {
  background: var(--creme);
  border-radius: 14px;
  padding: 32px;
  border: 1px solid rgba(206,232,227,0.4);
  transition: all 0.35s;
}

.situation-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201,168,76,0.08);
}

.situation-card .card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
} 

.situation-card .card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--dark);o
}

.situation-card h3 {
  font-size: 1.05rem; 
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.situation-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.situationen-bottom {
  text-align: center;
  margin-top: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--dark);
  font-style: italic;
}

.situationen-bottom span {
  color: var(--gold);
}



/* Werkzeuge, Methoden */

.werkzeuge {
  background: var(--creme);
}

.methoden-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.methode-card {
  background: var(--white);
  border-radius: 14px;
  padding: 36px 28px;
  border: 1px solid rgba(206,232,227,0.3);
  text-align: center;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.methode-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}

.methode-card:hover::before {
  opacity: 1;
}

.methode-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.methode-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--mint);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.methode-icon svg {
  width: 24px;
  height: 24px;
  color: var(--dark);
}

.methode-card h3 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.methode-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.75;
}


/* Kundenstimmen */

.kundenstimmen {
  background: var(--white); 
}

.kundenstimmen .section-label {
  color: var(--gold); 
}

.kundenstimmen .section-title {
  color: var(--dark); 
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px; 
}

.testimonial-card {
  background: var(--creme);
  border: 1px solid rgba(206,232,227,0.4);
  border-radius: 14px;
  padding: 32px;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201,168,76,0.08); 
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 3px; 
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}

.testimonial-author {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 2px; 
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted); 
}



/* Zwischen-CTA */

.zwischen-cta {
  padding: 64px 0;
  text-align: center;
  background: var(--mint);
}

.zwischen-cta h2 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 14px;
}

.zwischen-cta h2 em {
  font-style: italic;
  color: var(--gold); 
}

.zwischen-cta p {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* Prozess */

.prozess {
  background: var(--creme); 
}

.prozess-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px; 
}

.prozess-steps {
  display: flex;
  flex-direction: column;
  gap: 28px; 
}

.prozess-step {
  display: flex;
  gap: 20px;
  align-items: flex-start; 
}

.step-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--dark);
  font-weight: 600;
}

.step-content h3 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75; 
}

.prozess-image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--mint) 0%, var(--creme) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 48px rgba(26,42,58,0.06);
}


/* ===== LOTPUNKT ERKLAERUNG (DUNKELBLAU AKZENT) ===== */
.lotpunkt-section {
  background: var(--dark);
  padding: 48px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.lotpunkt-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle, rgba(206,232,227,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.lotpunkt-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.lotpunkt-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto; 
}

.lotpunkt-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.lotpunkt-section h2 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.35;
}

.lotpunkt-section h2 em {
  font-style: italic;
  color: var(--gold); 
}



/* Über mich */
.ueber-mich {
  background: var(--white); 
}

.ueber-grid {
  padding: 0px 0 50px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "ueber-item2 ueber-item1"
    "ueber-item2 ueber-item3"
    "ueber-item2 ueber-item3";
  gap: 1rem;
}

.ueber-item1 {
  grid-area: ueber-item1; 
}

.ueber-item2 {
  grid-area: ueber-item2; 
}

.ueber-item3 {
  grid-area: ueber-item3; 
}

.ueber-image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(
    145deg, var(--gold-light) 0%, var(--mint-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 48px rgba(26,42,58,0.06);
}

.ueber-text h2 {
  font-size: 1.9rem;
  color: var(--dark);
  margin-bottom: 6px; 
}

.ueber-text .ueber-role {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 24px;
}

.ueber-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px; 
}



/* Zahlen */
.zahlen {
  background: var(--mint);
  padding: 72px 0; 
}

.zahlen .section-label {
  text-align: center;
  margin-bottom: 36px;
  color: var(--dark); 
}

.zahlen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center; 
}

.zahl-item {
  padding: 20px; 
}

.zahl-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--dark);
  font-weight: 600;
  line-height: 1;
}

.zahl-label {
  font-size: 0.82rem;
  color: var(--text-dark);
  margin-top: 8px;
  font-weight: 400; 
}

.zahl-divider {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: 10px auto 0; 
}



/* Standort */
.standort {
  background: var(--creme);
  padding: 64px 0; 
}

.standort-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}

.standort-item {
  padding: 24px; 
}

.standort-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--mint);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.standort-icon svg {
  width: 22px;
  height: 22px;
  color: var(--dark); 
}

.standort-item h3 {
  font-size: 0.92rem;
  color: var(--dark);
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.standort-item p {
  font-size: 0.85rem; color: var(--text-muted);
  line-height: 1.7; 
}

.map-container {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.map-first {
  width: 60% 
}

.map-second{
  width: 40% 
}



/* FAQ */

.faq {
  background: var(--white); 
}

.faq-list {
  max-width: 740px;
  margin: 40px auto 0; 
}

.faq-item {
  border-bottom: 1px solid rgba(206,232,227,0.6); 
}

.faq-item details {

}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  padding: 22px 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none; 
}

.faq-item summary::marker {
  display: none;
  content: ''; 
}

.faq-item summary h3 {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s;
}

.faq-item summary:hover h3 {
  color: var(--gold); 
}

.faq-toggle-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: all 0.3s;
}

.faq-item details[open] .faq-toggle-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item details .faq-answer-content {
  padding: 0 0 22px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}



/* Letzter CTA */
.cta-footer {
  background: var(--dark);
  padding: 100px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-footer::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle, rgba(206,232,227,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-footer .section-label {
  color: var(--gold); 
}

.cta-footer h2 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 16px; 
}

.cta-footer h2 em {
  color: var(--gold);
  font-style: italic; 
}

.cta-footer .cta-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  font-style: italic;
}

.cta-footer p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

.cta-footer .btn-primary {
  font-size: 0.88rem;
  padding: 16px 44px; 
}


/* Responsive */

@media (max-width: 900px) {
  .situationen-grid, .methoden-grid, .testimonial-grid,
  .prozess-grid, .ueber-grid, .standort-grid { grid-template-columns: 1fr; }
  .ueber-grid { grid-template-areas:
    "ueber-item1"
    "ueber-item2"
    "ueber-item3" }
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .zahlen-grid { grid-template-columns: 1fr 1fr; }
  .nav-links a:not(.btn-nav) { display: none; }
  #top-booking-button { display: none; }
  .hero-container { flex-direction: column; }
  .hero-content { width: 100% }
  .hero-right{ margin-top: 5ex; width: 100% }
  .map-container { flex-direction: column; }
  .map-first { width: 100% }
  .map-second{ width: 100% }
}

@media (max-width: 600px) {
  .zahlen-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .section { padding: 72px 0; }
  .methoden-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
}

