/* ==========================================================================
   GLOBAL
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Libre Franklin, Helvetica Neue', Arial, sans-serif;
  background-color: #ffffff;
  color: #333333;
}
/* ==========================================================================
   STARTSEITE
   ========================================================================== */
.page-startseite, html {
  height: 100%;
}
.page-startseite .split-screen {
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-height: 100vh;
}
.page-startseite .split-panel {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
  overflow: hidden;
  padding: 2rem;
}
.page-startseite .split-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  transition: background 0.3s ease;
  z-index: 1;
}
.page-startseite .panel-seminarlocation {
  background-image: url('images/seminaranbieter_1200x1080.jpg');
}
.page-startseite .panel-eventlocation {
  background-image: url('images/firmen_1200x1080.jpg');
}
.page-startseite .panel-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 500px;
}
.page-startseite .panel-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-startseite .panel-content p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.page-startseite .btn-fake {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #fff;
  color: #111;
  font-weight: bold;
  border-radius: 4px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
/* ==========================================================================
   UNTERSEITEN
   ========================================================================== */
.page-unterseite {
  padding-top: 155px;
}
.page-unterseite .top-announcement-bar {
  background-color: #8f3777;
  color: #ffffff;
  width: 100%;
  padding: 0.6rem 0;
}
.page-unterseite .top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-unterseite .top-bar-container a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.page-unterseite .top-bar-container a:hover {
  opacity: 0.8;
}
.page-unterseite .top-bar-social {
  display: flex;
  gap: 10px;
  flex: 1;
}
.page-unterseite .top-bar-social img {
  height: 16px;
  width: auto;
  display: block;
  filter: invert(1);
}
.page-unterseite .top-bar-text {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
}
.page-unterseite .top-bar-text p {
  margin: 0;
  padding: 0;
}
.page-unterseite .top-bar-phone {
  text-align: right;
  flex: 1;
}
.page-unterseite .main-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.page-unterseite .header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 20px 1rem 20px; 
  width: 100%;
}
.page-unterseite .logo {
  display: inline-block;
  flex-shrink: 0;
}
.page-unterseite .logo img {
  height: 70px;
  display: block;
}
.page-unterseite .nav-menu ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}
.page-unterseite .nav-menu a {
  text-decoration: none;
  color: #555555;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s ease;
}
.page-unterseite .nav-menu a:hover {
  color: #8f3777;
}
.page-unterseite .nav-menu a.nav-cta {
  background-color: #8f3777;
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.page-unterseite .nav-menu a.nav-cta:hover {
  background-color: #8f3777;
}
.page-unterseite .nav-toggle {
  display: none;
}
.page-unterseite .nav-toggle-label {
  display: none;
  cursor: pointer;
}
/* ==========================================================================
   HERO 
   ========================================================================== */
.page-unterseite .hero-seminarlocation {
  position: relative;
  background-image: url('images/seminaranbieter_hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 50vh; 
  display: flex;
  align-items: center;
  padding: 4rem 0;
}
.page-unterseite .hero-seminarlocation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 1;
}
.page-unterseite .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: relative;
  z-index: 2; 
}
.page-unterseite .hero-content {
  max-width: 650px; 
  color: #ffffff;
}
.page-unterseite .hero-badge {
  display: inline-block;
  background-color: #8f3777;
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}
.page-unterseite .hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.page-unterseite .hero-content p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}
/* Button-Struktur */
.page-unterseite .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.page-unterseite .hero-actions a {
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
  text-align: center;
}
.page-unterseite .btn-primary {
  background-color: #8f3777; 
  color: #ffffff;
}
.page-unterseite .btn-primary:hover {
  background-color: #722b5e; 
  transform: translateY(-2px);
}
.page-unterseite .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.page-unterseite .btn-secondary:hover {
  background-color: #ffffff;
  color: #111111;
  transform: translateY(-2px);
}
.button-zentrierer {
  display: flex !important;
  justify-content: center !important;
  text-align: center;
  align-items: center !important;
  width: 100% !important;
  margin: 2rem 0 !important; 
}
/* ==========================================================================
   RÄUME  
   ========================================================================== */
