/* Base styles and responsive fixes */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
	margin: 5px;
}

.container {
    width: 100%;
    margin: auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.slider-container {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.profile-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.appointment-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.appointment-intro {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.appointment-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.appointment-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.info-box i {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 15px;
}

.info-box h3 {
    margin-bottom: 10px;
    color: #333;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9em;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #0056b3;
}

.required-notice {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .appointment-container {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.privacy-section {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.privacy-section h2 {
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

.privacy-section h3 {
    color: #444;
    margin: 20px 0 10px;
}

.privacy-section h4 {
    color: #555;
    margin: 15px 0 10px;
}

.privacy-section p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.right-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.right-item:hover {
    transform: translateY(-5px);
}

.right-item i {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 15px;
}

.right-item h4 {
    margin: 10px 0;
    color: #333;
}

.right-item p {
    font-size: 0.9em;
    color: #666;
}

.page-title {
    text-align: center;
    color: #333;
    font-size: 2.5em;
	padding-top: 65px !important;
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 20px;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
}

.glass-item {
    flex: 1;
    max-width: calc(50% - 10px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.glass-item:hover {
    transform: translateY(-5px);
}

.glass-item img {
    width: 100%;
    height: auto;
    display: block;
}

.slide-content {
    padding: 15px;
    text-align: center;
}

.slide-content h3 {
    margin: 0 0 10px;
    font-size: 1.2em;
}

.slide-content p {
    margin: 0;
    color: #666;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 1;
}

.prev { left: 10px; }
.next { right: 10px; }

.slider-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: #717171;
}

@media (max-width: 768px) {
    .profile-grid {
        flex-direction: column;
    }
    
    .glass-item {
        max-width: 100%;
    }
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.impressum-section {
    margin-bottom: 40px;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.impressum-section h2 {
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

.impressum-section p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.impressum-section i {
    width: 20px;
    color: #007bff;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .impressum-content {
        padding: 20px;
    }
    
    .impressum-section {
        padding: 15px;
    }
	
	.page-title {
		text-align: center;
		color: #333;
		font-size: 2.2em;
		padding-top: 65px !important;
	}
}



.filter-btn {
    padding: 10px 20px;
    margin: 0 5px;
    border: none;
    border-radius: 25px;
    background: #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 80vh;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lightbox .close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
}

.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 20px;
    text-align: center;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 15px 20px;
    border: none;
    cursor: pointer;
    font-size: 24px;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .filter-btn {
        margin-bottom: 10px;
    }
}

/* Header styles */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
	background-color: white;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
}

#logo img {
    height: 75px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

/* Hero section styles */
.hero-background {
    background-image: url('Bilder/4-mobile.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
}


.Terrassenvordaecher-background {
    background-image: url('Bilder/Slider/Terrassenueberdachungen.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
}

.Lamellendach-background {
    background-image: url('Bilder/Slider/Lamellendach.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
}

.Schiebeelemente-background {
    background-image: url('Bilder/Slider/Schiebeelemente.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
}

.Festverglasung-background {
    background-image: url('Bilder/Slider/Festverglasung.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
}

.Zaunpaneele-background {
    background-image: url('Bilder/Slider/Zaunpaneele.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
}

.Vordaecher-background {
    background-image: url('Bilder/Slider/Vordaecher.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
}

.Grillueberdachungen-background {
    background-image: url('Bilder/Slider/Grillueberdachungen.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
}


.Kaltwintergarten-background {
    background-image: url('Bilder/Slider/Kaltwintergarten.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
}

.Flachdach-background {
    background-image: url('Bilder/Slider/Flachdach.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cookie-buttons button {
    padding: 10px 20px;
    background: #ff6600;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.cookie-buttons button:hover {
    background: #ff8533;
}

.cookie-buttons a {
    color: white;
    text-decoration: underline;
    padding: 10px 0;
}

.Carport-background {
    background-image: url('Bilder/Slider/Carport.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
}

.Markisen-background {
    background-image: url('Bilder/Slider/Markisen.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
}

#All-info {
    padding: 50px 0;
    background-color: #f9f9f9;
}

#All-info .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#All-info h1 {
    font-size: 3em;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}


/* Für Tablets */
@media screen and (max-width: 768px) {
     #All-info h1 {
        font-size: 2.5em;
        width: 100%;
        padding: 0 10px;
    }
	
	.hero-background, 
	.Terrassenvordaecher-background,
    .Lamellendach-background,
    .Schiebeelemente-background,
    .Festverglasung-background,
    .Zaunpaneele-background,
    .Vordaecher-background,
    .Grillueberdachungen-background,
    .Kaltwintergarten-background,
    .Flachdach-background {
        height: 50vh;
    }
}

/* Für Smartphones */
@media screen and (max-width: 480px) {
    #All-info h1 {
        font-size: 2em;
        margin-bottom: 20px;
        width: 100%;
        padding: 0 0px;
    }
	

}

/* Für sehr kleine Bildschirme */
@media screen and (max-width: 320px) {
    #All-info h1 {
        font-size: 1.8em;
        margin-bottom: 15px;
        width: 100%;
        padding: 0 0px;
    }
}

.g-recaptcha {
    margin: 20px 0;
}

.appointment-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

#All-info .content {
    display: flex;
  
}

#All-info .text-content {
    max-width: 800px; /* Limit width for better readability */
    margin-bottom: 40px; /* Add space between text and features */
}

#All-info p {
    margin-bottom: 20px;
    line-height: 1.8; /* Increased from 1.6 */
    font-size: 1.2em; /* Increased font size */
}

#All-info .features {
    width: 100%;
    max-width: 800px; /* Match text content width */
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#All-info .feature {
    display: flex;
    align-items: center;
    justify-content: start; /* Center align feature content */
    margin-bottom: 50px;
}

#All-info .feature i {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #FF6600;
    background-color: #FFF0E6;
    border-radius: 50%;
}

#All-info .feature p {
    margin: 0;
    font-weight: bold;
    font-size: 1.1em; /* Increased font size */
}

@media (max-width: 768px) {
    #All-info .content {
        flex-direction: column;
    }

    #All-info .text-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    #All-info .features {
        width: 100%;
    }
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-background .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-background h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-background p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Button styles */
.btn, .hero-background .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6600;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn:hover, .hero-background .btn:hover {
    background-color: #e65c00;
}

/* Features section styles */
#features {
    padding: 3rem 0;
    background: #f4f4f4;
}

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature i {
    font-size: 3rem;
    color: #ff6600;
}

/* Products section styles */
#products {
    padding: 3rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem;
    text-align: center;
}

.product img {
    width: 100%;
    height: auto;
}

/* CTA section styles */
#cta {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 3rem 0;
}

/* Footer styles */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

/* Appointment section styles */
.appointment-section {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.appointment-section h1 {
    text-align: center;
    margin-bottom: 20px;
	padding: 5px;
}

.appointment-section p {
    text-align: center;
    margin-bottom: 30px;
}

#appointment-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.form-group button {
    width: 100%;
    padding: 12px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-group button:hover {
    background-color: #e65c00;
}

/* Advantages section styles */
#vorteile {
    background-color: #f5f5f5;
    padding: 50px 0;
}

#vorteile h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
}

.vorteile-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.vorteile-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vorteil-item {
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.vorteil-item i {
    font-size: 1.5em;
    color: #3b5998;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.vorteil-item p {
    margin: 0;
    font-size: 0.9em;
}

/* Swiper styles */
.swiper-container {
    position: relative;
	pointer-events: auto;
}

.swiper-wrapper {
    pointer-events: auto;
}

.swiper-button-next,
.swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    color: #000;
}

/* Add this new rule to hide the pagination dots */
.swiper-pagination {
    display: none;
}


.swiper-slide {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.swiper-slide h3 {
    margin-top: 15px;
    font-size: 1.2em;
}

.swiper-slide p {
    margin-top: 10px;
    color: #666;
}

/* Fixed CTA styles */
.fixed-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.variation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.variation-item {
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.variation-item img {
    width: 100%;
    height: auto;
    display: block;
}

.variation-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    text-align: center;
}

.variation-caption h3 {
    color: white;
    margin: 0;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .variation-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .variation-caption {
        padding: 8px;
    }

    .variation-caption h3 {
        font-size: 1em;
    }
}

.cta-button:hover {
    background-color: #e65c00;
    transform: scale(1.05);
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 10px;
    }

    header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    }
	
	#logo img {
    height: 75x;
	}
	
	.hamburger-menu {
        display: block;
    }
	
	.bar {
    width: 35px;
    height: 5px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.4s;
	}

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    #hero h1 {
        font-size: 2rem;
    }

    .feature {
        margin-bottom: 20px;
    }

    .vorteile-container {
        flex-direction: column;
    }

    .vorteile-block {
        margin-bottom: 20px;
    }

    .swiper-slide img {
        height: 250px;
    }

    .fixed-cta {
        width: 100%;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 10px;
        box-sizing: border-box;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

/* Dropdown-Menü Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

#products {
    padding: 50px 0;
}

#products h1 {
    text-align: center;
    margin-bottom: 30px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

#product-slider {
    padding-top: 50px; /* Anpassen nach Bedarf */
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-item:hover .product-info {
    transform: translateY(0);
}

.product-info h3 {
    margin: 0 0 10px;
    font-size: 1.2em;
}

.btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #e65c00;
}

.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cookie-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    max-width: 500px;
    text-align: center;
}

.cookie-banner p {
    margin: 0 0 20px 0;
    color: #333;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cookie-banner button {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 3px;
}

.cookie-banner a {
    color: #333;
    text-decoration: underline;
    padding: 10px 0;
}
#variationen {
    padding: 50px 0;
    background-color: #f9f9f9;
}

