@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

:root {
  --bg-main: #000;
  --text-main: #fff;
  --accent: #CA9E67;
  --text-primary: #333;
  --text-secondary: #666;
  --button-text: #fff;
  --accent-hover: #A67C49;
  --font-main: 'Montserrat', sans-serif;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-main);
  color: var(--text-main);
  background: var(--bg-main);
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  background: var(--bg-main);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
}
.logo img {
  height: 50px;
  width: auto;
}






.search-container {
  text-align: center;
  margin-bottom: 20px;
    margin-top:100px;
}

#search-input {
  padding: 10px;
  width: 80%;
  max-width: 400px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  display: block;
  margin: 0 auto; /* Zentriert das Input-Feld */
}

.results-container {
  margin-top: 30px;
  text-align: center;
  width: 100%;
}

.links-container {
  margin-top: 20px;
}

.search-result-link {
  display: block;
  padding: 8px;
  margin-bottom: 10px;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  width: fit-content;
  margin: 0 auto; /* Zentriert die Links */
}

.search-result-link:hover {
  background-color: var(--accent);
}

/* Styles f�r die Inhalte, die durchsucht werden */
.content-container .searchable {
  background-color: #fff;
  padding: 15px;
  margin: 10px 0;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 80%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto; /* Zentriert die Inhalte */
}

.searchable {
  
  margin: 10px;
  border-radius: 5px;  /* Abgerundete Ecken f�r die Card */
}




.event-date {
  color: var(--accent)!important;
  font-weight: bold;
  margin: 5px 0;
  font-size: 1.1rem;
}


.search-info {
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 5px;
    padding:2px;
}







h3 {
  margin-top: 0;
}


/* Desktop Navigation */
/* Desktop Styles */
.nav-desktop ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-desktop a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-desktop a:hover::after {
  width: 100%;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none; /* Standardm��ig unsichtbar */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-main);
  padding: 1rem;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 999;
  width: 200px;
}

.dropdown-menu li {
  padding: 0.5rem 0;
}

.dropdown-menu a {
  color: var(--text-main);
  text-decoration: none;
}

.dropdown-menu a:hover {
  color: var(--accent);
}

/* Desktop: Dropdown zeigt sich nur bei Hover */
@media (min-width: 769px) {
  /* Ensure dropdown is only shown on hover */
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Burger-Icon */
.burger {
  display: none;
  position: relative;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.burger .line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.burger .line:nth-child(1) {
  top: 0;
}

.burger .line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger .line:nth-child(3) {
  bottom: 0;
}

.burger.active .line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background: var(--accent);
}

.burger.active .line:nth-child(2) {
  opacity: 0;
}

.burger.active .line:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  background: var(--accent);
}

/* Mobile Navigation */
.nav-mobile {
  position: fixed;
  top: 60px;
  right: 0;
  width: 80vw;
  max-width: 300px;
  height: calc(100vh - 60px);
  background: var(--bg-main);
  transform: translateX(100%);
  transition: transform 0.4s;
  z-index: 1000;
  padding: 2rem 1rem;
}

.nav-mobile.active {
  transform: translateX(0);
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
    padding: 5px!important;
}

.nav-mobile a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.2rem;
}

.nav-mobile a:hover {
  color: var(--accent);
}

/* Mobile Dropdown - Nur bei Klick anzeigen */
.nav-mobile .dropdown-menu {
  display: none; /* Standardm��ig unsichtbar */
  padding-left: 2rem;
}

.nav-mobile .dropdown.active .dropdown-menu {
  display: block; /* Zeigt Dropdown beim Klick */
}

/* Media Query f�r Mobile */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .burger {
    display: block;
  }
}
/* Basis-Styles */
.nav-desktop .dropdown-menu {
  display: none; /* Standardm��ig versteckt */
}

.nav-desktop .dropdown:hover .dropdown-menu {
  display: block; /* Dropdown anzeigen, wenn Hover */
}

