/* Allgemeine Stile */
body {
    font-family: 'Barlow', sans-serif;
}

@media (max-width: 768px) {
    .navbar h1 {
        display: none; /* Blendet den Titel auf kleinen Bildschirmen aus */
    }
    .navbar-brand {
        justify-content: flex-start; /* Richtet das Logo links aus, wenn der Titel ausgeblendet ist */
    }
}
.custom-bg {
        background-color: #982622 !important; /* Setzt die Hintergrundfarbe und verwendet !important, um bestehende Bootstrap-Stile zu überschreiben */
    }

/* Navigation */
.navbar-brand-wrapper {
    flex-grow: 1;
}

@media (min-width: 992px) {
    .navbar-collapse {
        justify-content: flex-end !important;
    }
}
.logo-tile {
  display: flex; /* Flexbox für zentrierte Ausrichtung */
  justify-content: center; /* Zentrierung horizontal */
  align-items: center; /* Zentrierung vertikal */
  background-color: #f9f9f9; /* Optionale Hintergrundfarbe */
  height: 150px; /* Einheitliche Kachelhöhe */
  min-height: 150px; /* Verhindert kleinere Kacheln */
  width: 100%; /* Breite der Kachel */
  border-radius: 8px; /* Optionale abgerundete Kanten */
  overflow: hidden; /* Verhindert, dass Logos Kacheln verlassen */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Optionale Schatten */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Animation */
}

.logo-tile img {
  max-width: 80%; /* Alle Logos haben die gleiche maximale Breite */
  height: auto; /* Höhe bleibt proportional zur Breite */
  margin: auto; /* Zentrierung des Logos */
}
@media (max-width: 576px) {
  #partner-logos img {
    max-width: 70%; /* Reduzierte Größe auf kleinen Bildschirmen */
  }
}
.faq-stoerer {
  position: fixed;
  top: 50%; /* Positionierung in der Mitte der Seite */
  left: 0;
  transform: translateY(-50%); /* Zentrieren in der Mitte */
  width: 30px; /* Breite des sichtbaren Teils */
  height: 50px; /* Höhe des Störers */
  background-color: #982622; /* Farbe des Störers */
  border-top-right-radius: 20px; /* Oben rechts runde Ecke */
  border-bottom-right-radius: 20px; /* Unten rechts runde Ecke */
  transition: width 0.3s ease, background-color 0.3s ease;
  z-index: 1000; /* Sicherstellen, dass es über anderen Inhalten liegt */
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-stoerer:hover {
  width: 80px; /* Breite bei Hover */
 /* background-color: #0056b3;  Dunklere Farbe beim Hover (optional) */
}

.faq-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: white;
  text-decoration: none;
  overflow: hidden; /* Verhindert, dass der Text beim Hover über den Bereich hinausgeht */
  width: 100%;
}

.faq-link i {
  font-size: 14px; /* Kleine Schriftgröße am Anfang */
  transition: font-size 0.3s ease;
}

.faq-stoerer:hover .faq-link i {
  font-size: 34px; /* Größere Schriftgröße bei Hover */
  color: #fff; 
  text-decoration: none;
}


.sticker {
    position: fixed;
    top: 100px;
    right: 100px;
    width: 300px; /* Passe die Größe nach Bedarf an */
    height: 300px; /* Passe die Größe nach Bedarf an */
    background: url('bilder/gog_sticker.png') no-repeat center center;
    background-size: contain;
    z-index: 1000; /* Stellt sicher, dass der Sticker über anderen Elementen liegt */
	cursor: pointer;
}
/* Anpassungen für mobile Geräte */
@media (max-width: 768px) {
    .sticker {
	    top: 600px;
	    right: 100px;
	    width: 200px; /* Passe die Größe nach Bedarf an */
	    height: 200px; /* Passe die Größe nach Bedarf an */
    }
}
.navbar {
	color: #fff;
    background-color: #4a563d !important; /* Hintergrundfarbe der Navigation */
}

.navbar-brand {
    margin-right: 0; /* Standardabstand rechts entfernen */
}

.navbar-brand h1 {
    color: #fff; /* Textfarbe des Titels */
    margin-left: 15px; /* Abstand zwischen Logo und Titel */
    font-size: 24px; /* Schriftgröße des Titels anpassen */
}
/* Basis-Styling für große Displays */
.big-size {
	background-color: #df833b !important;
	display: flex; /* Nutzt Flexbox */
	align-items: center; /* Zentriert den Inhalt vertikal */
	justify-content: center; /* Zentriert den Inhalt horizontal */
	text-align: center; /* Zentriert den Text horizontal */
    font-size: 3rem; /* Große Schrift für Desktop */
    padding: 0.375rem 0.75rem;
    white-space: nowrap;
    display: inline-block;
}

.formular {
  width: 90%;
  max-width: 600px; /* Maximale Breite des Formulars */
  background: white; /* Hintergrundfarbe */
  padding: 20px; /* Innenabstand */
  margin: auto; /* Zentriert das Formular horizontal */
  border-radius: 15px; /* Abgerundete Ecken */
  box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Schatten für den Hintergrund */
}

/* Anpassungen für Tablets */
@media (max-width: 992px) {
    .big-size {
        font-size: 2.5rem; /* Etwas kleinere Schrift für Tablets */
    }
}

/* Anpassungen für mobile Geräte */
@media (max-width: 768px) {
    .big-size {
        font-size: 2rem; /* Noch kleinere Schrift für Handys */
        padding: 0.5rem 1rem; /* Größeres Padding für bessere Touch-Zielflächen */
    }
}

/* Anpassungen für sehr kleine Displays */
@media (max-width: 480px) {
    .big-size {
        font-size: 1.5rem; /* Deutlich kleinere Schrift für sehr kleine Geräte */
    }
}

