/* Grundlegende Einstellungen */
:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --light-color: #f8f8f8;
    --dark-color: #000000;
    --text-color: #444444;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Logo Textversion (falls Bild nicht verfügbar) */
.text-logo {
    display: flex;
    align-items: flex-start;
}

.text-logo-die {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-right: 0.3rem;
}

.text-logo-stoff {
    display: flex;
    flex-direction: column;
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1;
}

.text-logo-stoff span {
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

p {
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.link-button {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    transition: var(--transition);
}

.link-button:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.link-button:hover:after {
    width: 100%;
}

/* Header - immer fixiert */
header {
    background-color: transparent;
    box-shadow: none;
    padding: 15px 40px; /* Angepasst für das größere Logo */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    padding: 8px 40px; /* Von 10px auf 8px verringert, um für das größere Logo zu kompensieren */
}

.logo {
    height: 100px; /* Von 80px auf 100px erhöht */
}

.nav-container {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    margin-right: 30px;
}

.nav-links li {
    margin: 0 18px; /* Von 15px auf 18px erhöht für mehr Abstand */
}

.nav-links a {
    font-weight: 500;
    transition: var(--transition);
    color: white;
    text-transform: uppercase;
    font-size: 1.1rem; /* Von 0.9rem auf 1.1rem erhöht */
    position: relative;
}

.nav-links a:hover {
    color: #ddd;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-left: 20px;
    font-size: 0.8rem;
}

.contact-item i {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Animation für den Hero-Bereich */
@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 300px 300px; }
}

@keyframes fadeInOut {
    0% { opacity: 0.1; }
    50% { opacity: 0.3; }
    100% { opacity: 0.1; }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.8;
}

.textile-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.1) 75%, rgba(255,255,255,0.1)),
        linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.1) 75%, rgba(255,255,255,0.1));
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    animation: patternMove 20s linear infinite;
}

.thread {
    position: absolute;
    background-color: white;
    opacity: 0.15;
    animation: fadeInOut 4s infinite;
}

.thread-1 {
    width: 1px;
    height: 100%;
    left: 20%;
    top: 0;
    animation-delay: 0s;
}

.thread-2 {
    width: 1px;
    height: 100%;
    left: 40%;
    top: 0;
    animation-delay: 1s;
}

.thread-3 {
    width: 1px;
    height: 100%;
    left: 60%;
    top: 0;
    animation-delay: 2s;
}

.thread-4 {
    width: 1px;
    height: 100%;
    left: 80%;
    top: 0;
    animation-delay: 3s;
}

.thread-5 {
    width: 100%;
    height: 1px;
    left: 0;
    top: 30%;
    animation-delay: 0.5s;
}

.thread-6 {
    width: 100%;
    height: 1px;
    left: 0;
    top: 60%;
    animation-delay: 1.5s;
}

.sewing-machine {
    position: absolute;
    width: 200px;
    height: 2px;
    background-color: white;
    opacity: 0.3;
    top: 45%;
    left: -200px;
    animation: sewingMove 8s linear infinite;
}

@keyframes sewingMove {
    0% { left: -200px; }
    100% { left: 100%; }
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    text-align: center;
    padding: 220px 0 150px;
    overflow: hidden;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/header.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax-Effekt */
    position: relative;
}