.page-unterseite .rooms-section {
  width: 100%;
  margin: 40px 0 60px 0;
}
.page-unterseite .rooms-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column; 
}
.page-unterseite .rooms-intro {
  text-align: center; 
  max-width: 800px;
  margin: 0 auto 3rem auto; 
}
.page-unterseite .rooms-intro h2 {
  font-size: 2.2rem;
  color: #333333;
  margin-bottom: 1rem;
  font-weight: 700;
}
.page-unterseite .rooms-intro p {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.6;
}
.page-unterseite .rooms-grid {
  display: flex;
  flex-direction: row; 
  gap: 30px;
  justify-content: space-between;
}
.page-unterseite .room-card {
  flex: 1;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.page-unterseite .room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.page-unterseite .room-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.page-unterseite .room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-unterseite .room-info {
  padding: 1.5rem;
}
.page-unterseite .room-info h3 {
  font-size: 1.3rem;
  color: #333333;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.page-unterseite .room-info p {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.5;
}
/* ==========================================================================
   AUSSTATTUNG & FACTS
   ========================================================================== */
.page-unterseite .details-section {
  width: 100%;
  background-color: #f9f9f9; 
  padding: 5rem 0;
}
.page-unterseite .details-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row; 
  gap: 60px; 
  align-items: center;
}
/* Linke Spalte */
.page-unterseite .details-features {
  flex: 1.2; 
}
.page-unterseite .details-features h2 {
  font-size: 2rem;
  color: #333333;
  margin-bottom: 1rem;
  font-weight: 700;
}
.page-unterseite .details-features p {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.page-unterseite .features-list {
  list-style: none; 
}
.page-unterseite .features-list li {
  font-size: 1.05rem;
  color: #444444;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 30px;
}
.page-unterseite .features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #8f3777; 
  font-weight: bold;
  font-size: 1.2rem;
}
.page-unterseite .details-facts-box {
  flex: 0.8;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-top: 8px solid #8f3777;
}
.page-unterseite .details-facts-box h3 {
  font-size: 1.4rem;
  color: #333333;
  margin-bottom: 2rem;
  font-weight: 700;
}
.page-unterseite .fact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.page-unterseite .fact-item:last-child {
  margin-bottom: 0; 
}
.page-unterseite .fact-icon {
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 2px;
}
.page-unterseite .fact-item strong {
  display: block;
  font-size: 0.95rem;
  color: #333333;
  margin-bottom: 0.2rem;
}
.page-unterseite .fact-item p {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.4;
}
.page-unterseite section {
  scroll-margin-top: 170px;
}
/* ==========================================================================
   ZIMMER & UMGEBUNG
   ========================================================================== */
