body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #022b3a;
}

.navbar {
    padding: 1.5rem;
}

.logo {
    width: 230px; /* Breite anpassen */
    height: auto; /* Höhe proportional skalieren */
    display: block; /* Block-Darstellung */
    margin-left: 130px;
    margin-top: -20px
}
.navbar-brand svg {
    height: 50px;
    fill: #fca311;
}

.nav-link {
    color: white;
    font-size: 1rem;
    margin-left: 20px;
}

.nav-link:hover {
    color: #fca311;
}

.dropdown-menu {
    background-color: #022b3a;
    border: none;
}

.dropdown-item {
    color: white;
}

.dropdown-item:hover {
    background-color: #333;
}

.navbar-toggler {
    border-color: #fca311; /* Ändert den Button-Stil */
}

.navbar-toggler-icon {
    background-color: #fca311;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

#languageDropdown:hover + .dropdown-menu,
#languageDropdown:focus + .dropdown-menu {
    display: none !important;
}

.bi-globe {
    font-size: 1.5rem;
    color: white;
}

.bi-globe:hover {
    color: #fca311;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar {
      flex-direction: column;
      padding: 1rem 0.5rem;
  }

  .logo {
      width: 200px; /* Etwas größeres Logo für mobile Geräte */
      margin: 0 auto; /* Zentrierung */
      display: block;
  }

  .navbar-toggler {
      border: 2px solid #fca311; /* Schönere Rahmenfarbe */
      background-color: #022b3a; /* Hintergrund passend zum Header */
      border-radius: 5px; /* Runde Ecken */
      padding: 5px 10px; /* Mehr Padding für besseres Design */
      color: white; /* Textfarbe */
  }

  .navbar-toggler-icon {
      background-color: #fca311;
      border-radius: 3px;
      width: 24px;
      height: 3px;
      position: relative;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
      content: "";
      background-color: #fca311;
      display: block;
      position: absolute;
      width: 24px;
      height: 3px;
      left: 0;
  }

  .navbar-toggler-icon::before {
      top: -8px; /* Abstand nach oben */
  }

  .navbar-toggler-icon::after {
      top: 8px; /* Abstand nach unten */
  }

  .nav-link {
      font-size: 0.9rem;
      margin: 5px 0;
  }
}
/* Sprachumschalter Dropdown */
.language-switcher {
  display: flex;
  justify-content: flex-end;
}

/* Dropdown Container */
.language-switcher .dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Button */
.dropbtn {
  background-color: #022b3a;
  color: #fff;
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s, color 0.3s;
}

/* Hover Effekt für den Button */
.dropbtn:hover,
.dropbtn:focus {
  background-color: #fca311;
  color: #022b3a;
}

/* Flaggen-Icon Styling */
.flag-icon {
  width: 20px;
  height: auto;
  vertical-align: middle;
}

/* Dropdown Content */
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #022b3a;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  border-radius: 5px;
  z-index: 9999;
}

/* Dropdown Links */
.dropdown-content a {
  color: #fff;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s, color 0.3s;
}

/* Hover Effekt für Dropdown Links */
.dropdown-content a:hover,
.dropdown-content a:focus {
  background-color: #fca311;
  color: #022b3a;
}

/* Dropdown anzeigen, wenn der Container gehovt wird */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .language-switcher {
    justify-content: center; /* Zentriert den Umschalter auf kleinen Bildschirmen */
    padding: 0 5px;
  }
  
  .dropbtn {
    font-size: 14px;
    padding: 8px 12px;
  }
  
  .dropdown-content {
    min-width: 140px;
  }
  
  .dropdown-content a {
    font-size: 14px;
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .dropbtn {
    font-size: 13px;
    padding: 6px 10px;
  }
  
  .dropdown-content a {
    font-size: 13px;
    padding: 8px 10px;
  }
  
  .flag-icon {
    width: 18px;
  }
}

