body, html {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.desktop-only, .mobile-only {
    display: none;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

header {
    background-image: url('bilder/header-hintergrundbild.webp');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    width: 100%;
}



/* Für Desktop anzeigen (Bildschirmbreite über 768px) */
@media (min-width: 769px) {
    .desktop-only {
        display: block; /* Desktop-Inhalt anzeigen */
        width: 100%;
    }
    .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 40px;
        margin-top: -17%;
        padding-top: 10%;
    }
    
    .logo {
        justify-content: flex-start;
    }

    .logo img {
        height: 416px;
        max-width: 100%;
        margin-left: -30%;
    }
    
    nav {
        justify-content: flex-end;
    }
    
    nav ul {
        list-style: none;
        display: flex;
        gap: 30px;
        padding: 0;
        margin: 0;
    }
    
    nav ul li a {
        text-decoration: none;
        color: rgba(255, 255, 255, 0.966);
        box-shadow: #ffffff;
        font-size: 18px;
        font-weight: bold;
    }
    
    nav ul li a:hover {
        color: gray;
    }
}

/* Für Mobilgeräte anzeigen (Bildschirmbreite bis 768px) */
@media (max-width: 768px) {
    .mobile-only {
        display: block; /* Mobile-Inhalt anzeigen */
        width: 100%; /* Volle Breite nutzen */
    }
    

    .container-mobile {
        display: flex;
        flex-direction: column; /* Alles untereinander anordnen */
        align-items: center; /* Zentriere den Inhalt */
        padding: 5px;
    }

    .logo-mobile img {
        width: 500px; /* Passe die Logo-Größe an */
        margin-top: -20%;
        margin-bottom: -60px; /* Abstand unter dem Logo */
    }

    nav ul {
        list-style: none; /* Entfernt Aufzählungszeichen */
        padding: 0;
        margin: 0;
        text-align: center; /* Text zentrieren */
    }

    nav ul li {
        margin: 15px 0; /* Abstand zwischen den Links */
    }

    nav ul li a {
        text-decoration: none;
        color: rgb(255, 255, 255);
        font-size: 25px; /* Schriftgröße anpassen */
        font-weight: bold;
    }

    nav ul li a:hover {
        color: gray;
    }

}




/* Standard Layout für große Bildschirme - Inhalte nebeneinander */
.product-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
}

.product-images {
    flex: 1;
}

.product-info {
    flex: 1;
}

/* Produktbilder */
.main-product-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: 20px;
}

.product-thumbnails {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.thumbnail {
    width: 100px;
    height: auto;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnail:hover {
    border-color: #333;
}

/* Produktinformationen */
.product-info1 h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.price1 {
    font-size: 20px;
    color: #555;
    margin-bottom: 15px;
}

.product-description1 {
    margin-bottom: 20px;
}

.payment-options1 {
    margin-bottom: 20px;
}

.payment-options1 button {
    padding: 10px 20px;
    margin-right: 10px;
    background-color: #0070ba;
    color: white;
    border: none;
    cursor: pointer;
}

.payment-options1 button a {
    color: white;
    text-decoration: none;
}

.payment-options1 .other-btn1 {
    background-color: rgb(109, 86, 59);
    padding-left: 10%;
    padding-right: 10%;
}

/* Soziale Netzwerke */
.social-sharing1 a {
    margin-right: 10px;
    font-size: 24px;
    color: #333;
    text-decoration: none;
}

.social-sharing1 a:hover {
    color: #555;
}



/* Responsive Design - Layout wird bei kleinerem Bildschirm untereinander angeordnet */
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .product-images, .product-info {
        width: 100%;
    }

    .main-product-image {
        max-width: 100%;
    }

    .product-thumbnails {
        justify-content: center;
    }

    .payment-options button {
        width: 100%;
        max-width: 250px; /* Begrenzung der Button-Breite */
    }

    .social-sharing {
        text-align: center;
    }
}


.product-presentation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #f8f9fa;
    position: relative;
}

.product-image img {
    width: 100%;
    height: auto;
}

.product-description {
    max-width: 50%;
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
}

.product-description strong {
    font-weight: bold;
    color: #333;
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    .product-presentation {
        flex-direction: column;
        text-align: center;
    }

    .product-image img {
        width: 80%;
        margin-bottom: 20px;
    }

    .product-description {
        max-width: 100%;
        font-size: 1em;
    }
}