.nav-mobile .dropdown-menu {
  display: none; /* Standardm��ig versteckt */
}

.nav-mobile .dropdown.active .dropdown-menu {
  display: block; /* Dropdown anzeigen, wenn aktiv */
}

.burger {
  display: none; /* Standardm��ig ausblenden, wird in Mobile-Ansicht aktiviert */
}

@media (max-width: 768px) {
  .burger {
    display: block; /* Burger-Men� anzeigen */
  }

  .nav-desktop {
    display: none; /* Desktop-Men� ausblenden in der mobilen Ansicht */
  }

  .nav-mobile {
    display: block; /* Mobile-Men� anzeigen */
  }
}











#contact {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-main);
}

#contact .section-title {
  font-size: 2.5rem;
  margin-top: 1rem;
}

#contact a {
  color: var(--text-main);
  text-decoration: underline;
  transition: color 0.3s ease;
}

#contact a:hover {
  color: var(--accent);
}



.section-intro
{text-align: center;}


/* Section Titles */
.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto!important;
}
.section-title {
  font-family: var(--font-main);
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--accent), var(--accent));
  -webkit-background-clip: text;
  color: transparent;
    
}


.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-main);
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}
.btn:hover {
  background: #b38f00;
}


/* Grid-3 Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
 
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.card img {
  width: 100%;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-container {
  position: relative;
  overflow: hidden;
  margin: 3rem 0;
  
  backdrop-filter: blur(6px);
  padding: 1rem;
  border: none!important;
  
     
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
    
}

.carousel-slide {
  min-width: 100%;
  padding: 2rem;
  text-align: center;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeSlide 0.5s ease-in-out;
     border: none!important;
}

.carousel-slide img {
  max-width: 300px;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.carousel-slide img:hover {
  transform: scale(1.05);
}

.carousel-slide h3 {
  font-size: 1.75rem;
  margin: 1rem 0 0.5rem;
}

.carousel-slide p {
  font-size: 1rem;
  max-width: 600px;
  opacity: 0.9;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-main);
  padding: 0.75rem 1rem;
  border-radius: 50%;
  z-index: 2;
  transition: background 0.3s, transform 0.2s;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-50%) scale(1.1);
  color: var(--accent);
}

.carousel-prev {
  left: 10px;
}
.carousel-next {
  right: 10px;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}










.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))!important;
  gap: 2rem;
  margin-top: 2rem;
}

.event-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  animation: floatIn 0.8s ease forwards;
  opacity: 0;
  

}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.event-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.event-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  color: var(--text-main);
}

/* Media Query für kleine Bildschirme */
@media (max-width: 768px) {
  .event-content {
    padding: 0;
}
    .section{
    padding: 2rem 1rem;
    }
  
}


.event-content h3 {
  font-size: 1.4rem;
  color: var(--accent);
  margin: 0;
}

.event-content p {
  font-size: 1rem;
  opacity: 0.95;
  line-height: 1.5;
}

.event-btn {
  align-self: flex-start;
  background-color: var(--accent);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.event-btn:hover {
  background-color: var(--text-main);
  color: var(--accent);
  transform: scale(1.05);
}

/* Fancy animation on scroll */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: Staggered animation delay */
.event-card:nth-child(1) {
  animation-delay: 0.2s;
}
.event-card:nth-child(2) {
  animation-delay: 0.4s;
}
.event-card:nth-child(3) {
  animation-delay: 0.6s;
}








/* Gallery Grid */
.grid-4.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.gallery-image {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}
.gallery-image:hover {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1002;
  flex-direction: column;
  padding: 1rem;
}

.lightbox-img {
  max-width: 90%;
  max-height: 70%;
  border-radius: 5px;
}

.caption {
  color: #fff;
  margin: 1rem 0;
}

.close-btn {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 4rem;
  color: var(--accent);
  cursor: pointer;
  z-index: 1003;
}

/* Navigation Buttons */
.lightbox-nav {
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1003;
}

#prevBtn {
  left: 10px;
}