@media (max-width: 576px) {
  .navbar {
      padding: 0.5rem;
  }

  .logo {
      width: 180px; /* Logo-Größe für sehr kleine Geräte */
  }

  .navbar-toggler {
      padding: 6px 12px; /* Etwas großzügiger für Komfort */
  }

  .navbar-toggler-icon {
      width: 20px; /* Kleinere Breite */
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
      width: 20px; /* Gleiche Breite wie Hauptlinie */
  }
  .collapse {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
}

.collapse.show {
    max-height: 300px; /* Höhe anpassen */
    opacity: 1;
}
.collapse {
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.collapse.show {
  opacity: 1;
}

.collapse:not(.show) {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

}


.hero-product-page {
  position: relative;
  width: 100%;
  height: 60vh; /* Vollbild-Höhe */
  background: url('../assets/golfcarts/Hero2.jpg') no-repeat center center/cover; /* Korrekte Syntax */
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Text linksbündig */
  padding-left: 50px; /* Abstand vom Rand */
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7); /* Leichter Textschatten für Lesbarkeit */
}


  .hero-content {
    max-width: 600px; /* Begrenzung der Textbreite */
  }
  
  .hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fca311; /* Gelber Akzent für den Titel */
  }
  
  .hero-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff; /* Weißer Untertitel */
  }
  
  .hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #f0f0f0; /* Etwas heller als Weiß */
  }
  


  .intro-section {
    background-color: #022b3a; /* Hintergrundfarbe */
    color: white; /* Textfarbe */
    padding: 60px 20px;
  }
  
  .intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .intro-title {
    font-size: 3rem;
    color: #fca311; /* Gelber Akzent */
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .intro-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #f0f0f0;
  }
  
  .intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #dcdcdc;
  }
  
/* Filter & Products */
/* Filter & Products */
.products-filter-section {
  text-align: center;
  margin-bottom: 30px;
}
.filter-title {
  font-size: 2rem;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.filter-btn {
  width: 150px;
  height: 60px;
  border: 3px solid #fca311;
  border-radius: 45px;
  transition: all 0.3s;
  cursor: pointer;
  background: white;
  font-size: 1.2em;
  font-weight: 550;
}
.filter-btn:hover {
  background: #315cfd;
  color: white;
}


/* Tablets: Max 768px */
@media (max-width: 768px) {
  .filter-btn {
    width: 120px !important; /* Kleinere Buttons */
    height: 50px !important;
    font-size: 1rem !important; /* Kleinere Schriftgröße */
    line-height: 1.2 !important; /* Schrift bleibt zentriert */
  }

  .filter-btn img.brand-logo {
    max-width: 60% !important; /* Logos noch kleiner */
  }
}

/* Smartphones: Max 576px */
@media (max-width: 576px) {
  .filter-btn {
    width: 100px !important; /* Noch kleinere Buttons */
    height: 45px !important;
    font-size: 0.9rem !important; /* Noch kleinere Schriftgröße */
    line-height: 1.2 !important; /* Schrift bleibt zentriert */
  }

  .filter-btn img.brand-logo {
    max-width: 90% !important; /* Logos für Smartphones anpassen */
  }
}






.products-section {
  background-color: #ffffff;
  padding: 20px 0;
}
.product-box {
  margin-bottom: 30px;
  text-align: center;
}
.product-item-image img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  margin-bottom: 10px;
}
.color-picker {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}
.color-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #ccc;
}
.color-circle:hover {
  transform: scale(1.2);
}
.rental-button {
  display: inline-block;
  padding: 10px 5px; /* Button verkleinert */
  background-color: #fca311;
  color: #022b3a;
  font-size: 0.8rem; /* Kleinere Schriftgröße */
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 20px; /* Angepasste Rundung */
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Kleinere Schattenwirkung */
}
.rental-button:hover {
  background-color: #ffffff;
  color: #022b3a;
  transform: translateY(-3px); /* Leichtere Hover-Transformation */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.product-item-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 10px;
}










































  body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    background-color: #022b3a;

  }
  
  .container {
    max-width: 1200px;
    margin: auto;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  .footer {
    background-color: #022b3a;
    padding: 70px 20px;
  }
  
  .footer-col {
    width: 25%;
    padding: 0 15px;
  }
  
  .footer-col h4 {
    font-size: 18px;
    color: rgba(248, 248, 248, 0.867);
    text-transform: capitalize;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
  }
  
  .footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    background-color: #fca311;
    height: 2px;
    width: 50px;
  }
  
  .footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  
  .footer-col ul li a {
    font-size: 16px;
    color: #bbbbbb;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
  }
  
  .footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
  }
  
  .footer-col .social-links a:hover {
    color: #022b3a;
    background-color: #ffffff;
  }
  
  /* Responsive Design */
  @media (max-width: 767px) {
    .footer-col {
      width: 50%;
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 574px) {
    .footer-col {
      width: 100%;
    }
  }
  
  