.zimmer-umgebung-section {
  padding: 80px 20px;
  background-color: #fcfaf7; 
}
.section-header-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}
.section-header-center h2 {
  font-size: 2.2rem;
  color: #333333;
  margin-bottom: 15px;
}
.section-header-center .section-subtitle {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.6;
}
.split-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.card-style {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.box-image-wrapper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.box-text-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.box-text-content h3 {
  font-size: 1.5rem;
  color: #8f3777;
  margin-bottom: 15px;
}
.box-text-content p {
  color: #555555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.feature-list-mini {
  list-style: none;
  padding: 0;
  margin: auto 0 0 0; 
}
.feature-list-mini li {
  font-size: 0.95rem;
  color: #444444;
  margin-bottom: 10px;
  font-weight: 500;
}
/* ==========================================================================
   PREISE / PAKETE
   ========================================================================== */
.page-unterseite .pricing-section {
  width: 100%;
  padding: 5rem 0;
  background-color: #ffffff;
}
.page-unterseite .pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.page-unterseite .pricing-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}
.page-unterseite .pricing-intro h2 {
  font-size: 2rem;
  color: #333333;
  margin-bottom: 1rem;
  font-weight: 700;
}
.page-unterseite .pricing-intro p {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.6;
}
/* Das Grid für die Karten */
.page-unterseite .pricing-grid {
  display: flex;
  flex-direction: row; 
  gap: 30px;
  align-items: stretch; 
}
.page-unterseite .price-card {
  flex: 1;
  background-color: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.page-unterseite .price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
/* Kopfbereich der Karte */
.page-unterseite .price-header {
  text-align: center;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.page-unterseite .price-header h3 {
  font-size: 1.4rem;
  color: #333333;
  margin-bottom: 0.5rem;
}
.page-unterseite .price-amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333333;
}
.page-unterseite .price-amount span {
  font-size: 0.95rem;
  color: #777777;
  font-weight: 400;
}
.page-unterseite .price-features {
  list-style: none;
  margin-bottom: 2.5rem;
  flex-grow: 1; 
}
.page-unterseite .price-features li {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 25px;
}
.page-unterseite .price-features li::before {
  content: '•';
  color: #8f3777; 
  font-weight: bold;
  font-size: 1.4rem;
  position: absolute;
  left: 5px;
  top: -2px;
}
.page-unterseite .price-footer a {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.page-unterseite .btn-price-secondary {
  border: 2px solid #8f3777;
  color: #8f3777;
  background-color: transparent;
}
.page-unterseite .btn-price-secondary:hover {
  background-color: #8f3777;
  color: #ffffff;
}
.page-unterseite .featured-card {
  border: 2px solid #8f3777; 
  box-shadow: 0 10px 30px rgba(143, 55, 119, 0.1);
}
.page-unterseite .featured-card .price-header h3 {
  color: #8f3777;
  font-weight: 700;
}
.page-unterseite .btn-price-primary {
  background-color: #8f3777;
  color: #ffffff;
  border: 2px solid #8f3777;
}
.page-unterseite .btn-price-primary:hover {
  background-color: #722b5e;
  border-color: #722b5e;
}
.page-unterseite .card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #8f3777;
  color: #ffffff;
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
}
/* ==========================================================================
   PDF DOWNLOAD BANNER
   ========================================================================== */
.page-unterseite .download-cta-section {
  width: 100%;
  background-color: #f6edf3;
  padding: 3.5rem 0 3.5rem 0 !important;
  border-top: 1px solid #ebdbe6;
  border-bottom: 1px solid #ebdbe6;
}
.page-unterseite .download-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row; 
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.page-unterseite .download-cta-content {
  flex: 1.3;
}
.page-unterseite .download-badge {
  display: inline-block;
  color: #8f3777;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.page-unterseite .download-cta-content h2 {
  font-size: 1.7rem;
  color: #333333;
  margin: 0 0 0.75rem 0;
  font-weight: 700;
}
.page-unterseite .download-cta-content p {
  font-size: 1rem;
  color: #555555;
  line-height: 1.5;
  margin: 0;
}
.page-unterseite .download-cta-action {
  flex: 0.7;
  text-align: right;
}
.page-unterseite .btn-download-pdf {
  display: block; 
  margin: 2rem auto; 
  width: max-content;
  background-color: #8f3777;
  color: #ffffff;
  text-decoration: none;
  padding: 1rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(143, 55, 119, 0.15);
  transition: all 0.2s ease;
}
.page-unterseite .btn-download-pdf:hover {
  background-color: #722b5e;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(143, 55, 119, 0.25);
}
.page-unterseite .btn-download-pdf span {
  margin-right: 8px;
  font-size: 1.1rem;
}
/* ==========================================================================
  ÜBER UNS & KÜCHE
   ========================================================================== */
.page-unterseite .about-section {
  width: 100%;
  padding: 5rem 0;
  background-color: #f9f9f9; 
}
.page-unterseite .about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-unterseite .about-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}
.page-unterseite .about-intro h2 {
  font-size: 2rem;
  color: #333333;
  margin-bottom: 1rem;
  font-weight: 700;
}
.page-unterseite .about-intro p {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.6;
}
.page-unterseite .coaches-grid {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-bottom: 6rem;
  align-items: stretch;
}
.page-unterseite .coach-card {
  flex: 1;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  text-align: center;
}
.page-unterseite .coach-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.page-unterseite .coach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}
.page-unterseite .coach-info {
  padding: 1.5rem;
}
.page-unterseite .coach-info h3 {
  font-size: 1.25rem;
  color: #333333;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.page-unterseite .coach-role {
  display: block;
  font-size: 0.85rem;
  color: #8f3777; 
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.page-unterseite .coach-info p {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.5;
}
.page-unterseite .kitchen-showcase {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: center;
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.page-unterseite .kitchen-image {
  flex: 1;
  height: 380px;
  border-radius: 6px;
  overflow: hidden;
}
.page-unterseite .kitchen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-unterseite .kitchen-content {
  flex: 1;
}
.page-unterseite .kitchen-badge {
  display: inline-block;
  background-color: #8f3777;
  color: #ffffff;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}
.page-unterseite .kitchen-content h2 {
  font-size: 1.8rem;
  color: #333333;
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.page-unterseite .kitchen-content p {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.page-unterseite .kitchen-content p:last-child {
  margin-bottom: 0;
}
/* ==========================================================================
  KONTAKT
   ========================================================================== */
.page-unterseite .contact-section {
  width: 100%;
  padding: 6rem 0;
  background-color: #ffffff;
}
.page-unterseite .contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row; 
  gap: 60px;
  align-items: flex-start;
}
.page-unterseite .contact-person-box {
  flex: 1.2;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.page-unterseite .contact-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%; 
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #8f3777; 
}
.page-unterseite .contact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-unterseite .contact-person-details {
  flex: 1;
}
.page-unterseite .contact-subtitle {
  display: block;
  font-size: 0.85rem;
  color: #8f3777;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.page-unterseite .contact-person-details h2 {
  font-size: 2rem;
  color: #333333;
  margin-bottom: 1rem;
  font-weight: 700;
}
.page-unterseite .contact-person-details p {
  font-size: 1.05rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 2rem;
}
/* Calendly Button */
.page-unterseite .btn-calendly {
  display: inline-block;
  background-color: #8f3777; 
  color: #ffffff;
  text-decoration: none;
  padding: 1rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(143, 55, 119, 0.2);
  transition: all 0.2s ease;
  margin-bottom: 1.5rem;
  width: 100%;
  text-align: center;
}
.page-unterseite .btn-calendly:hover {
  background-color: #722b5e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(143, 55, 119, 0.3);
}
.page-unterseite .messenger-channels {
  display: flex;
  gap: 15px;
}
.page-unterseite .channel-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.2s ease;
}
.page-unterseite .channel-link.whatsapp {
  background-color: #25D366; 
}
.page-unterseite .channel-link.whatsapp:hover {
  background-color: #1ebd54;
  transform: translateY(-1px);
}
.page-unterseite .channel-link.telegram {
  background-color: #0088cc; 
}
.page-unterseite .channel-link.telegram:hover {
  background-color: #0077b3;
  transform: translateY(-1px);
}
.page-unterseite .contact-info-box {
  flex: 0.8;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 2.5rem;
  width: 100%;
}
.page-unterseite .contact-info-box h3 {
  font-size: 1.3rem;
  color: #333333;
  margin-bottom: 2rem;
  font-weight: 700;
}
.page-unterseite .info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.page-unterseite .info-item:last-child {
  margin-bottom: 0;
}
.page-unterseite .info-icon {
  font-size: 1.3rem;
  line-height: 1;
  margin-top: 2px;
}
.page-unterseite .info-item strong {
  display: block;
  font-size: 0.9rem;
  color: #333333;
  margin-bottom: 0.2rem;
}
.page-unterseite .info-item p, .page-unterseite .info-item a {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.5;
  text-decoration: none;
}
.page-unterseite .info-item a:hover {
  color: #8f3777; 
}
/* ==========================================================================
   ROUTENPLANER & GOOGLE MAPS
   ========================================================================== */
.page-unterseite .map-route-container {
  width: 100%;
  background-color: #f9f9f9;
  padding: 3rem 20px; 
  text-align: center;
  border-top: 1px solid #eeeeee;
  display: block; 
  clear: both; 
}
.page-unterseite .map-route-text {
  font-size: 1.1rem;
  color: #666666;
  max-width: 50vw;
  display: block !important; 
  margin: 1.25rem auto 1.75rem auto !important;
  text-align: center; 
  line-height: 1.5 !important; 
}
.page-unterseite .map-route-link {
  display: inline-block;
  color: #8f3777; 
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  border-bottom: 2px solid #8f3777;
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.page-unterseite .map-route-link:hover {
  color: #722b5e;
  border-color: #722b5e;
}
.page-unterseite .map-section {
  width: 100%;
  display: block;
  line-height: 0; 
}
.page-unterseite .map-section iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: 0;
}
/* ==========================================================================
   FOOTER
   ========================================================================== */
.page-unterseite .landingpage-footer {
  width: 100%;
  background-color: ##f4f0ea;
  padding: 0.8rem 0; 
  font-size: 0.85rem;
}
.page-unterseite .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between; 
  align-items: center;
}
.page-unterseite .footer-copy {
  color: #888888;
  margin: 0;
}
.page-unterseite .footer-links {
  display: flex;
  gap: 20px;
}
.page-unterseite .footer-links a {
  color: #aaaaaa;
  text-decoration: none;
  transition: color 0.2s ease;
}
.page-unterseite .footer-links a:hover {
  color: #000000; 
}
.eventlocation-hero-visual {
  position: relative;
  width: 100%;
  min-height: 75vh; 
  background-image: url('images/hero-team-event.jpg'); 
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.hero-content-box {
  max-width: 850px;
  background: rgba(255, 255, 255, 0.95); 
  padding: 50px 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.hero-content-box h1 {
  font-size: 2.6rem;
  color: #333333;
  line-height: 1.3;
  margin-bottom: 20px;
}
.hero-content-box .highlight-text {
  color: #8f3777;
}
.hero-content-box .hero-lead {
  font-size: 1.15rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 35px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-buttons .btn-primary {
  background-color: #8f3777;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}
.hero-buttons .btn-primary:hover {
  background-color: #732a5f;
}
.hero-buttons .btn-secondary-white {
  border: 2px solid #8f3777;
  color: #8f3777;
  padding: 12px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}
.hero-buttons .btn-secondary-white:hover {
  background-color: #8f3777;
  color: #ffffff;
}
/* ==========================================================================
   EVENT GRID
   ========================================================================== */
.event-grid-section {
  padding: 40px 20px 40px 20px !important;
  background-color: #fcfaf7; 
}
.event-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.event-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  justify-content: space-between; 
  padding: 20px;
  min-height: 300px;
  position: relative; 
  padding-bottom: 55px; 
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.event-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
}
.event-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.badge-haus {
  background-color: #2e7d32;
}
.badge-transfer {
  background-color: #1565c0;
}
.event-card-content {
  padding: 25px;
  flex-grow: 1;
}
.event-card-content h3 {
  font-size: 1.3rem;
  color: #333333;
  margin-bottom: 12px;
}
.event-card-content p {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
}
/* ==========================================================================
   INDOOR & HAUS HIGHLIGHTS
   ========================================================================== */
.indoor-highlights-section {
  width: 100% !important;
  max-width: 1140px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 80px 20px 20px 20px !important;
  box-sizing: border-box !important;
}
.indoor-highlights-section .section-header-center {
  max-width: 100% !important;
  text-align: center !important;
  margin-bottom: 40px !important;
}
.indoor-highlights-section .section-container {
  max-width: 1200px;
  margin: 0 auto;
}
.indoor-split-layout {
  display: flex !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 50px !important;
  gap: 30px !important; 
  box-sizing: border-box !important;
}
.indoor-main-card {
  flex: 1.1;
  background: #fcfaf7;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  position: relative; 
}
.indoor-card-image {
  position: relative;
  height: 320px;
  width: 100%;
}
.indoor-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indoor-card-body {
  padding: 35px;
}
.indoor-card-body h3 {
  font-size: 1.6rem;
  color: #333333;
  margin-bottom: 15px;
}
.indoor-card-body p {
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}
.indoor-side-stack {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.indoor-row-card {
  display: flex;
  background: #fcfaf7;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  height: calc(50% - 15px); 
  position: relative;
  padding-bottom: 60px; 
}
.indoor-row-image {
  width: 200px;
  flex-shrink: 0;
}
.indoor-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indoor-row-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.indoor-row-content h3 {
  font-size: 1.3rem;
  color: #333333;
  margin: 8px 0 10px 0;
}
.indoor-row-content p {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}
/* Badges & Labels */
.indoor-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #8f3777;
  color: #ffffff;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 4px;
}
.indoor-mini-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #8f3777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
/* ==========================================================================
   PDF BROSCHÜREN DOWNLOAD 
   ========================================================================== */
.download-broschuere-section {
  padding: 100px 20px;
  background-color: #ffffff; 
}
.download-box-container {
  max-width: 1100px;
  margin: -80px auto;
  background: #fcfaf7; 
  border-radius: 12px;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.download-content {
  flex: 1.2;
}
.download-visual {
  flex: 0.8;
  display: flex;
  justify-content: center;
}
.download-visual img {
  max-width: 100%;
  height: auto;
  max-height: 350px;
  transform: rotate(2deg); 
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  transition: transform 0.3s;
}
.download-box-container:hover .download-visual img {
  transform: rotate(0deg) scale(1.03); 
}
.download-content .top-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #8f3777; 
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.download-content h2 {
  font-size: 2.2rem;
  color: #333333;
  margin-bottom: 20px;
}
.download-content p {
  color: #555555;
  line-height: 1.6;
  margin-bottom: 15px;
}
.download-content .download-subtext {
  font-size: 0.95rem;
  font-style: italic;
  color: #777777;
  margin-bottom: 30px;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #8f3777;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(143, 55, 119, 0.3);
  transition: all 0.2s;
}
.btn-download:hover {
  background-color: #732a5f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(143, 55, 119, 0.4);
}
/* ==========================================================================
   ABLAUF
   ========================================================================== */
.ablauf-section {
  padding: 80px 20px;
  background-color: #fcfaf7; 
}
.ablauf-section .top-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #8f3777;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.ablauf-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 50px auto 0 auto;
  position: relative;
}
.ablauf-step-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 2;
}
.step-number-circle {
  width: 60px;
  height: 60px;
  background-color: #8f3777; 
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -70px auto 25px auto; 
  border: 4px solid #fcfaf7; 
  box-shadow: 0 4px 10px rgba(143, 55, 119, 0.2);
}
.ablauf-step-card h3 {
  font-size: 1.3rem;
  color: #333333;
  margin-bottom: 15px;
}
.ablauf-step-card p {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
}
/* ==========================================================================
   STORY
   ========================================================================== */
.eventlocation-story-section {
  padding: 80px 20px;
  background-color: #ffffff;
}
.eventlocation-story-section .top-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #8f3777;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.story-row {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 80px auto;
}
.story-row.reverse {
  flex-direction: row-reverse;
}
.story-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 380px;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-text {
  flex: 1;
  position: relative;
}
.story-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(143, 55, 119, 0.1); 
  position: absolute;
  top: -45px;
  left: 0;
  line-height: 1;
}
.story-text h3 {
  font-size: 1.8rem;
  color: #333333;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.story-text p {
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.7;
}
/* ==========================================================================
   KONTAKT 
   ========================================================================== */
.premium-contact-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fcfaf7 0%, #f5f0eb 100%);
}
.contact-wrapper {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  gap: 60px;
  align-items: center; 
}
.contact-info-panel {
  flex: 1;
}
.contact-pretitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #8f3777;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.contact-info-panel h2 {
  font-size: 2.6rem;
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.2;
}
.contact-intro {
  font-size: 1.15rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 30px;
}
.contact-hospitality-note {
  background: rgba(143, 55, 119, 0.05);
  border-left: 4px solid #8f3777;
  padding: 20px;
  border-radius: 0 8px 8px 0;
}
.contact-hospitality-note p {
  margin: 0;
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact-card-panel {
  flex: 1;
  width: 100%;
}
.premium-contact-card {
  background: #ffffff;
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}
.premium-contact-card h3 {
  font-size: 1.4rem;
  color: #333333;
  margin-bottom: 25px;
}
.contact-person-block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.person-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #8f3777;
}
.person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.person-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333333;
  margin: 0;
}
.person-role {
  font-size: 0.85rem;
  color: #777777;
  margin: 4px 0 0 0;
}
.contact-divider {
  border: 0;
  height: 1px;
  background: #eeeeee;
  margin: 25px 0;
}
.contact-data-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 35px;
}
.contact-data-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-icon {
  font-size: 1.3rem;
  background: rgba(143, 55, 119, 0.08);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #8f3777;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 0.95rem;
  color: #333333;
  margin-bottom: 4px;
}
.contact-item-text p {
  font-size: 1rem;
  color: #666666;
  margin: 0;
  line-height: 1.4;
}
.contact-link {
  font-size: 1rem;
  color: #8f3777;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.contact-link:hover {
  color: #732a5f;
  text-decoration: underline;
}
.btn-contact-action {
  display: block;
  text-align: center;
  background-color: #8f3777;
  color: #ffffff;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(143, 55, 119, 0.2);
  transition: all 0.2s;
}
.btn-contact-action:hover {
  background-color: #732a5f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(143, 55, 119, 0.3);
}
/* ==========================================================================
   PREIS-BADGES
   ========================================================================== */