#nextBtn {
  right: 10px;
}






/* Back-to-Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px; /* Button-Gr��e */
  height: 40px; /* Button-Gr��e */
  display: flex;
  justify-content: center; /* Zentriert horizontal */
  align-items: center; /* Zentriert vertikal */
  font-size: 1.2rem; /* Kleinere Schriftgr��e f�r das Icon */
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 9999;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* Font Awesome Icon */
.back-to-top i {
  font-size: 1.2rem; /* Die Gr��e des Icons */
}



.mobile-logo{
    margin-bottom: 30px;
}





















/* Footer-Styling */
footer {
  background-color: transparent; /* Dunkler Hintergrund */
  color: #fff; /* Wei�e Schrift */
  padding: 4rem 1rem;
  text-align: center;
  position: relative; /* Positionierung auf normalem Layout */
  width: 100%;
  margin-top: 200px; /* Abstand zum Content oben */
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  justify-items: center;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li {
  margin: 0.5rem 0;
}

.footer-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

.footer-nav ul li a:hover {
  color: var(--accent); /* Akzentfarbe f�r Hover */
}

.newsletter form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.newsletter input {
  padding: 0.75rem;
  
  margin-bottom: 1rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.newsletter button {
  padding: 0.75rem 1.5rem;
  background-color: var(--accent); /* Akzentfarbe f�r Button */
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

.newsletter button:hover {
  background-color: darken(var(--accent), 10%); /* Dunklere Variante der Akzentfarbe f�r Hover */
}

.footer-bottom {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #bbb; /* Helles Grau f�r den Text */
}

/* Responsive Design */
@media (max-width: 768px) {
  footer {
    margin-top: 200px; /* Abstand zum Content oben */
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter form {
    width: 100%;
    gap: 1rem;
  }

  .newsletter input {
    width: 100%;
  }

  .footer-logo img {
    max-width: 120px;
  }

  /* Footer Abstand auf Mobilger�ten */
  .main-content {
    padding-bottom: 300px; /* Gr��erer Abstand zum Footer auf mobilen Ger�ten */
  }
}

@media (max-width: 480px) {
  .footer-nav ul li a {
    font-size: 0.9rem;
  }

  .newsletter input {
    padding: 0.5rem;
  }

  .newsletter button {
    padding: 0.5rem 1rem;
  }

  /* Dynamischer Abstand f�r den Footer auf kleinen Bildschirmen */
  .main-content {
    padding-bottom: 250px; /* Noch gr��erer Abstand auf sehr kleinen Bildschirmen */
  }
}

















/* Fade-In */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}
.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Neue Hero Section mit Video-Hintergrund */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute; /* <- wichtig */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* wenn keine Interaktion n�tig */
}

.hero-logo {
  max-width: 70%;
  height: auto;
  z-index: 3;
  margin-bottom: 50px;
}
@media (min-width: 1200px) {
  .hero-logo {
    max-width: 40%;
  }
}



.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column; /* Wichtig! Damit alles untereinander erscheint */
  align-items: center;     /* Zentriert horizontal */
  justify-content: center; /* Zentriert vertikal */
  text-align: center;
  z-index: 2;
  padding: 2rem;
}








.press-section {
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 40px auto;
  max-width: 90%;
  border-radius: 12px;
  text-align: center;
  color: var(--text-main);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border: thin solid var(--accent);

}




.press-header-img {
  width: 100%;
  max-width: 500px!important;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 0 auto 2rem;
  display: block;
}





.press-section h2 {
  font-size: 2rem;
  color: var(--accent);
  font-family: var(--font-main);
  margin-bottom: 16px;
}

.press-description {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--text-main);
}

