/* Allgemeines Layout */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white;
}

.h1{
  position: relative;
  font-size: 35px;
  left: 13.18cm;
}

.Motoma-right p {
  position: relative;
  left: 13.37cm;
  top: -1.2cm;
  line-height: 1.6;
  color: #2b2a29;
} 

.link {
  position: relative;
  bottom: 2cm;
  left: 13.35cm
}


.topbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.topbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 12px 30px;
  box-sizing: border-box;
} 
.logo {
  margin-left: -9cm;
  margin-top: 4px;
}

/* Logo - ganz links */
.topbar header img {
  height: 35px; /* Schiebt alles andere nach rechts */
}

/* Navigation - zentriert */
.center-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.center-nav ul {
  list-style: none;
  display: flex;
  gap: 40px; /* Mehr Abstand zwischen Links */
  margin: 0;
  padding: 0;
}

.center-nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 13px; /* Kleinere Schrift */
  text-transform: uppercase;
  transition: color 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.center-nav ul li a:hover {
  color: #0078d4;
}

/* Sprachumschalter - ganz rechts */
.language-switcher {
  margin-left: 37cm; /* Schiebt den Button ganz nach rechts */
}

#languageButton {
  padding: 6px 14px;
  background-color: #0078d4;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  font-size: 13px; /* Kleinere Schrift */
  transition: background-color 0.3s ease;
}

#languageButton:hover {
  background-color: #005a9e;
}

/* Slideshow-Container */
.slideshow-container {
  max-width: 100vw;
  height: 100vh; /* voller Bildschirm */
  position: relative;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bilder der Slideshow */
.mySlides {
  display: none;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover; /* Bild skaliert passend, ohne Verzerrung */
  position: absolute; /* Bild aus dem Layoutfluss nehmen */
  }


.full-image {
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-choose {
  background-color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 40px;
  gap: 60px;
  font-family: "Helvetica Neue", sans-serif;
  }

/* Linke Seite mit Titeln */
.why-left {
  position: relative;
  min-width: 180px;
  padding-top: 30px; /* damit Platz für absolutes "Products" ist */
}

/* Haupttitel: "Products" – leicht verschoben */
.products-title {
  position: absolute;
  top: -1cm;   /* vertikal verschieben */
  left: 6.28cm;  /* leicht nach links verschoben */
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: black;
}

/* Rechte Seite mit Beschreibungstext */
.why-right p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #2b2a29;
}

/* "View More"-Link */
.view-more {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
  position: relative;
  top: -80px;
  left: 13.45cm;
  transition: all 0.2s ease;
}

.view-more:hover {
  color: red;
  position: relative;
  right: 5cm;
  border-bottom-color: #e85b2f;
}
.support-section {
  background-color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 40px;
  gap: 60px;
  font-family: "Helvetica Neue", sans-serif;
}

/* Linke Seite mit Titeln */
.support-left {
  position: relative;
  min-width: 180px;
  padding-top: 30px; /* damit Platz für absolutes "Support" ist */
}
/* Haupttitel: "Support" – leicht verschoben */
.support-title {
 position: absolute;
  top: -1cm;   /* vertikal verschieben */
  left: 6.28cm;  /* leicht nach links verschoben */
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: black;;
}

/* Rechte Seite mit Beschreibungstext */
.support-right p {
   font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #2b2a29;
}

/* "View More"-Link (kann gleich bleiben) */
.view-more-support {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 1px;
  position: relative;
  left: 0.01cm;
  top: -25px;
  transition: all 0.2s ease;
}

.view-more:hover {
  color: red;
  border-bottom-color: #e85b2f;
}


.product-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.product-category {
  margin-bottom: 60px;
}

.product-category h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: black;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.subcategory {
  margin-bottom: 30px;
}

.subcategory h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #444;
}

/* Standard-Grid für alle Sektionen */
.image-grid {
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center; /* Bilder zentrieren */
  align-items: start;
}

.image-item {
  width: 250px; /* Feste Breite für gleichmäßige Größe */
  text-align: center;
  background: #f9f9f9; /* Heller Hintergrund für Kontrast */
  border-radius: 8px; /* Runde Ecken */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Leichter Schatten */
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.image-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.image-grid img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  background-color: #fff;
}
.image-item p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #333;
  font-weight: 600;
  line-height: 1.2;
  user-select: none; /* Text nicht markierbar */
}

@media (max-width: 600px) {
  .product-category h2 {
    font-size: 1.5rem;
  }

  .subcategory h3 {
    font-size: 1.1rem;
  }

  .image-grid.fixed-three {
    grid-template-columns: 1fr;
  }
}