.card-price-badge {
  position: absolute; 
  bottom: 20px; 
  right: 20px; 
  width: max-content; 
  padding: 6px 12px; 
  background-color: #f6edf3; 
  color: #8f3777;
  font-weight: 700;
  font-size: 0.95rem; 
  border-radius: 4px; 
  border: 1px solid #ebdbe6; 
}
.price-unit {
  font-size: 0.8rem;
  font-weight: 500;
  color: #7c6d80; 
  margin-left: 2px;
}
/* ==========================================================================
   LOGO-OVERLAY
   ========================================================================== */
.split-panel.panel-eventlocation {
  position: relative !important;
}
.panel-overlay-logo {
  position: absolute;
  bottom: 25px; 
  right: 25px; 
  width: 90px; 
  height: auto;
  z-index: 5; 
  pointer-events: none; 
  opacity: 0.95;
  transition: all 0.3s ease;
}
/* ==========================================================================
   IMPRESSUM- & DATENSCHUTZ
   ========================================================================== */
.legal-content-container {
  max-width: 800px; 
  margin-origin: center;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 20px 100px 20px; 
}
.legal-section h1 {
  font-size: 2.5rem;
  color: #4a3e4d;
  margin-bottom: 30px;
}
.legal-section h2 {
  font-size: 2rem;
  color: #4a3e4d;
  margin-top: 40px;
  margin-bottom: 25px;
}
.legal-section h3 {
  font-size: 1.25rem;
  color: #8f3777; 
  margin-top: 25px;
  margin-bottom: 10px;
}
.legal-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 15px;
}
.legal-divider {
  border: 0;
  height: 1px;
  background: #ebdbe6;
  margin: 50px 0;
}
.page-startseite .btn-fake:hover {
  transform: scale(1.05);
  background-color: #8f3777 !important; 
  color: #ffffff !important; 
  cursor: pointer;
}
.legal-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #333333;
  line-height: 1.6;
}
.legal-container h1 {
  font-size: 2.2rem;
  color: #8f3777; 
  margin-bottom: 25px;
  border-bottom: 2px solid #f6edf3;
  padding-bottom: 10px;
}
.legal-container h3 {
  font-size: 1.4rem;
  color: #8f3777;
  margin-top: 35px;
  margin-bottom: 15px;
}
.legal-container p {
  margin-bottom: 15px;
  text-align: justify; 
}
.legal-container ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
.legal-container li {
  margin-bottom: 8px;
}
.legal-container a {
  color: #8f3777;
  text-decoration: none;
  border-bottom: 1px dotted #8f3777;
  transition: color 0.2s ease;
}
.legal-container a:hover {
  color: #a6468b;
  border-bottom-style: solid;
}
.wko-logo-container {
  margin-top: 15px;
  margin-bottom: 15px;
}
.wko-logo {
  max-width: 120px;
  height: auto; 
  display: block;
  opacity: 0.9; 
  transition: opacity 0.2s ease;
}
.wko-logo:hover {
  opacity: 1; 
}