@media (max-width: 768px) {

    .product-container {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        padding: 20px;
    }
    
    .product-info1 {
        justify-content: center;
        width: 70%;
        margin-left: 15%;
        margin-right: 15%;
    }
    
    /* Produktinformationen */
    .product-info1 h1 {
        font-size: 150%;
        margin-bottom: 10px;
    }
    
    .price1 {
        font-size: 130%;
        color: #555;
        margin-bottom: -20px;
    }
    
    .product-description1 {
        margin-bottom: 20px;
        font-size: 90%;
    }
    
    .payment-options1 {
        margin-bottom: 2%;
    }
    
    .payment-options1 button {
        padding: 10px 5%;
        margin-right: 1%;
        background-color: rgb(27, 14, 202);
        color: white;
        border: none;
        cursor: pointer;
        border-radius: 8%;
        font-size: 90%;
        margin-bottom: 5%;
    }
    
    .payment-options1 button a {
        color: white;
        text-decoration: none;
    }
    
    .payment-options1 .other-btn1 {
        background-color: rgb(226, 121, 2);
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Soziale Netzwerke */
    .social-sharing1 a {
        margin-right: 10px;
        font-size: 140%;
        color: #333;
        text-decoration: none;
    }
    
    .social-sharing1 a:hover {
        color: #555;
    }
}




.product-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 100px 40px;
    text-align: left;
}


.product-info h1 {
    font-size: 2em;
    font-weight: 200;
    margin-bottom: 10px;
}

.product-info h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.product-info p {
    font-size: 1.5em;
    color: #555;
    line-height: 1.8;
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 50%;
    padding-bottom: 56.25%; /* Verhältnis 16:9 */
    height: 0;
    overflow: hidden;
    margin-bottom: -30%;
}

.product-image iframe {
    width: 100%;
    height: 56.33%;
    border: none;
    position: absolute;
    top: -1%;
    left: 0;
    width: 100%;
    height: 50%;
    border: 0;
}

/* Desktop-Layout: nebeneinander */
.product-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 100px 40px;
    text-align: left;
}

/* Produktinfo Styling */
.product-info h1 {
    font-size: 2em;
    font-weight: 200;
    margin-bottom: 10px;
}

.product-info h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.product-info p {
    font-size: 1.5em;
    color: #555;
    line-height: 1.8;
}

/* Produktbild Styling */
.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 50%;
    padding-bottom: 56.25%; /* 16:9 Verhältnis */
    height: 0;
    overflow: hidden;
}

.product-image iframe {
    width: 100%;
    height: 56.33%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
}

/* Mobile-Layout: untereinander */
@media (max-width: 768px) {
    .product-showcase {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px; /* Weniger Abstand zwischen den Elementen */
        text-align: center; /* Text zentrieren auf mobilen Geräten */
        padding-bottom: 15%;
        margin-bottom: 10%;
    }

    .product-info h1 {
        font-size: 1.8em; /* Leicht kleinere Schriftgröße auf mobilen Geräten */
    }

    .product-info h2 {
        font-size: 2em;
    }

    .product-info p {
        font-size: 1.2em;
    }

    .product-image {
        width: 80%; /* Volle Breite auf mobilen Geräten */
        padding-bottom: 56.25%; /* 16:9 Verhältnis beibehalten */
    }

    .product-image iframe {
        height: 100%;
    }
}








.packsmart-section {
    padding: 50px;
    text-align: center;
    background-color: #f8f9fa;
}

.packsmart-section h1 {
    font-size: 1em;
    font-weight: 200;
    margin-bottom: 30px;
}

.content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.text-container {
    max-width: 50%;
}

.icon-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon {
    width: 50px;
    height: 50px;
}

.text-content h2 {
    font-size: 1.8em;
    font-weight: bold;
}

.text-content p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-top: 10px;
}

.image-container img {
    width: 400px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        text-align: center;
    }

    .image-container img {
        width: 80%;
        margin-top: 20px;
    }

    .text-container {
        max-width: 100%;
    }

    .icon-text {
        justify-content: center;
    }

    .icon {
        width: 40px;
        height: 40px;
    }

    .text-content h2 {
        font-size: 1.5em;
    }

    .text-content p {
        font-size: 1em;
    }
}

.organisierte-abenteuer h1 {
    font-size: 2.5em;
    font-weight: 200;
    margin-bottom: 30px;
}

.organisierte-abenteuer {
    padding: 50px;
    background-color: #f8f9fa;
}