.navbar-nav .nav-link {
    color: #fff !important;
}

.navbar-brand img {
    height: 90px;
	vertical-align: middle;
}

/* Header */
.header {
    background-image: url('bilder/steckling_header.jpg'); 
    background-size: cover;
    background-position: center;
    height: 80vh;
    position: relative;
}
.header-1 {
    background-image: url('bilder/grosshandel_header.jpg'); 
    background-size: cover;
    background-position: center;
    height: 80vh;
    position: relative;
}
.header-2 {
    background-image: url('bilder/api_header.jpg'); 
    background-size: cover;
    background-position: center;
    height: 80vh;
    position: relative;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.content {
    position: relative;
    z-index: 2;
}

.header h1 {
    font-size: 3rem;
    font-weight: bold;
}
.color {
	color: #000;
	text-decoration: none;
	text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.color a {
	color: #000 important!;
	text-decoration: none;
	text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.header p {
    font-size: 1.25rem;
}

.header a.btn {
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.header a.btn:hover {
    transform: translateY(-2px);
}

.header-start {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.header-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.overlay-start {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Optional: Dunkelt das Video leicht ab */
    z-index: 20;
}
.content-start {
    position: relative;
    z-index: 121;
}
/* Text */

.list-unstyled li {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.list-unstyled i {
    color: #4a563d;
    font-size: 1.5rem;
}


h1 {
    font-weight: bold;
}

h2 {
    font-weight: medium;
}
.btn-primary {
    background-color: #293a38;
    border-color: #131f1e;
    color: #ffffff; /* Textfarbe */
}

.btn-primary:hover {
    background-color: #44595f; /* Farbe beim Hovern */
    border-color: #2b3e44;
    color: #ffffff; /* Textfarbe */
}
/* Formular-Stile */
.form-control-feedback {
    position: absolute;
    right: 10px;
    top: calc(50% - 10px);
}

.list-inline-item {
	color: #fff;
}

a:link {
    color: #fff; /* Farbe für Links, die noch nicht besucht wurden */
}

a:visited {
    color: #fff; /* Farbe für Links, die bereits besucht wurden */
}

a:hover {
    color: #2b3e44; /* Farbe für Links beim Hovern */
}

a:active {
    color: #2b3e44; /* Farbe für Links im Moment des Klicks */
}

a:focus {
    outline: none; /* Entfernt den Fokus-Umrandung */
    color: #fff; /* Farbe für fokussierte Links */
}

a {
    transition: color 0.3s ease;
}


img.img-fluid {
    max-height: 600px; /* oder eine andere passende Höhe */
    object-fit: cover; /* Dies stellt sicher, dass das Bild seine Proportionen beibehält, auch wenn es beschnitten wird */
}
/* Card & button strains */
.card-preis {
	font-weight: 500;
	font-size: 18px;
}

.card-body {
    background: linear-gradient(to bottom, #d0e6d0, #a3c6a3); /* Von einem helleren Grün oben (#d0e6d0) zu einem dunkleren Grün unten (#a3c6a3) */
    border-radius: 0 0 0.25rem 0.25rem; /* Stellt sicher, dass der Card Body runde Ecken hat, falls die Card insgesamt runde Ecken hat */
    padding: 1.25rem; /* Standardmäßiger Padding für den Card Body */
}
.card-body {
	background-color: ;
}
.btn-outline-primary {
    color: #293a38 !important; /* Hauptfarbe des Textes */
    border-color: #293a38 !important; /* Randfarbe */
    background-color: transparent !important; /* Transparenter Hintergrund */
}

.btn-outline-primary:hover {
    color: #ffffff !important; /* Textfarbe beim Hover */
    background-color: #293a38 !important; /* Hintergrundfarbe beim Hover */
    border-color: #293a38 !important; /* Randfarbe beim Hover */
}

/* Optional, um das Standard-Bootstrap-Verhalten zu überschreiben */
.btn-outline-primary:focus,
.btn-outline-primary.active,
.btn-outline-primary:active {
    color: #ffffff !important;
    background-color: #293a38 !important;
    border-color: #293a38 !important;
}

/* neuer Bereich */
.hero-section {
    position: relative;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-section .content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.bg-light {
    background-color: #f9f9f9 !important;
}

ul.list-unstyled {
    padding-left: 0;
    list-style: none;
}

ul.list-unstyled li {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

ul.list-unstyled i {
    color: #4a563d;
    font-size: 1.5rem;
    margin-right: 10px;
}

h4 {
    font-weight: 500;
    margin-bottom: 15px;
}

section.container.py-5 {
    padding: 60px 15px;
}

section.container.text-center.py-5 h2 {
    font-size: 2.5rem;
}

.btn-success {
    background-color: #4caf50;
    border-color: #45a049;
}

.btn-success:hover {
    background-color: #45a049;
    border-color: #3e8e41;
}

@media (max-width: 768px) {
    .hero-section {
        height: 40vh;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1.2rem;
    }

    .container.py-5 {
        padding: 30px 15px;
    }
}
.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    border: 5px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-title {
    font-size: 1.25rem;
    color: #4a563d;
}

.card-preis {
    color: #982622;
    font-size: 1.5rem;
}

.full-width {
    width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 2rem 0;
}
.container-inner {
    max-width: 1140px; /* Maximum width for content */
    margin: 0 auto;
    padding: 0 15px;
}
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background-color: #293a38;
    color: white;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: none; /* Button ist initial versteckt */
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.back-to-top:hover {
    background-color: #44595f;
    transform: translateY(-2px);
}

/* Footer-Stile */
footer {
    background-color: #4a563d;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}