@media screen and (min-width: 769px) {
    .panel-seminarlocation {
        border-right: 1px solid rgba(255, 255, 255, 0.3); 
    }
}

@media screen and (max-width: 768px) {
    .panel-seminarlocation {
        border-right: none; 
        border-bottom: 1px solid rgba(255, 255, 255, 0.3); 
    }
}
/* ==========================================================================
   DESKTOP- & HOVER-EFFEKTE (Ab 768px Breite)
   ========================================================================== */
@media (min-width: 768px) {
  .page-startseite .split-screen {
    flex-direction: row;
  }
  .page-startseite .panel-seminarlocation {
    background-image: url('images/seminaranbieter_800x1000.jpg');
  }
  .page-startseite .panel-eventlocation {
    background-image: url('images/firmen_800x1000.jpg');
  }
  .page-startseite .panel-content h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
  }
  .page-startseite .split-panel:hover {
    flex: 1.2;
  }
  .page-startseite .split-panel:hover::before {
    background: rgba(0, 0, 0, 0.25);
  }
  .page-startseite .split-panel:hover .btn-fake {
    transform: scale(1.05);
    background-color: #e0e0e0;
  }
}
/* ==========================================================================
   GLOBAL DEFINIERTE BASICS & DESKTOP (Ab 1024px)
   ========================================================================== */