.press-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.press-btn {
  background-color: var(--accent);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.press-btn:hover {
  background-color: var(--text-main);
  color: var(--accent);
}










.about-section {
  padding: 30px;
 
  -webkit-backdrop-filter: blur(10px);
  margin: 40px auto;
  max-width: 90%;
  border-radius: 12px;
  text-align: center;
  color: var(--text-main);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
   margin-bottom: 100px;

}

.about-section h2 {
  font-size: 2rem;
  color: var(--accent);
  font-family: var(--font-main);
  margin-bottom: 24px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.about-text {
  max-width: 500px;
  text-align: left;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-btn {
  background-color: var(--accent);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.about-btn:hover {
  background-color: var(--text-main);
  color: var(--accent);
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}



@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-buttons {
    justify-content: center;
  }
}















/* Hauptbereich der Produktempfehlungen */
#produktempfehlungen {
  padding: 4rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: transparent;
  color: #fff;
}

/* �berschrift */
#produktempfehlungen h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
}

/* Container f�r die Produktkarten */
.product-cards-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 1.5rem;
  justify-content: flex-start;
  padding: 1rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-bottom: 4rem;
  scroll-snap-type: x mandatory;
  scroll-padding: 1rem;
  background-color: transparent;
}

/* Einzelne Produktkarte */
.product-card {
  flex: 0 0 auto;
  width: 250px;
  scroll-snap-align: start;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: thin solid var(--accent);

}

/* Hover-Effekt */
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Bild */
.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Produktname */
.product-card h3 {
  font-size: 1.25rem;
  margin: 1rem 0;
  color: var(--accent);
}

/* Beschreibung */
.product-card p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 1.5rem;
}

/* Button */
.product-btn {
  display: inline-block;
  background-color: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.product-btn:hover {
  background-color: var(--accent);
}

/* Linkfarbe */
.product-card a {
  color: #fff;
  text-decoration: none;
}

/* Zentrierung und Breitenlimit f�r gr��ere Screens */
@media (min-width: 1230px) {
  .product-cards-container {
    margin: 0 auto;
    max-width: 75%;
  }
}


.partnerprev, #contact, {
    border: thin solid var(--accent)!important;

}

.partner-buttons {
  width: 100%;
  display: inline-flex;
  justify-content: center; /* mittig horizontal */
  align-items: center;     /* mittig vertikal (falls n�tig) */
  flex-direction: row;     /* nebeneinander */
  gap: 1rem;               /* Abstand zwischen den Buttons */
  margin-top: 2rem;        /* Abstand nach oben */
}

.partner-btn {
  background-color: var(--accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 200px; /* gleiche Breite */
  text-align: center;
}

.partner-btn:hover {
  background-color: var(--text-main);
  color: var(--accent);
  transform: scale(1.05);
}


@media (max-width: 600px) {
  .partner-buttons {
    flex-direction: column;
  }
}





/* Kontakt Section */
#contact {
  
  border-radius: 1rem;
  padding: 3rem 2rem;
  margin: 4rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  text-align: center;
  animation: floatIn 0.8s ease forwards;
  opacity: 0;
    max-width: 600px;
}

#contact h2 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

#contact p {
  font-size: 1rem;
  color: var(--text-main);
  opacity: 0.95;
}

#contact a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

#contact a:hover {
  color: var(--text-main);
}

/* Back-to-Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--accent);
  color: #fff;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.back-to-top:hover {
  background-color: var(--text-main);
  color: var(--accent);
  transform: scale(1.1);
}

/* Animation floatIn (wie bei event-card) */
@keyframes floatIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}





















.brands-banner {
  width: 100%;
  overflow: hidden;
  background-color: transparent;
  padding: 10px 0;
  position: relative;
  margin-top: 40px;
}

.brands-list-wrapper {
  display: flex;
  width: max-content;
  position: relative;
  animation: scroll-brands 60s linear infinite; /* Dauer f�r die Animation */
}

.brands-list {
  display: flex;
  gap: 50px;
}

.brands-list img {
  height: 50px;
  object-fit: contain;
}

/* Abstand zwischen den beiden Listen */
.brands-list.clone {
  position: absolute;
  left: 100%; /* Zweite Liste beginnt dort, wo die erste aufh�rt */
  margin-left: 50px; /* Hier f�gt der Abstand hinzu */
}