.content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.image-container img {
    width: 400px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.text-container {
    max-width: 50%;
}

.icon-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon {
    width: 50px;
    height: 50px;
}

.text-content h2 {
    font-size: 1.8em;
    font-weight: bold;
}

.text-content p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-top: 10px;
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        text-align: center;
    }

    .image-container img {
        width: 80%;
        margin-bottom: 20px;
    }

    .text-container {
        max-width: 100%;
    }

    .icon-text {
        justify-content: center;
    }

    .icon {
        width: 40px;
        height: 40px;
    }

    .text-content h2 {
        font-size: 1.5em;
    }

    .text-content p {
        font-size: 1em;
    }
}





.produkt-fakten {
    padding: 40px 20px; /* Weniger Padding auf mobilen Geräten */
    background-color: #f8f9fa;
    text-align: center;
}

.produkt-fakten h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
}

.fakten-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.fakten-box {
    width: 45%;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
}

table td {
    padding: 15px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

table td:first-child {
    background-color: #f0f0f0;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .produkt-fakten {
        padding: 30px 10px; /* Weniger Padding für mobile Geräte */
    }

    .fakten-grid {
        flex-direction: column; /* Stellt sicher, dass die Boxen untereinander stehen */
        align-items: center;
        gap: 20px; /* Etwas mehr Abstand zwischen den Boxen auf mobilen Geräten */
    }

    .fakten-box {
        width: 95%; /* Mehr Breite auf mobilen Geräten, um den Bildschirm optimal zu nutzen */
        margin-bottom: 20px; /* Abstand zwischen den Boxen */
        padding: 20px; /* Mehr Padding innerhalb der Boxen */
    }

    table td {
        padding: 12px; /* Etwas weniger Polsterung auf mobilen Geräten */
        font-size: 0.9em; /* Schriftgröße für mobile Geräte leicht reduziert */
    }

    .produkt-fakten h2 {
        font-size: 1.8em; /* Überschrift für mobile Geräte etwas kleiner */
        margin-bottom: 20px;
    }
}






.product-details p{
    line-height: 140%;
    font-size: 90%;
}

.produkt-beschreibung{
    padding-bottom: 2%;
}

.produkt-beschreibung-text  p{
    padding-bottom: -5%;
}

.produkt-beschreibung-text1 p{
    line-height: 170%;
}


.payment-options .paypal-btn {
    background-color: rgb( 109, 86, 59);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding-left: 8%;
    padding-right: 8%;
    margin-right: 10%;
}



.payment-options {
    margin-top: 20px;
}

.payment-options button {
    padding: 10px 15px;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: rgb( 109, 86, 59);
    color: white;
}

.payment-options button a{
    text-decoration: none;
    color: white;
}

.social-sharing {
    margin-top: 20px;
}

.social-sharing a {
    margin-right: 10px;
    color: #007bff;
    font-size: 24px;
}

.product-details {
    margin-top: 40px;
}

.product-details h1{
    font-weight: bold;
}

.product-details h2 {
    font-size: 1em;
    margin-bottom: 20px;
}

.product-details p {
    margin-bottom: 20px;
}


/* Responsive Anpassung */
@media (min-width: 1156px) {

    .product-showcase {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
        padding: 100px 40px;
        text-align: left;
        background-color: #f8f9fa;
    }
    
    .product-info {
        max-width: 40%;
    }
    
    .product-info h1 {
        font-size: 2em;
        font-weight: 200;
        margin-bottom: 10px;
    }
    
    .product-info h2 {
        font-size: 2.5em;
        color: #333;
        margin-bottom: 20px;
    }
    
    .product-info p {
        font-size: 1.5em;
        color: #555;
        line-height: 1.8;
    }
    
    .product-image {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 50%;
        padding-bottom: 56.25%; /* Verhältnis 16:9 */
        height: 0;
        overflow: hidden;
        margin-bottom: -30%;
    }
    
    .product-image iframe {
        width: 100%;
        height: 56.33%;
        border: none;
        position: absolute;
        top: -1%;
        left: 0;
        width: 100%;
        height: 50%;
        border: 0;
    }


    .product-presentation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #f8f9fa;
    position: relative;
}

.product-image img {
    width: 100%;
    height: auto;
}

.product-description {
    max-width: 50%;
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
}

.product-description strong {
    font-weight: bold;
    color: #333;
}



.packsmart-section {
    margin-left: 15%;
    margin-right: 15%;
    width: 70%;
    padding: 50px;
    text-align: center;
    background-color: #f8f9fa;
}

.packsmart-section h1 {
    font-size: 1em;
    font-weight: 200;
    margin-bottom: 30px;
}

.content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.text-container {
    max-width: 50%;
}