#variationen .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#variationen h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5em;
}

#variationen p {
    text-align: center;
    margin-bottom: 30px;
}

#variationen .variation-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.fixed-cta h2 {
    color: #000000;  /* Schwarze Farbe */
}

.fixed-cta p {
    color: #000000;  /* Schwarze Farbe */
}

#variationen .variation-item {
    flex-basis: calc(25% - 20px);
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

#variationen .variation-item:hover {
    transform: translateY(-5px);
}

#variationen .variation-item img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

#variationen .variation-item h3 {
    margin-top: 15px;
    font-size: 1.2em;
}

#variationen .variation-item p {
    margin-top: 10px;
    color: #666;
}

@media (max-width: 768px) {
    #variationen .variation-item {
        flex-basis: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    #variationen .variation-item {
        flex-basis: 100%;
    }
}

#farbauswahl {
    padding: 50px 0;
    background-color: #f9f9f9;
}

#farbauswahl .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#farbauswahl h2 {
    text-align: center;
    font-size: 2.5em;
    font-weight: bold;
}

#farbauswahl p {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
}

.color-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.color-item {
    flex-basis: calc(25% - 20px);
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.color-item:hover {
    transform: translateY(-5px);
}

.color-box {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 5px;
}

.color-box h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: bold;
}

.color-box p {
    margin: 0;
    font-size: 0.9em;
    font-weight: 500;
}

