/* Reset and box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and general font styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Container for centered content */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Centering images inside the containers */
img {
    max-width: 100%;
    height: auto;
}

/* Header styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navbar styles */
.navbar {
    padding: 1rem 0;
}

.navbar .navbar-brand {
    font-size: 2rem;
    font-weight: bold;
    color: #2C3E50;
}

.navbar-nav .nav-item .nav-link {
    color: #34495E;
    font-size: 1.1rem;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #1abc9c;
}

.navbar-toggler {
    border-color: #34495E;
}

.navbar-toggler-icon {
    background-color: #34495E;
}

/* Hero Section */
#hero {
    position: relative;
    text-align: center;
}

#hero video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    z-index: 10;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-top: 20px;
}

.hero-text p {
    font-style: italic;
    font-size: 1.2rem;
}

.hero-text a {
    background-color: #1abc9c;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 30px;
}

.hero-text a:hover {
    background-color: #16a085;
}

/* Product Section */
#shop {
    padding: 60px 0;
    background-color: #f9f9f9;
}

#shop h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.card {
    border: none;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card-body {
    padding: 20px;
    text-align: center;
}

.card-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-text {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.text-success {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.btn-primary {
    background-color: #1abc9c;
    border: none;
    color: white;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #16a085;
}

@media (max-width: 768px) {
    .card-body {
        padding: 15px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .card-title {
        font-size: 1.4rem;
    }

    .card-text {
        font-size: 1rem;
    }

    .btn-primary {
        font-size: 1rem;
        padding: 8px 16px;
    }
}




/* Grundlegende Stile für den Parallax-Bereich */
.parallax-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Vollbildhöhe */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax-Effekt */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff; /* Textfarbe */
    text-align: center;
}

.parallax-content {
    z-index: 10;
    max-width: 80%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Textlesbarkeit */
}

h1 {
    font-size: 3em;
    margin: 0;
}

p {
    font-size: 1.5em;
    margin-top: 20px;
}

/* Media Queries für kleinere Bildschirme */
@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll; /* Deaktiviert Parallax-Effekt auf mobilen Geräten */
    }
    .parallax-content h1 {
        font-size: 2em;
    }
    .parallax-content p {
        font-size: 1.2em;
    }
}




/* FAQ Section */
#faq {
    padding: 60px 0;
    background-color: #fff;
}

#faq h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.accordion .card-header {
    background-color: #1abc9c;
    color: white;
}

.accordion .btn-link {
    font-size: 1.2rem;
    color: white;
}

.accordion .collapse {
    background-color: #f9f9f9;
    padding: 15px;
    font-size: 1.1rem;
}

/* Footer Styles */
footer {
    background-color: #2C3E50;
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer .social-links a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.2rem;
}

footer .social-links a:hover {
    color: #1abc9c;
}

footer p {
    margin-bottom: 15px;
}

/* Mobile Optimization */
@media (max-width: 767px) {
    .navbar-nav .nav-item .nav-link {
        font-size: 1rem;
        margin-right: 15px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .card-body h5 {
        font-size: 1rem;
    }

    .card-body p {
        font-size: 1rem;
    }

    .text-success {
        font-size: 1.1rem;
    }

    .btn-primary {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .parallax-section h1 {
        font-size: 1.8rem;
    }

    .parallax-section p {
        font-size: 1rem;
    }
}