.icon-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon {
    width: 50px;
    height: 50px;
}

.text-content h2 {
    font-size: 1em;
    font-weight: bold;
}

.text-content p {
    font-size: 1em;
    line-height: 1.6;
    margin-top: 10px;
}

.image-container img {
    width: 400px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}



.organisierte-abenteuer h1 {
    font-size: 1em;
    font-weight: 200;
    margin-bottom: 30px;
}

.organisierte-abenteuer {
    margin-left: 15%;
    margin-right: 15%;
    width: 70%;
    padding: 50px;
    background-color: #f8f9fa;
}

.content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.image-container img {
    width: 400px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.text-container {
    max-width: 50%;
}

.icon-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon {
    width: 50px;
    height: 50px;
}

.text-content h2 {
    font-size: 1.6em;
    font-weight: bold;
}

.text-content p {
    font-size: 1em;
    line-height: 1.6;
    margin-top: 10px;
}
}

.related-products {
    background-color: #f8f9fa;
}

.related-products h2 {
    font-size: 2em;
    padding-bottom: 20px;
    padding-top: 20px;
    padding-left: 20%;
    padding-right: 20%;
}

.related-products-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Damit die Produkte bei Platzmangel umbrechen */
}

.related-product {
    width: 30%;
    text-align: center;
    border-radius: 20%;
    padding-left: 5%;
    padding-right: 5%;
}

.related-product img {
    width: 100%;
    height: auto;
    border-radius: 20%;
}

footer {
    background-image: url('bilder/header-hintergrundbild.webp');
    background-size: cover;
    background-position: center;
    height: 100%;
    color: #ffffff;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
}

.footer-left,
.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-left h2 {
    font-size: 24px;
    margin-bottom: 10px;
    z-index: 2;
}

.social-icons a {
    margin-right: 10px;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    z-index: 2;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 2;
}

.footer-links a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 5px;
    display: block;
    z-index: 2;
}

.footer-contact p,
.footer-contact a {
    margin: 5px 0;
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    z-index: 2;
}

footer a:hover {
    text-decoration: underline;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: inherit;
    background-position: inherit;
    background-repeat: inherit;
    background-attachment: inherit;
    z-index: 0;
    opacity: 0.5;
}

.footer-container {
    position: relative;
    z-index: 2;
}

/* Media Queries für mobile Geräte */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 0 20px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin-bottom: 10px;
    }

    .product-container {
        flex-direction: column;
        gap: 30px;
    }

    .product-images,
    .product-info {
        width: 100%;
    }

    .product-thumbnails img {
        width: calc(33.333% - 10px); /* Auf mobile Geräte anpassen */
    }

    .related-products-grid {
        flex-direction: column;
    }

    .related-product {
        width: 100%;
        margin-bottom: 20px;
    }

    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: flex-end;
        padding: 20px;
    }

    .footer-right {
        width: 100%;
        align-items: center;
    }

    .footer-links,
    .footer-contact {
        align-items: center;
        text-align: center;
    }
}

/* Media Queries für Tablets (größere mobile Geräte) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .product-container {
        gap: 15px;
    }

    .product-thumbnails img {
        width: calc(25% - 10px); /* Anpassung für Tablet-Größen */
    }

    .related-product {
        width: 45%;
        margin-bottom: 20px;
    }

    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px;
    }

    .footer-right {
        width: 100%;
        align-items: center;
    }

    .footer-links,
    .footer-contact {
        align-items: center;
        text-align: center;
    }
}

.flag-links{
    display: flex;
    justify-content: space-between;
    padding-right: 1%;
}



.related-products a{
    text-decoration: none;
    color: black;
}



/* Dropdown-Menu Style */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li {
    padding: 10px;
}

.dropdown-menu li a {
    text-decoration: none;
    color: black;
    display: block;
}

.dropdown:hover .dropdown-menu {
    display: block;
}



/* Verstecke das Dropdown-Menü standardmäßig */
#mobile-language-menu {
    display: none;
    list-style: none;
    background-color: white;
    padding: 10px;
    border: 1px solid #ccc;
    position: relative; /* Im mobilen Modus positioniert */
}

/* Zeige das Dropdown-Menü an, wenn es aktiv ist */
#mobile-language-menu.active {
    display: block;
}

.dropdown-menu li {
    padding: 10px 0;
}

.dropdown-menu li a {
    text-decoration: none;
    color: black;
}

/* Desktop Styles (falls du das für den Desktop-Dropdown brauchst) */
.desktop-only .dropdown:hover .dropdown-menu {
    display: block;
}

