body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    overflow-x: hidden;
}

/* Feste Kopfzeile */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #183501;
    z-index: 1000;
    transition: background 0.5s ease, box-shadow 0.5s ease, padding 0.5s ease; /* Sanfter Übergang */
    padding: 20px 0; /* Größerer Abstand oben und unten */
}

.fixed-header.scrolled {
    background: rgb(8, 29, 2); /* Sfondo scuro */
    box-shadow: 0 4px 15px rgba(27, 32, 2, 0.2);
    background-color: green;
}

.fixed-header.transparent {
    background: transparent; /* Sfondo trasparente */
    box-shadow: none;
    
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
    transition: padding 0.5s ease; /* Sanfter Übergang für den Inhalt */
    
}
.language-buttons {
    display: flex;
    gap: 10px;
}

.language-buttons button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.language-buttons .flag {
    width: 40px;
    height: 30px;
    border-radius: 3px;
    transition: transform 0.3s ease;
}

.language-buttons .flag:hover {
    transform: scale(1.1);
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-img {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease; /* Sanfte Animation beim Hover */
}
.logo-img:hover {
    transform: scale(1.05); /* Leichte Vergrößerung beim Hover */
}

/* Menü-Button */
#menu-button {
    width: 60px;
    height: 60px;
    background: rgb(90, 44, 2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#menu-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.menu-icon {
    width: 30px;
    height: 3px;
    background-color: white;
    position: relative;
    transition: transform 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    top: 8px;
}

#menu-button.active .menu-icon {
    transform: rotate(45deg);
}

#menu-button.active .menu-icon::before {
    transform: rotate(90deg);
    top: 0;
}

#menu-button.active .menu-icon::after {
    transform: rotate(90deg);
    top: 0;
    opacity: 0;
}

/* Menü */
#menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: linear-gradient(135deg, #4b3621, #6b8e23);
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: right 0.5s ease;
}

#menu.active {
    right: 0;
}

#menu ul {
    list-style: none;
    padding: 80px 20px 20px 20px;
    margin: 0;
}

#menu ul li {
    margin: 25px 0;
}

#menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#menu ul li a:hover {
    background-color: rgb(7, 36, 2);
    transform: translateX(10px);
}

/* Overlay */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}

#overlay.active {
    display: block;
}