.split-screen {
  display: flex;
  width: 100%;
}
.split-panel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.panel-seminarlocation {
  background-image: url('images/seminaranbieter_800x1000.jpg');
}
.panel-eventlocation {
  background-image: url('images/firmen_800x1000.jpg');
}
@media (min-width: 1024px) {
  .split-screen {
    flex-direction: row !important;
    height: 100vh !important;
  }
  .split-screen .split-panel {
    flex: 1 !important;
    transition: flex 0.5s ease-in-out !important;
  }
  .panel-content h2 {
    font-size: 2.3rem !important;
    margin-bottom: 30px !important;
  }
  .split-screen .split-panel:hover {
    flex: 1.25 !important;
  }
  .split-screen .split-panel:hover::before {
    background: rgba(0, 0, 0, 0.25) !important;
  }
  .split-screen .split-panel:hover .btn-fake {
    transform: scale(1.05) !important;
    background-color: #8f3777 !important; 
    color: #ffffff !important; 
    transition: background-color 0.3s ease, transform 0.3s ease !important;
  }
}
/* ==========================================================================
   IPAD- & TABLET-OPTIMIERUNGEN (Zwischen 768px und 1023px)
   ========================================================================== */
@media (max-width: 992px) {
  .page-unterseite .indoor-split-layout {
    flex-direction: column;
    gap: 30px;
  }
  .page-unterseite .indoor-row-card {
    flex-direction: column;
    height: auto;
  }
  .page-unterseite .indoor-row-image {
    width: 100%;
    height: 200px;
  }
}
@media (max-width: 900px) {
  .page-unterseite .download-box-container {
    flex-direction: column-reverse;
    padding: 35px 20px;
    gap: 30px;
    text-align: center;
  }
  .page-unterseite .download-visual img {
    max-height: 250px;
  }
  .page-unterseite .btn-download {
    width: 100%;
    justify-content: center;
  }
  .page-unterseite .premium-contact-section {
    padding: 60px 15px;
  }
  .page-unterseite .contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .page-unterseite .premium-contact-card {
    padding: 30px 20px;
  }
  .page-unterseite .contact-info-panel h2 {
    font-size: 2rem;
  }
}
/* ==========================================================================
   SMARTPHONE- & TABLET-HOCHFORMAT OPTIMIERUNG (Unter 1024px)
   ========================================================================== */