/* Keyframes f�r das Scrollen */
@keyframes scroll-brands {
  0% {
    transform: translateX(20%); /* Startpunkt der Animation */
  }
  100% {
    transform: translateX(-100%); /* Am Ende wird der gesamte Wrapper nach links verschoben */
  }
}

/* Media Query für kleine Bildschirme */
@media (max-width: 768px) {
  @keyframes scroll-brands {
    0% {
      transform: translateX(10%); /* Angepasster Startpunkt für kleinere Bildschirme */
    }
    100% {
      transform: translateX(-100%);
    }
  }
}








/* Scroll Indicator */
.scroll-indicator {
  height: 3px; /* H�he der Linie */
  background-color: var(--accent); /* Akzentfarbe f�r die Linie */
  width: 0%; /* Startbreite der Linie */
  position: absolute;
  bottom: 0; /* Linie an den unteren Rand der Navigation setzen */
  left: 0;
  transition: width 0.25s ease-out; /* Sanfte Animation f�r die Breiten�nderung */
  z-index: 999; /* Sicherstellen, dass die Linie �ber anderen Inhalten liegt */
}

/* F�r die Desktop-Navigation: Positionieren des Scroll-Indikators direkt unter der Navigation */
header .header-grid {
  position: relative; /* Setze das Container-Element auf relative Position */
}

/* Responsiv auf mobile Ger�te */
@media (max-width: 768px) {
  /* Den Abstand bei mobilen Ger�ten anpassen */
  .scroll-indicator {
    top: 100%; /* Positioniert die Linie direkt unterhalb der Navigation */
    
  }

  header .header-grid {
    position: relative; /* Sicherstellen, dass der Container der Navigation relativ positioniert ist */
  }
}







#audio-toggle {
  position: fixed;
  top: 90px;
  right: 30px;
  background: #ffffffaa;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  z-index: 1000;
  font-size: 1.2rem;
}

#audio-toggle:hover {
  background: #ffffff;
}











.background-circles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.background-circles span {
  position: absolute;
  display: block;
  width: 250px;
  height: 250px;
  background: var(--accent);
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(40px);
  animation: moveAndRotate 30s ease-in-out infinite;
}

/* Zuf�llige Startpositionen */
.background-circles span:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.background-circles span:nth-child(2) { top: 50%; left: 70%; animation-delay: 6s; }
.background-circles span:nth-child(3) { top: 80%; left: 25%; animation-delay: 12s; }
.background-circles span:nth-child(4) { top: 25%; left: 60%; animation-delay: 18s; }
.background-circles span:nth-child(5) { top: 70%; left: 10%; animation-delay: 24s; }

@keyframes moveAndRotate {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -20px) rotate(90deg);
  }
  50% {
    transform: translate(-40px, 30px) rotate(180deg);
  }
  75% {
    transform: translate(20px, 20px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}





.custom-hero h1 {
 
    word-break: break-word; /* Oder: word-break: break-word; */
  overflow-wrap: break-word /* Sicherstellen, dass lange W�rter in der n�chsten Zeile umgebrochen werden */

}

/* Hero Section */
.custom-hero {
  position: relative;
  width: 100%;
  height: auto;
  background: url('https://picsum.photos/1920/800?blur=2') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

/* Overlay auf dem Hero */
.custom-hero-overlay {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: 100%;
  padding: 2rem 4rem;
  text-align: center;
  color: #fff!;
    
}

.custom-hero-overlay h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.custom-hero-overlay p {
  font-size: 1.2rem;
  color: #ddd;
}







footer {
  position: relative;
  margin-top: 600px; /* Abstand nach oben */
  z-index: 5; /* Sicherstellen, dass der Footer immer unter den Event-Karten bleibt */
}






/* Container f�r die Event-Sektion */
.custom-event-section {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
  padding: 5% 0 5% 0;
  box-sizing: border-box;
  position: relative;
  z-index: 2; /* Sicherstellen, dass Event-Karten vor dem Footer bleiben */
    padding:25px 15px 15px 0;
    word-break: break-word;
}


   
.initial{
    font-size:1.5rem; 
}   


.eventdate{
    font-size: 0.9rem!important;
    color: var(--accent)!important;
}

.eventh{
    max-width: 90%;
    font-size: 1.7rem;
}

.event-image {
    margin: 25px 0px 10px 0px;
    border-radius: 15px;
}

/* Grid f�r die Event-Container */
.custom-event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 5%;
    
}

/* Styling f�r jede Event-Card */
.custom-event-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 350px;

    max-width: 400px;
 
  margin-bottom: 50px!important; /* Abstand zwischen den Karten */
}