/* Header-Bereich */
.header {
    background: linear-gradient(135deg, #4b3621, #6b8e23);
    color: white;
    padding: 100px 20px 20px 20px;
    text-align: center;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-image {
    flex: 1;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Einführungsbereich */
#introduction {
    background: linear-gradient(135deg, #4b3621, #6b8e23);
    color: white;
    padding: 80px 20px;
    min-height: 100vh; /* Imposta l'altezza al 100% della viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box; /* Assicura che il padding non influisca sull'altezza totale */
}

.intro-content {
    display: flex;
    flex-direction: row; /* Layout orizzontale per desktop */
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%; /* Assicura che il contenuto occupi tutta la larghezza disponibile */
}

.intro-text {
    flex: 1;
    text-align: left;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: white;
}

.intro-image {
    flex: 1;
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.shop-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 0px auto auto auto;
    box-shadow: 5px 5px 5px 5px rgb(17, 32, 5);
}

/* Besonderheiten-Bereich */
#particularities {
    background: white; /* Hellgrau */
    padding: 10px 20px;
}
.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature {
    background: linear-gradient(135deg, #6b8e23, #4b3621)#c5c5c5;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(255, 254, 254, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 250px;
    text-align: center;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.feature i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.feature p {
    font-size: 1rem;
    color: #ffffff;
}
/* Feste Kopfzeile */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: background 0.5s ease, box-shadow 0.5s ease, padding 0.5s ease; /* Sanfter Übergang */
    padding: 20px 0; /* Größerer Abstand oben und unten */
}

.fixed-header.scrolled {
    background: rgba(75, 54, 33, 0.9); /* Dunklerer Hintergrund beim Scrollen */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 10px 0; /* Kleinerer Abstand beim Scrollen */
}

/* Marken-Bereich */
#brands {
    background: linear-gradient(5deg,#4b3621 , #6b8e23); /* Etwas dunkleres Grau */
    padding: 10px 20px;
}
.brand-gallery {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.brand {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 150px; /* Flexibilität für Mobilgeräte */
    max-width: 150px; /* Maximale Breite für Mobilgeräte */
    text-align: center; /* Zentrierung der Inhalte */
    
}

.brand:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.brand-logo {
    width: 100%;
    height: 100px;
    object-fit: contain;
    border: auto solid white;
    border-radius: auto;
    padding: auto;
    background: white;
    display: center;
    margin: auto ;
}
.marken h2
{
    color: white
    
}

/* Horizontale Galerie */
.horizontal-gallery-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 20px auto; /* Mehr Abstand oben und unten */
}

.horizontal-gallery-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 20px 0; /* Mehr Abstand oben und unten */
    
}

.horizontal-gallery {
    display: flex;
    transition: transform 0.5s ease-in-out;
    margin-left: 0; /* Stellen Sie sicher, dass die Galerie ganz links beginnt */
    
}

/* Horizontale Galerie */
.horizontal-gallery-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 20px 0;

}

.horizontal-gallery {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-item {
    flex: 0 0 auto;
    margin-right: 15px;
    border: 5px solid #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: white;
}

.gallery-img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 20px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.5em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.scroll-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.scroll-btn.left {
    left: 20px;
}

.scroll-btn.right {
    right: 20px;
}

/* Kontakt-Bereich */
#contact {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form button {
    background: linear-gradient(135deg, #6b8e23, #4b3621);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: linear-gradient(135deg, #4b3621, #6b8e23);
}

/* Footer */
/* Footer */
.footer {
    background-color: #4b3621;
    color: white;
    text-align: center;
    padding: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #6b8e23; /* Farbe beim Hover */
    transform: scale(1.2); /* Vergrößern beim Hover */
}

.social-icons img {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}
/* Impressum-Bereich */
#impressum {
    background: white;
    padding: 60px 20px;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.impressum-content {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.impressum-content h2 {
    text-align: center;
    margin-bottom: 30px;
}

.impressum-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.impressum-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #4b3621;
}
/* Datenschutz-Bereich */
#datenschutz {
    background: white;
    padding: 60px 20px;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.datenschutz-content {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.datenschutz-content h2 {
    text-align: center;
    margin-bottom: 30px;
}

.datenschutz-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.datenschutz-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #4b3621;
}

.datenschutz-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.datenschutz-content ul li {
    margin-bottom: 10px;
}
/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .features {
        flex-direction: column;
    }

    .brand-gallery {
        flex-direction: column;
    }

    .brand-logo {
        width: 120px;
        height: 120px;
    }

    .horizontal-gallery-container {
        padding: auto 0px auto 0px;
    }

    .gallery-item {
        margin-right: 5%;
    }

    .gallery-img {
        width: 250px; /* Kleinere Bilder für Mobilgeräte */
        height: 350px; /* Kleinere Bilder für Mobilgeräte */
    }

    .scroll-btn {
        padding: 15px; /* Kleinere Buttons für Mobilgeräte */
        font-size: 1.2em;
    }
    /* Ridimensionamento delle bandiere per dispositivi mobili */
    .language-buttons .flag {
        width: 30px;
        height: 20px;
    }

    /* Spazio aggiuntivo per evitare sovrapposizioni */
    .header-content {
        padding: 10px;
    }

    .logo-img {
        max-width: 120px;
    }

    /* Modifiche per il modulo di contatto su dispositivi mobili */
    .contact-form {
        padding: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
    }
    #introduction {
        padding: 40px 20px; /* Riduci il padding per dispositivi mobili */
    }
    .intro-content {
        flex-direction: column; /* Cambia il layout in verticale per dispositivi mobili */
        gap: 20px; /* Riduci lo spazio tra testo e immagine */
    }
    .intro-image {
        margin-top: 95px;
        max-width: 100%; /* L'immagine occupa tutta la larghezza disponibile */
    }

    .shop-img {
        width: 100%; /* Bild nimmt die volle Breite ein */
        height: auto;
    }

    .intro-text {
        text-align: center; /* Centra il testo su dispositivi mobili */
        margin-top: 25px;
    }

    .intro-text h2 {
        text-align: center; /* Centra il titolo su dispositivi mobili */
    }
    
    .brand-gallery {
        flex-direction: column; /* Bilder untereinander */
        align-items: center; /* Zentrierung der Bilder */
        gap: 20px; /* Abstand zwischen den Bildern */
    }

    .brand {
        flex: 1 1 auto; /* Flexibilität für Mobilgeräte */
        max-width: 200px; /* Maximale Breite für Mobilgeräte */
    }

    .brand-logo {
        width: 100%; /* Bild nimmt die volle Breite ein */
        height: auto;
    }

    .gallery-item {
        flex: 0 0 100% ; /* Jedes Bild nimmt die volle Breite ein */
        width: 250px;
        margin-left: -5px; /* Kein Abstand zwischen den Bildern */
    }

    .gallery-img {
        width: 100%; /* Bild nimmt die volle Breite ein */
        height: 350px; /* Höhe automatisch anpassen */
        float: left;
    }

    .scroll-btn {
        display: none; /* Pfeile auf Mobilgeräten ausblenden */
    }
    }

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}