.hero-content {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 10;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero h1 .highlight {
    display: inline-block;
    background-color: white;
    color: black;
    padding: 0 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid white;
}

.cta-button:hover {
    background-color: white;
    color: black;
    transform: translateY(-2px);
}

.cta-button.primary {
    background-color: white;
    color: black;
}

.cta-button.primary:hover {
    background-color: #f0f0f0;
}

/* About Section */
.about-section {
    background-color: var(--light-color);
    padding: 100px 0;
    text-align: center;
}

.about-content {
    margin-top: 40px;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-introduction {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #444;
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.about-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-detail i {
    font-size: 24px;
    color: #000;
    background: #f5f5f5;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.about-detail h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #222;
}

.about-detail p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover:before {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Responsive About Section */
@media (max-width: 992px) {
    .about-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 70px 0;
    }
    
    .about-introduction {
        font-size: 1.1rem;
    }
    
    .about-detail {
        padding: 20px;
    }
    
    .about-detail h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-detail {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .about-detail i {
        margin-bottom: 15px;
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
}

.service-block {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    overflow: hidden; /* Für Bildanimation */
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 0; /* Rahmen entfernt */
    box-shadow: none; /* Schatten entfernt */
    transition: transform 0.8s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-content {
    flex: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-block:nth-child(2) .service-content {
    animation-delay: 0.2s;
}

.service-block:nth-child(3) .service-content {
    animation-delay: 0.4s;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.service-content h3:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-content:hover h3:after {
    transform: scaleX(1);
}

.service-list {
    margin: 25px 0;
}

.service-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInRight 0.5s forwards;
}

.service-list li:nth-child(1) { animation-delay: 0.1s; }
.service-list li:nth-child(2) { animation-delay: 0.2s; }
.service-list li:nth-child(3) { animation-delay: 0.3s; }
.service-list li:nth-child(4) { animation-delay: 0.4s; }
.service-list li:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.service-list i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.service-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.service-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.5s;
}

.service-button:hover:before {
    left: 100%;
}

.service-button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Responsive Design für Service-Blöcke */
@media (max-width: 992px) {
    /* Header & Navigation */
    header {
        padding: 20px 20px; /* Mehr vertikaler Abstand */
        background-color: transparent;
        position: absolute; 
        display: flex;
        justify-content: flex-start; 
        align-items: center;
    }
    
    /* Logo-Container auf mobil */
    .logo-container {
        position: relative;
        z-index: 900;
        margin-top: 5px; /* Etwas mehr Abstand nach oben */
        margin-left: 15px; /* Abstand vom linken Rand erhöhen */
    }
    
    header .nav-container {
        display: none;
    }
    
    .logo {
        height: 70px;
    }
    
    .text-logo {
        display: flex;
        align-items: center;
        transform: scale(1.3);
        transform-origin: left center;
    }
    
    .text-logo-die {
        font-size: 2.8rem;
    }
    
    .text-logo-stoff {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    /* Service Blocks */
    .service-block, 
    .service-block.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .service-image, 
    .service-content {
        width: 100%;
    }
    
    /* Zentrierung für Service-Content in mobiler Ansicht */
    .service-content {
        text-align: center;
    }
    
    .service-content h3:after {
        left: 50%;
        transform: translateX(-50%) scaleX(0);
    }
    
    .service-content:hover h3:after {
        transform: translateX(-50%) scaleX(1);
    }
    
    .service-list {
        display: inline-block;
        text-align: left;
    }
    
    /* CTA Buttons im Hero-Bereich - werden nebeneinander angezeigt */
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    
    .cta-button {
        width: auto;
        margin-bottom: 0;
    }

    /* Mobiler Anruf-Button anzeigen */
    .mobile-call-button {
        display: flex;
    }
}

@media (max-width: 768px) {
    /* Weitere Anpassungen für kleinere Bildschirme */
    .hero h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .nav-links {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-links li {
        margin: 5px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Noch größeres Logo für sehr kleine Geräte */
    .logo {
        height: 60px; /* Etwas kleiner als auf Tablets, aber immer noch größer als Standard */
    }
    
    /* Positionierung optimieren */
    .logo-container {
        margin-left: 10px; /* Mehr Abstand vom linken Rand */
    }
    
    /* Text-Logo weiter optimieren */
    .text-logo {
        transform: scale(1.1); /* Etwas kleiner als auf Tablets */
    }
}

/* Zusätzliche Animationen für den Textildruck */
@keyframes needleMove {
    0%, 100% { transform: translateY(-10px); }
    50% { transform: translateY(10px); }
}

.needle {
    position: absolute;
    width: 2px;
    height: 20px;
    background-color: white;
    opacity: 0.5;
    animation: needleMove 1s infinite;
}

.needle-1 {
    left: 25%;
    top: 30%;
    animation-delay: 0.1s;
}

.needle-2 {
    left: 75%;
    top: 60%;
    animation-delay: 0.3s;
}

.needle-3 {
    left: 40%;
    top: 70%;
    animation-delay: 0.5s;
}

.cloth-point {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: white;
    opacity: 0;
    animation: appearDisappear 3s infinite;
}

@keyframes appearDisappear {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 0.5; transform: scale(1); }
}

.point-1 {
    left: 30%;
    top: 40%;
    animation-delay: 0.2s;
}

.point-2 {
    left: 60%;
    top: 35%;
    animation-delay: 0.7s;
}

.point-3 {
    left: 80%;
    top: 55%;
    animation-delay: 1.2s;
}

.point-4 {
    left: 20%;
    top: 65%;
    animation-delay: 1.7s;
}

.point-5 {
    left: 50%;
    top: 75%;
    animation-delay: 2.2s;
}

/* Siebdruck-Effekt Animation */
@keyframes screenPrintMove {
    0% { transform: translateY(-100%); }
    15% { transform: translateY(0); }
    85% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

.screen-print {
    position: absolute;
    width: 150px;
    height: 150px;
    top: 35%;
    left: 30%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: screenPrintMove 12s infinite;
    animation-delay: 2s;
}

.screen-print-2 {
    width: 120px;
    height: 120px;
    top: 45%;
    left: 60%;
    animation-delay: 6s;
}

@keyframes inkSplash {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 0.3; transform: scale(1); }
}

.ink-splash {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    opacity: 0;
    animation: inkSplash 8s infinite;
}

.splash-1 {
    width: 40px;
    height: 40px;
    top: 38%;
    left: 33%;
    animation-delay: 3s;
}

.splash-2 {
    width: 30px;
    height: 30px;
    top: 46%;
    left: 65%;
    animation-delay: 7s;
}

/* Mobile Menü Button - mit auffälligem Hintergrund */
.mobile-menu-toggle {
    display: none; 
    position: fixed;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    z-index: 9999;
    cursor: pointer;
    background-color: transparent;
    border: none;
    border-radius: 5px;
    padding: 8px;
    transition: all 0.3s ease;
}

/* Die drei weißen Striche */
.mobile-menu-toggle span {
    position: absolute;
    left: 9px;
    right: 9px;
    display: block;
    height: 4px;
    width: calc(100% - 18px);
    background-color: #ffffff; /* Weiße Striche */
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Position der Striche */
.mobile-menu-toggle span:nth-child(1) {
    top: 12px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 21px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 30px;
}

/* X-Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

/* In der mobilen Ansicht IMMER anzeigen - wichtig! */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block !important;
    }
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85); /* Leicht transparentes Schwarz */
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px); /* Hintergrundunschärfe für einen eleganten Look */
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay .nav-links {
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.mobile-menu-overlay .nav-links li {
    margin: 15px 0;
}

.mobile-menu-overlay .nav-links a {
    font-size: 1.5rem; /* Größere Schrift */
    text-transform: uppercase;
    letter-spacing: 1px; /* Verbesserte Lesbarkeit */
    color: white;
    transition: all 0.3s ease;
    padding: 5px 10px;
}

.mobile-menu-overlay .nav-links a:hover {
    color: #ccc;
    transform: translateY(-2px);
}

.mobile-menu-overlay .header-contact {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.mobile-menu-overlay .contact-item {
    margin: 15px 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mobile-menu-overlay .contact-item i {
    margin-right: 0;
    margin-bottom: 8px;
    font-size: 1.8rem;
}

/* Benefits Section */
.benefits-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Immer 2 Spalten */
    gap: 30px 50px; /* Vertikaler und horizontaler Abstand */
    max-width: 1000px; /* Maximale Breite begrenzen für bessere Lesbarkeit */
    margin: 0 auto;
}

.benefit-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 10px;
}

/* Responsive Design für Benefits Grid */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr; /* Nur eine Spalte auf kleinen Bildschirmen */
    }
}

/* Footer Styles */
footer {
    background-color: #000000;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 100px; /* Von 60px auf 100px erhöht, um mit dem Header-Logo übereinzustimmen */
    margin-bottom: 15px;
}

.footer-links h4, 
.footer-social h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a, 
.footer-social a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-links a:hover, 
.footer-social a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #999999;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #999999;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
        margin-bottom: 30px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
}

/* Kontaktformular - Neues Design */
.contact-section {
    padding: 80px 0;
    background-color: #222222;
    color: white;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #cccccc;
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.contact-info {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: white;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-info h4 {
    margin-bottom: 5px;
    font-size: 1rem;
    color: #cccccc;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info .contact-item:last-child {
    margin-bottom: 0;
}

.contact-info .contact-item i {
    font-size: 1.8rem;
    color: white;
    margin-right: 15px;
}

.contact-info .contact-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
}

.contact-form {
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: white;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #cccccc;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Checkbox Styling */
.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.4;
    color: #cccccc;
}

.checkbox-group a {
    color: white;
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: #cccccc;
}

.submit-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Animationen für Formularelemente */
.form-group input,
.form-group textarea {
    transform: translateY(0);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
}

/* Responsive Design für das Kontaktformular */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .contact-form,
    .contact-info {
        padding: 25px 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
    }
    
    .submit-button {
        padding: 12px 25px;
    }
    
    .checkbox-group {
        flex-direction: column;
    }
    
    .checkbox-group input[type="checkbox"] {
        margin-bottom: 10px;
    }
}

/* Marken-Sektion */
.partners-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.partners-section h2 {
    margin-bottom: 50px;
}

.partners-grid {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.partners-slider {
    display: flex;
    transition: none; /* Keine Transition, da wir requestAnimationFrame verwenden */
    width: max-content; /* Ermöglicht unbegrenzte Breite */
}

.partner-logo {
    flex: 0 0 auto;
    width: 200px;
    height: 200px;
    margin: 0 15px;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.partner-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

/* Responsive Anpassungen für die Marken-Sektion */
@media (max-width: 992px) {
    .partner-logo {
        width: 180px;
        height: 180px;
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .partner-logo {
        width: 150px;
        height: 150px;
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .partner-logo {
        width: 120px;
        height: 120px;
        margin: 0 5px;
    }
}

/* Scroll-to-top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: #333;
}

.scroll-top i {
    font-size: 1.5rem;
}

/* Responsive-Anpassungen für Scroll-to-top Button */
@media (max-width: 768px) {
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .scroll-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
    
    .scroll-top i {
        font-size: 1.2rem;
    }
}

/* Cookie-Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.cookie-banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cookie-banner-header h3 {
    color: white;
    margin: 0;
    font-size: 1.3rem;
}

.cookie-banner-header .close-banner {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.cookie-banner p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-banner a {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-banner a:hover {
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept-all {
    background-color: white;
    color: var(--dark-color);
}

.cookie-btn.accept-all:hover {
    background-color: #f0f0f0;
}

.cookie-btn.accept-necessary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn.accept-necessary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn.settings {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn.settings:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 10px;
}

.cookie-settings.active {
    display: block;
}

.cookie-setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-setting-item:last-child {
    border-bottom: none;
    margin-bottom: 20px;
}

.cookie-setting-item-info h4 {
    color: white;
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.cookie-setting-item-info p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: white;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    background-color: var(--dark-color);
    transform: translateX(26px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Anpassungen für Cookie-Banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .cookie-banner-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .cookie-banner-text {
        flex: 1;
        margin-right: 20px;
    }
    
    .cookie-banner p {
        margin-bottom: 0;
    }
    
    .cookie-buttons {
        display: flex;
        gap: 10px;
        margin-bottom: 0;
    }
}

.logo-container a {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: inherit;
}

/* Seitenübergangsanimationen mit Logo und Ladebalken */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.97);
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
}

.transition-logo {
    width: 250px;
    height: 250px;
    margin-bottom: 40px;
    animation: zoomAndRotate 1.5s infinite alternate;
    transform-origin: center;
}

.transition-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.transition-text-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    margin-bottom: 40px;
    animation: zoomAndRotate 1.5s infinite alternate;
}

.transition-text-logo .logo-die {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

.transition-text-logo .logo-stoff {
    display: flex;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 0.5rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

/* Retro-Ladebalken */
.loader-container {
    width: 350px;
    margin-top: 30px;
}

.loader-text {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: monospace;
    text-align: center;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.retro-loader {
    width: 100%;
    height: 30px;
    background-color: #222;
    border: 3px solid #444;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.retro-loader-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(to right, #5a5a5a 0%, #ffffff 50%, #5a5a5a 100%);
    background-size: 30px 30px;
    animation: moveLoader 1s linear infinite, progressLoader 2s ease-out forwards;
    width: 0%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

@keyframes moveLoader {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 0;
    }
}

@keyframes progressLoader {
    0% {
        width: 0%;
    }
    10% {
        width: 5%;
    }
    20% {
        width: 15%;
    }
    30% {
        width: 25%;
    }
    40% {
        width: 40%;
    }
    50% {
        width: 50%;
    }
    60% {
        width: 65%;
    }
    70% {
        width: 75%;
    }
    80% {
        width: 85%;
    }
    90% {
        width: 95%;
    }
    100% {
        width: 100%;
    }
}

@keyframes zoomAndRotate {
    0% {
        transform: scale(1) rotate(-2deg);
        filter: brightness(0.9);
    }
    100% {
        transform: scale(1.1) rotate(2deg);
        filter: brightness(1.1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Animationen für ausgehende Links */
a.animated-link {
    transition: color 0.3s ease;
    position: relative;
}

a.animated-link:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

a.animated-link:hover:after {
    width: 100%;
}

/* Intro-Animation für ersten Seitenaufruf */
.intro-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out;
}

.intro-logo-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transform-origin: center;
    animation: introLogoReveal 2.5s ease forwards;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.7));
}

.intro-text-logo {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    z-index: 2;
    animation: introTextReveal 2.5s ease forwards;
}

.intro-text-logo .logo-die {
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.intro-text-logo .logo-stoff {
    display: flex;
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 0.8rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.intro-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: introBackgroundReveal 2s ease-out forwards;
}

.intro-tagline {
    margin-top: 30px;
    color: white;
    font-size: 1.8rem;
    opacity: 0;
    transform: translateY(20px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: introTaglineReveal 1s ease forwards 1.5s;
}

.intro-animation.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Textil-Effekt Animation */
.intro-fabric {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.03) 75%, rgba(255,255,255,0.03)),
        linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.03) 75%, rgba(255,255,255,0.03));
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    z-index: 0;
    opacity: 0;
    animation: introFabricReveal 3s ease-in forwards 0.5s;
}

.intro-threads {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.intro-thread {
    position: absolute;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
    width: 1px;
    transform-origin: center top;
    animation: threadReveal 2s ease forwards;
    opacity: 0;
}

/* Keyframes für Intro-Animationen */
@keyframes introLogoReveal {
    0% {
        transform: scale(0.3) rotate(-8deg);
        opacity: 0;
        filter: brightness(0) blur(10px);
    }
    30% {
        transform: scale(1.2) rotate(5deg);
        opacity: 1;
        filter: brightness(1.5) blur(0);
    }
    60% {
        transform: scale(0.9) rotate(-2deg);
    }
    80% {
        transform: scale(1.05) rotate(1deg);
    }
    100% {
        transform: scale(1) rotate(0);
        filter: brightness(1) blur(0);
    }
}

@keyframes introTextReveal {
    0% {
        transform: scale(0.3) rotate(-8deg);
        opacity: 0;
        filter: brightness(0) blur(10px);
    }
    30% {
        transform: scale(1.2) rotate(5deg);
        opacity: 1;
        filter: brightness(1.5) blur(0);
    }
    60% {
        transform: scale(0.9) rotate(-2deg);
    }
    80% {
        transform: scale(1.05) rotate(1deg);
    }
    100% {
        transform: scale(1) rotate(0);
        filter: brightness(1) blur(0);
    }
}

@keyframes introBackgroundReveal {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    100% {
        width: 800px;
        height: 800px;
        opacity: 1;
    }
}

@keyframes introTaglineReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes introFabricReveal {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.5;
    }
}

@keyframes threadReveal {
    0% {
        height: 0;
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    100% {
        height: 100%;
        opacity: 0.3;
    }
}

.contact-section h2 {
    color: white;
}

.contact-section h2:after {
    background-color: white;
}

/* Mobiler Anruf-Button im Header */
.mobile-call-button {
    display: none;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.mobile-call-button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.desktop-hide {
    display: inline-block;
}

@media (min-width: 993px) {
    .desktop-hide {
        display: none;
    }
}

/* FAQ-Sektion */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.faq-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-question:hover h3 {
    color: var(--primary-color);
}

.faq-question:hover .faq-icon {
    background-color: #333;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 0 20px;
    line-height: 1.6;
    color: #666;
}

.faq-item.active .faq-question {
    background-color: #f0f0f0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 15px;
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer p {
        padding: 0 0 15px;
    }
}

/* Blog Page Styles */
.secondary-header {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    padding: 10px 0;
}

.secondary-header .nav-links a {
    position: relative;
}

.secondary-header .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.secondary-header .nav-links a:hover::after,
.secondary-header .nav-links a.active::after {
    width: 100%;
}

.page-header {
    padding: 120px 0 50px;
    background-color: #f5f5f5;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #000;
}

.page-header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.blog-section {
    padding: 60px 0;
}

.blog-categories {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.blog-categories ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.blog-categories li {
    margin: 0 15px 10px;
}

.blog-categories a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    padding: 5px 5px;
    position: relative;
    transition: all 0.3s ease;
}

.blog-categories a:after {
    content: '';
    width: 0;
    height: 2px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.blog-categories a:hover,
.blog-categories a.active {
    color: #000;
}

.blog-categories a:hover:after,
.blog-categories a.active:after {
    width: 100%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #777;
}

.blog-author {
    display: flex;
    align-items: center;
}

.blog-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.blog-date {
    display: flex;
    align-items: center;
}

.blog-date i {
    margin-right: 5px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: #555;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.blog-pagination a, 
.blog-pagination span {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 5px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-pagination a {
    background: #f5f5f5;
    color: #333;
}

.blog-pagination a.active {
    background: #000;
    color: #fff;
}

.blog-pagination a:hover:not(.active) {
    background: #e0e0e0;
}

.blog-pagination a.next {
    display: flex;
    align-items: center;
}

.blog-pagination a.next i {
    margin-left: 5px;
}

.newsletter-section {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.newsletter-section h2 {
    margin-bottom: 15px;
}

.newsletter-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #666;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 25px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #333;
}

.privacy-note {
    color: #888;
    font-size: 0.85rem;
}

.privacy-note a {
    color: #555;
    text-decoration: underline;
}

/* Responsive Styles for Blog Page */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-categories ul {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .blog-categories li {
        margin: 0 10px 10px 0;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .blog-content h2 {
        font-size: 1.3rem;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-date {
        margin-top: 10px;
    }
}

/* Danke-Seite Styles */
.thank-you-section {
    padding: 60px 0;
    background-color: white;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    font-size: 80px;
    color: #4CAF50;
    margin-bottom: 30px;
}

.thank-you-steps {
    margin: 50px 0;
}

.thank-you-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    text-align: left;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thank-you-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #000;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.thank-you-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.return-button, .secondary-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.return-button {
    background-color: #000;
    color: white;
}

.return-button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.secondary-button {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
}

.secondary-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .thank-you-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .return-button, .secondary-button {
        width: 100%;
        text-align: center;
    }
    
    .thank-you-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Sektionsüberschriften-Animation */
@keyframes headingAnimation {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Basisstil für alle Sektionsüberschriften mit Animationseinstellungen */
section h2 {
    opacity: 0;
    animation: headingAnimation 0.8s ease forwards;
    animation-play-state: paused;
}

/* Diese Klasse wird per JavaScript hinzugefügt, wenn die Sektion sichtbar wird */
section h2.visible {
    animation-play-state: running;
}

/* Verzögerung für jede Ebene der Überschriften */
.services-section h2 { animation-delay: 0.1s; }
.about-section h2 { animation-delay: 0.1s; }
.benefits-section h2 { animation-delay: 0.1s; }
.partners-section h2 { animation-delay: 0.1s; }
.faq-section h2 { animation-delay: 0.1s; }
.contact-section h2 { animation-delay: 0.1s; }
.blog-section h2 { animation-delay: 0.1s; }
.page-header h1 { 
    opacity: 0;
    animation: headingAnimation 0.8s ease forwards;
    animation-delay: 0.1s;
}

/* Animation für Linien unter den Überschriften */
@keyframes lineAnimation {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 60px;
        opacity: 1;
    }
}

h2:after {
    width: 0;
    opacity: 0;
    animation: lineAnimation 0.6s ease forwards;
    animation-delay: 0.6s;
    animation-play-state: paused;
}

h2.visible:after {
    animation-play-state: running;
}

/* Katalog-Baustellen-Seite Styles */
.construction-section {
    padding: 60px 0 100px;
    background-color: white;
}

.construction-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.construction-icon {
    margin-bottom: 30px;
    position: relative;
}

.construction-icon i {
    font-size: 60px;
    color: #ff9800;
    margin: 0 15px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: constructionIconBounce 2s infinite alternate;
}

.construction-icon i:nth-child(2) {
    animation-delay: 0.5s;
    color: #212121;
}

@keyframes constructionIconBounce {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-10px) rotate(10deg);
    }
}

.construction-message {
    max-width: 800px;
    margin: 30px auto 50px;
}

.construction-message p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.construction-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.construction-feature {
    background-color: #f9f9f9;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.construction-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.construction-feature i {
    font-size: 40px;
    color: #000;
    margin-bottom: 20px;
}

.construction-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.construction-feature p {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 0;
}

.construction-progress {
    margin: 50px auto;
    max-width: 500px;
}

.progress-bar {
    height: 30px;
    background-color: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    width: 65%;
    background: linear-gradient(90deg, #000 0%, #333 100%);
    border-radius: 15px;
    position: relative;
    animation: progressPulse 2s infinite;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.1) 0%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0.1) 100%);
    background-size: 200% 100%;
    animation: progressShine 2s linear infinite;
}

@keyframes progressShine {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes progressPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.progress-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.construction-cta {
    margin-top: 40px;
}

.construction-cta p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Responsive Styles für die Katalog-Baustelle */
@media (max-width: 992px) {
    .construction-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .construction-details {
        grid-template-columns: 1fr;
    }
    
    .construction-section {
        padding: 40px 0 60px;
    }
    
    .construction-message p {
        font-size: 1.1rem;
    }
    
    .construction-icon i {
        font-size: 50px;
    }
}

@media (max-width: 576px) {
    .construction-feature {
        padding: 20px 15px;
    }
    
    .construction-feature i {
        font-size: 36px;
    }
    
    .construction-feature h3 {
        font-size: 1.2rem;
    }
    
    .progress-bar {
        height: 25px;
    }
    
    .construction-cta p {
        font-size: 1.1rem;
    }
}

/* Button-Varianten für die Katalog-Seite */
.cta-button.black {
    background-color: #000;
    color: white;
    border: 2px solid #000;
}

.cta-button.black:hover {
    background-color: #333;
    border-color: #333;
}

/* Vertikale Ausrichtung für die Buttons auf der Katalog-Seite */
.column-centered {
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.column-centered .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
} 