.custom-event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}


/* Headerbild */
.custom-event-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  aspect-ratio: 16 / 9; /* 4:3 Seitenverh�ltnis */
}


/* Inhalt */
.custom-event-content {
  
  color: var(--text-main, #fff);
  flex-grow: 1;
    padding: 15px;
}

.custom-event-content h3 {
  margin: 0 0 1rem 0;
  font-size: 1.4rem;
  color: white;
}

.custom-event-content p {
  font-size: 1rem;
  color:white;
  margin: 1rem 0;
  line-height: 1.6;
}

/* Button f�r mehr Informationen */
.custom-event-btn {
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  color: var(--button-text, #000);
  background-color: var(--accent, #ffcc00);
  border: none;
  border-radius: 0.8rem;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  
  align-self: center;
  z-index: 10;
  margin-bottom: 2rem;
}

.custom-event-btn:hover {
  background-color: var(--accent-hover, #ffaa00);
}

/* Overlay-Inhalt */
.custom-overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  max-height: 100%;
  transition: all 0.4s ease;
  z-index: 10;
    padding: 10px
}

.custom-overlay-content.active {
  opacity: 1;
  visibility: visible;
}

.custom-overlay-content p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 20;
}

/* Scrollbar Styling f�r Overlay */
.custom-overlay-content::-webkit-scrollbar {
  width: 6px;
}

.custom-overlay-content::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
}

.custom-overlay-content::-webkit-scrollbar-track {
  background: transparent;
}

/* Sicherstellen, dass der Button auf mobilen Ger�ten sichtbar bleibt */
@media (max-width: 768px) {
  .custom-event-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
  
  }

  .custom-event-card {
    min-height: 350px;
  }
}

@media (max-width: 480px) {
  .custom-event-btn {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
  }

  .custom-event-card {
    min-height: 350px;
  }
}

.row > *{
    padding-left:0!important;
    padding-right:0!important;
}

/* Hervorhebung des Suchtexts */
.highlight {
  background-color: red; /* Gelber Hintergrund f�r markierten Text */
  color: black; /* Schwarze Schriftfarbe f�r markierten Text */
  font-weight: bold; /* Fettschrift f�r den markierten Text */
}


#no-results-message {
  display: none;
  color: red;
  text-align: center;
  font-size: 18px;
  margin-top: 20px;
  
  /* F�r horizontale und vertikale Zentrierung */
  position: absolute;
  
  left: 50%;
  transform: translate(-50%, -50%);

  /* Optional f�r bessere mobile Sichtbarkeit */
  width: 80%;   /* Verhindert, dass der Text zu weit am Rand steht */
  max-width: 400px; /* Begrenzung der maximalen Breite */
}

/* Zus�tzliche mobile Optimierung */
@media (max-width: 600px) {
  #no-results-message {
    font-size: 16px;  /* Kleinere Schriftgr��e auf kleinen Bildschirmen */
    width: 90%;       /* Etwas breiterer Textbereich auf mobilen Ger�ten */
    max-width: none;  /* Keine Begrenzung der maximalen Breite */
  }
}



.dropdown{
  z-index: 99999;
}