@media (max-width: 1023px) {
  .split-screen {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
  }
  .split-panel.panel-seminarlocation, .split-panel.panel-eventlocation {
    min-height: 500px !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    padding: 40px 20px !important;
  }
  .panel-content h2 {
    font-size: 2rem !important;
    margin-bottom: 25px !important;
    text-align: center !important;
  }
  .panel-eventlocation .btn-fake {
    margin-bottom: 40px !important;
  }
  .panel-overlay-logo {
    position: absolute !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 80px !important;
    z-index: 5;
  }
  .page-unterseite .top-bar-social, .page-unterseite .top-bar-phone {
    display: none !important;
  }
  .page-unterseite .top-bar-container {
    justify-content: center !important;
  }
  .page-unterseite .top-bar-text {
    font-size: 0.8rem !important;
    text-align: center !important;
  }
  .page-unterseite .nav-toggle-label {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
  }
  .page-unterseite .nav-toggle-label span, .page-unterseite .nav-toggle-label span::before, .page-unterseite .nav-toggle-label span::after {
    display: block;
    background: #333;
    height: 2px;
    width: 30px;
    position: absolute;
    transition: 0.3s ease;
  }
  .page-unterseite .nav-toggle-label span::before {
    top: 8px;
    content: '';
  }
  .page-unterseite .nav-toggle-label span::after {
    top: 16px;
    content: '';
  }
  .page-unterseite .nav-menu {
    position: absolute;
    top: 100%;
    left: 0; 
    right: 0; 
    width: 100% !important;
    background: rgba(255, 255, 255, 0.75) !important; 
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    display: none;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    z-index: 999;
  }
  .page-unterseite .nav-menu ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    align-items: stretch !important;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .page-unterseite .nav-menu ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    width: 100%;
  }
  .page-unterseite .nav-menu ul li:last-child {
    border-bottom: none;
  }
  .page-unterseite .nav-menu ul li a {
    display: block !important;
    padding: 12px 20px !important;
    color: #333333 !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    text-align: left !important;
    transition: background 0.2s ease;
  }
  .page-unterseite .nav-menu ul li a:active {
    background-color: rgba(0, 0, 0, 0.03);
  }
  .page-unterseite .nav-menu ul li a.btn-kontakt, .page-unterseite .nav-menu ul li a[class*="button"], .page-unterseite .nav-menu ul li a[class*="btn"], .page-unterseite .nav-menu ul li a[href*="kontakt"] {
    background: none !important;
    background-color: transparent !important;
    color: #333333 !important;
    padding: 12px 20px !important; 
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    width: 100% !important;
    display: block !important;
    text-align: left !important;
  }
  .page-unterseite .nav-toggle:checked ~ .nav-menu {
    display: block;
  }
  .page-unterseite .hero-seminarlocation {
    min-height: 60vh;
    padding: 3rem 0;
  }
  .page-unterseite .hero-content h1 {
    font-size: 2rem;
  }
  .page-unterseite .hero-content p {
    font-size: 1rem;
  }
  .page-unterseite .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
    width: 100% !important;
  }
  .page-unterseite .hero-content .hero-actions .btn-primary, .page-unterseite .hero-content .hero-actions .btn-secondary {
    display: inline-flex !important;
    width: auto !important;
    max-width: max-content !important;
    padding: 12px 25px !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
  .page-unterseite .hero-image-overlay {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    box-sizing: border-box !important;
  }
  .page-unterseite .hero-content-box {
    width: 100% !important;
    max-width: 100% !important;
    padding: 30px 20px !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-unterseite .hero-content-box h1 br {
    display: none !important;
  }
  .page-unterseite .hero-content-box h1 {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
  }
  .page-unterseite .hero-content-box .hero-lead {
    font-size: 0.95rem !important;
    margin-bottom: 25px !important;
  }
  .page-unterseite .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
  }
  .page-unterseite .hero-buttons .btn-primary, .page-unterseite .hero-buttons .btn-secondary-white {
    display: inline-flex !important;
    width: auto !important;
    max-width: max-content !important;
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
    text-align: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
  .page-unterseite .rooms-intro h2 {
    font-size: 1.8rem;
  }
  .page-unterseite .rooms-intro p {
    font-size: 1rem;
  }
  .page-unterseite .rooms-grid {
    flex-direction: column;
    gap: 25px;
  }
  .page-unterseite .room-image {
    height: 200px;
  }
  .page-unterseite .details-section {
    padding: 3rem 0;
  }
  .page-unterseite .details-container {
    flex-direction: column;
    gap: 40px;
  }
  .page-unterseite .details-facts-box {
    width: 100%;
    padding: 1.5rem;
  }
  .page-unterseite .zimmer-umgebung-section {
    padding: 50px 15px;
  }
  .page-unterseite .section-header-center h2 {
    font-size: 1.8rem;
  }
  .page-unterseite .box-text-content {
    padding: 20px;
  }
  .page-unterseite .pricing-grid {
    flex-direction: column;
    gap: 40px;
  }
  .page-unterseite .price-card {
    padding: 2rem 1.5rem;
  }
  .page-unterseite .event-grid-section {
    padding: 50px 15px;
  }
  .page-unterseite .event-cards-grid {
    grid-template-columns: 1fr;
  }
  .page-unterseite .download-cta-container {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  .page-unterseite .download-cta-action {
    width: 100%;
    text-align: center;
  }
  .page-unterseite .btn-download-pdf {
    width: 100%;
  }
  .page-unterseite .coaches-grid {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 4rem;
  }
  .page-unterseite .kitchen-showcase {
    flex-direction: column;
    padding: 1.5rem;
    gap: 25px;
  }
  .page-unterseite .kitchen-image {
    width: 100%;
    height: 250px;
  }
  .page-unterseite .ablauf-steps-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 80px;
  }
  .page-unterseite .ablauf-step-card {
    padding: 35px 20px;
  }
  .page-unterseite .story-row, .page-unterseite .story-row.reverse {
    flex-direction: column;
    gap: 25px;
    margin: 50px auto;
  }
  .page-unterseite .story-image {
    width: 100%;
    height: 250px;
  }
  .page-unterseite .story-text {
    text-align: left;
    padding-top: 15px;
  }
  .page-unterseite .story-number {
    top: -25px;
    font-size: 2.8rem;
  }
  .page-unterseite .story-text h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  .page-unterseite .contact-section {
    padding: 4rem 0;
  }
  .page-unterseite .contact-container {
    flex-direction: column;
    gap: 40px;
  }
  .page-unterseite .contact-person-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .page-unterseite .messenger-channels {
    flex-direction: column;
    gap: 10px;
  }
  .page-unterseite .map-route-container {
    padding: 2rem 20px;
  }
  .page-unterseite .map-section iframe {
    height: 300px;
  }
  .page-unterseite .footer-container {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .page-legal .legal-container {
    padding: 15px;
    margin: 20px auto;
  }
  .page-legal .legal-container h1 {
    font-size: 1.8rem;
  }
  .page-legal .legal-container h3 {
    font-size: 1.2rem;
  }
  .page-legal .legal-container p {
    text-align: left;
  }
}
/* ==========================================================================
   (Landscape-Modus)
   ========================================================================== */
@media (max-width: 1023px) and (orientation: landscape) {
  html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
    width: 100% !important;
  }
  .page-unterseite .hero-content h1, .page-unterseite .hero-content-box h1 {
    font-size: 1.4rem !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
  }
  .page-unterseite .hero-content p, .page-unterseite .hero-content-box .hero-lead {
    font-size: 0.85rem !important;
    margin-bottom: 15px !important;
  }
  .page-unterseite .hero-actions, .page-unterseite .hero-buttons {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .page-unterseite .hero-content .hero-actions .btn-primary, .page-unterseite .hero-content .hero-actions .btn-secondary, .page-unterseite .hero-buttons .btn-primary, .page-unterseite .hero-buttons .btn-secondary-white {
    font-size: 0.85rem !important;
    padding: 8px 16px !important;
    width: auto !important;
    max-width: max-content !important;
  }
  .page-unterseite .nav-menu {
    max-height: 65vh !important;
    overflow-y: auto !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }
  .page-unterseite .nav-menu ul li a {
    padding: 8px 20px !important;
    font-size: 0.85rem !important;
  }
}
@media screen and (max-width: 768px) {
    .page-unterseite .map-route-text {
        text-align: left !important; 
		font-size: 0.85rem;
        max-width: 100% !important;   
        margin-left: 0 !important;   
        margin-right: 0 !important; 
    }
}






/* ==========================================================================
   NEUE BILDERGALERIE (12 Desktop / 4 Mobil)
   ========================================================================== */

.galerie-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.galerie-section h2 {
    margin-bottom: 40px;
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
}

.galerie-item {
    display: block; 
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4 / 3; 
}

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.3s ease;
    display: block;
}

.galerie-item:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   RESPONSIVE ANPASSUNGEN
   ========================================================================== */
@media screen and (max-width: 768px) {
    .galerie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* 2. Für Smartphones (Kleine Bildschirme bis 480px) */
@media screen and (max-width: 480px) {
    .galerie-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }


    .galerie-item:nth-child(n+4) {
        display: none !important;
    }
}