/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    padding-top: 100px; /* Platz für die Navbar */
}

/* Navbar Styles */
.navbar .menu-icon {
    display: none;
}

.navbar {
    background-color: #ffffff;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 50px;
    margin-right: 10px;
}

.navbar .nav {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar .nav li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.navbar .nav li a:hover {
    color: #ff5733;
}

/* Hero Section */
.hero {
    background: url('images/new_background.png') no-repeat center center/cover;
    color: white;
	text-shadow: 2px 2px 3px black;
    text-align: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2em;
    position: relative;
    background-attachment: fixed; /* Parallax Effekt */
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

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

.hero .button {
    background-color: #ff5733;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.hero .button:hover {
    background-color: #e14e2b;
}

/* Container */
.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 4em 0;
    
    text-align: center;
}

.about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.about p {
    font-size: 1.2em;
    color: #666;
}

/* Product Section */
.product {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Schatten für Kartenlayout */
    border-radius: 10px;
    transition: transform 0.3s;
}

.product:hover {
    transform: translateY(-5px); /* Hover-Effekt */
}

.product img {
    width: 50%;
    border-radius: 10px 10px 0 0;
    margin-bottom: 15px;
}

.product h2 {
    font-size: 2em;
    color: #ff5733;
    margin-bottom: 10px;
}

.product p {
    font-size: 1em;
    color: #333;
}

/* Slideshow */
.slideshow {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.slides {
    position: relative;
    display: flex;
    justify-content: center;
}

.slides img {
    width: 50%;
    display: none;
}

.slides img.active {
    display: block;
}

.navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.prev, .next {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    font-size: 18px;
    transition: background-color 0.3s;
    pointer-events: auto;
    z-index: 10;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Testimonials */
.testimonials {
    padding: 4em 0;
    background-color: #f4f4f4;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-carousel {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.testimonial {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.testimonial p {
    font-size: 1.2em;
    color: #666;
}

.testimonial span {
    display: block;
    margin-top: 10px;
    font-size: 1em;
    color: #ff5733;
}

/* Footer */
.footer {
    background-color: #20232a;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    color: #ff5733;
}

.footer .social-icon {
    margin: 0 10px;
    color: white;
    font-size: 20px;
}

.footer .social-icon:hover {
    color: #ff5733;
}

.footer .newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .newsletter input {
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
}

.footer .newsletter button {
    padding: 10px 20px;
    background-color: #ff5733;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.footer .newsletter button:hover {
    background-color: #e14e2b;
}

/* Cookie Consent */
.cookie-consent-banner, .cookie-settings {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #1f325e;
    color: white;
    text-align: center;
    padding: 1rem;
    z-index: 1000;
}

.cookie-button {
    background-color: #ff5733;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
}

.cookie-button:hover {
    background-color: #e14e2b;
}

.cookie-settings {
    display: none;
    background-color: #fff;
    color: black;
    padding: 2rem;
    text-align: left;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
}

/* Form Styles */
form#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-top: 1em;
}

form#contact-form label {
    font-weight: bold;
}

form#contact-form input, form#contact-form textarea {
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form#contact-form button {
    padding: 0.75em;
    background-color: #20232a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form#contact-form button:hover {
    background-color: #333;
}

#captcha-container {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    align-items: flex-start;
}

.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2em;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