.gradient-box {
    background: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #8b00ff);
}

@media (max-width: 768px) {
    .color-item {
        flex-basis: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .color-item {
        flex-basis: 100%;
    }
}

#profildesign {
    padding: 50px 0;
    background-color: #f9f9f9;
}

#profildesign .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
	text-align: center;
}


#profildesign p {
	text-align: center;
    margin-bottom: 30px;
    font-weight: 500;

}

#profildesign h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5em;
}

.profile-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.profile-item {
    flex-basis: calc(50% - 20px);
    max-width: 500px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.profile-item:hover {
    transform: translateY(-5px);
}

.profile-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
}

.profile-item h3 {
    margin-top: 15px;
    font-size: 1.2em;
    font-weight: bold;
}

.profile-item p {
    margin-top: 10px;
    color: #666;
}

@media (max-width: 768px) {
    .profile-item {
        flex-basis: 100%;
    }
}

#glass-options {
    padding: 50px 0;
    background-color: #f9f9f9;
}

#glass-options .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

#glass-options h2 {
    margin-bottom: 30px;
    font-size: 2.5em;
    font-weight: bold;
}

#glass-options p {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.glass-item {
    flex-basis: calc(50% - 20px);
    max-width: 500px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.glass-item:hover {
    transform: translateY(-5px);
}