/* Produkte */
.product-card{
    padding:20px!important;
    min-width: 350px!important;
    margin-right: 30px;
}

.dealer-button:hover{
    color: var(--accent);
}




.sort-options {
  text-align: center;
  margin-bottom: 20px;
    margin-top: 35px;
}

.sort-options select {
  padding: 10px;
  font-size: 16px;
  background-color: var(--text-primary);
  color: var(--button-text);
  border: 1px solid var(--accent);
  cursor: pointer;
  display: inline-block;
}


.luxury-review .container {
  max-width: 800px;
  margin: 3rem auto;
  padding: 1rem 2rem;
}

.luxury-review h2 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.luxury-review h3 {
  color: var(--accent);
  margin-top: 2rem;
}

.luxury-review p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.luxury-review ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.luxury-review strong {
  color: #fff;
}

.luxury-review em {
  font-style: italic;
  color: #ccc;
}

.event-image {
  width: 100%;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}


.logo-svg {
  width: 200px;
  height: auto;
  display: block;
}




.impressum {
  max-width: 800px;       /* Lesebreite begrenzen */
  margin: 0 auto;         /* horizontal zentrieren */
  padding: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;            /* gut lesbare Textfarbe */
  background: #fff;       /* weißer Hintergrund */
}

.impressum h1, 
.impressum h2, 
.impressum h3 {
  text-align: center;     /* Überschriften zentrieren */
  margin-bottom: 15px;
}

.impressum p {
  margin-bottom: 15px;
  text-align: justify;    /* Blocksatz für bessere Lesbarkeit */
}

.impressum a {
  color: #0066cc;
  text-decoration: none;
}

.impressum a:hover {
  text-decoration: underline;
}







.table-wrap {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1.5rem; /* Seitenabstand */
  }

  .events {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-main);
    color: var(--text-main);
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    border-radius: 14px;
    overflow: hidden;
  }

  .events caption {
    text-align: left;
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--accent);
  }

  .events th, .events td {
    padding: 1rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(202,158,103,0.35);
    vertical-align: top;
  }

  .events thead th {
    font-size: .95rem;
    letter-spacing: .02em;
    border-bottom: 2px solid var(--accent);
    background: rgba(202,158,103,0.08);
  }

  .events tbody tr:hover {
    background: var(--accent);
    color: var(--bg-main);
    transition: background .25s ease;
  }

  /* ---------- Mobile: stacked cards ---------- */
  @media (max-width: 640px) {
    .table-wrap { padding: 0 1rem; }

    .events { border-radius: 12px; }
    .events thead { 
      display: none; /* Kopf ausblenden */
    }

    .events, .events tbody, .events tr, .events td {
      display: block;
      width: 100%;
    }

    .events tbody tr {
      background: rgba(255,255,255,0.02);
      margin: 0 0 .9rem 0;
      border-bottom: 2px solid rgba(202,158,103,0.35);
      padding: .25rem 0;
    }

    .events td {
      border: none;
      border-bottom: 1px dashed rgba(202,158,103,0.25);
      padding: .7rem 1rem;
      position: relative;
    }

    .events td:last-child {
      border-bottom: none;
      padding-bottom: 1rem;
    }

    /* Label links, Wert rechts */
    .events td::before {
      content: attr(data-label);
      display: block;
      font-size: .8rem;
      text-transform: uppercase;
      letter-spacing: .06em;
      opacity: .8;
      color: var(--accent);
      margin-bottom: .25rem;
    }

    /* Hover-Effekt etwas dezenter auf Touch-Geräten */
    .events tbody tr:hover {
      background: rgba(202,158,103,0.18);
      color: var(--text-main);
    }
  }

  /* ---------- Mittelgroße Screens ---------- */
  @media (min-width: 641px) and (max-width: 980px) {
    .table-wrap { max-width: 860px; }
    .events th, .events td { padding: .85rem 1rem; }
    .events caption { font-size: 1.1rem; }
  }