.glass-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
}

.slide-content h3 {
    margin-top: 15px;
    font-size: 1.2em;
    font-weight: bold;
}

.slide-content p {
    margin-top: 10px;
    color: #666;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev-slider, .next-slider {
    position: absolute;
    top: calc(50% - 1cm);
    transform: translateY(-50%);
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    pointer-events: auto; 
}

.prev-slider { left: 10px; }
.next-slider { right: 10px; }

.slider-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #bbb;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background: #333;
}

@media (max-width: 768px) {
    .slide {
        flex-direction: column;
        align-items: center;
    }
    
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
	background-color: white;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.social-nav {
    display: flex;
    gap: 15px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #eee;
}

.social-icon {
    color: #333;
    font-size: 1.2em;
    transition: all 0.3s ease;
    padding: 5px;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.fa-tiktok:hover { color: #000000; }
.fa-instagram:hover { color: #E1306C; }
.fa-facebook:hover { color: #4267B2; }

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.bar {
    background-color: #333;
    margin: 5px 0;
    transition: 0.4s;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-menu.active {
        display: block;
    }

    .main-nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .main-nav li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .social-nav {
        margin: 20px 0 0 0;
        padding: 20px 0 0 0;
        border-left: none;
        border-top: 1px solid #eee;
        justify-content: center;
    }

    /* Hamburger Animation */
    .hamburger-menu.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .nav-menu {
        max-height: 80vh; /* Begrenzt die Höhe im Querformat */
        overflow-y: auto; /* Ermöglicht Scrolling */
    }
    
    .main-nav {
        padding: 10px 0;
    }
    
    .social-nav {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 10px 0;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav li {
        margin: 5px 0; /* Reduzierter vertikaler Abstand */
    }
}

/* Zusätzliche Anpassungen für sehr kleine Bildschirme */
@media (max-height: 400px) and (orientation: landscape) {
    .nav-menu {
        max-height: 70vh;
    }
    
    .main-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* Mittlere Bildschirmgrößen */
@media (min-width: 769px) and (max-width: 925px) {
    .nav-menu {
        display: flex;
        width: 100%;
    }

    .main-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-right: 20px;
    }

    .social-nav {
        display: flex;
        align-items: center;
        gap: 15px;
        padding-left: 15px;
        border-left: 1px solid #eee;
    }

    .social-icon {
        font-size: 1.2rem;
    }

    /* Verhindern, dass das Hamburger-Menü in diesem Bereich angezeigt wird */
    .hamburger-menu {
        display: none;
    }

    /* Sicherstellen, dass das Menü immer sichtbar ist */
    .nav-menu.active,
    .nav-menu {
        display: flex;
        position: relative;
        box-shadow: none;
        background: transparent;
        padding: 0;
    }
}
.prev:hover, .next:hover {
    background: rgba(0,0,0,0.8);
}

.prev { 
    left: 10px; 
    border-radius: 3px 0 0 3px;
}

.next { 
    right: 10px; 
    border-radius: 0 3px 3px 0;
}

/* Spezifische Styles für den Product Slider */
#product-slider .prev,
#product-slider .next {
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    #product-slider .prev,
    #product-slider .next {
        width: 30px;
        height: 30px;
        padding: 8px;
    }
}

/* Gallery Styles */
.gallery-section {
    padding: 50px 0;
}

.gallery-filter {
    text-align: center;
    margin-bottom: 15px;
	    margin-top: 25px;
}

.filter-btn {
    padding: 10px 20px;
    margin: 0 5px;
    border: none;
    border-radius: 25px;
    background: #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-image {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 20px;
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
}

.lightbox-prev {
    left: 15px;
}

.lightbox-next {
    right: 15px;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .filter-btn {
        margin: 5px;
        padding: 8px 16px;
    }
}
.grecaptcha-badge {
    bottom: 80px !important;
    z-index: 999;
}