/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-color);
    overflow: hidden;
    padding-top: 80px;
    margin-bottom: -100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: 0;
}

.hero picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.98);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero .cta-button {
    font-size: 1.4rem;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: var(--secondary-color);
}

.hero .affiliate-notice {
    font-size: 0.9rem;
    color: var(--light-text);
    margin: 0;
    font-style: italic;
}

/* Responsive Hero Anpassungen */
@media screen and (max-width: 991px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.6rem;
    }

    .hero .cta-button {
        font-size: 1.2rem;
        padding: 0.8rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        min-height: 600px;
        padding-top: 60px;
    }

    .hero .container {
        padding: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .hero .affiliate-notice {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 576px) {
    .hero {
        min-height: 500px;
        height: auto;
        padding: 80px 0 40px;
    }

    .hero .container {
        padding: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero .cta-button {
        font-size: 1.1rem;
        padding: 0.7rem 1.8rem;
        width: 100%;
        max-width: 250px;
    }

    .hero .affiliate-notice {
        font-size: 0.75rem;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* FAQ Section */
.faq-section {
    position: relative;
    padding: 0 0 6rem;
    color: var(--text-color);
    min-height: auto;
    height: auto;
    overflow: visible;
}

.faq-hero {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 4rem;
}

.faq-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.faq-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.8) 70%,
        rgba(255, 255, 255, 1) 100%
    );
}

.faq-section .container {
    position: relative;
    z-index: 2;
    width: 95%;
    max-width: 1200px;
    margin: -100px auto 0;
    overflow: visible;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

.faq-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    margin-left: 1rem;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 2px;
    height: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.faq-icon::after {
    width: 20px;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-item.active .faq-icon::before {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
}

.faq-answer[hidden] {
    display: none;
}

.faq-more {
    text-align: center;
    margin-top: 2rem;
}

.faq-more .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.faq-more .cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

@media screen and (max-width: 991px) {
    .faq-section {
        background-attachment: scroll;
    }
    
    .faq-content {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .faq-section h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .faq-section {
        padding: 0 0 3rem;
    }

    .faq-hero {
        height: 300px;
        margin-bottom: 2rem;
    }

    .faq-section .container {
        width: 100%;
        padding: 0 1rem;
        margin-top: -50px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }

    .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
}

@media screen and (max-width: 576px) {
    .faq-hero {
        height: 250px;
    }

    .faq-section .container {
        margin-top: -30px;
    }

    .faq-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

/* Footer Sections */
.footer-links ul {
    list-style: none;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom .affiliate-notice {
    font-size: 0.8rem;
    color: var(--light-text);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

/* Content Sections */
.content-box h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.content-box h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
}

.content-box h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.content-box p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.content-box ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.content-box li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.content-box .affiliate-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 10px;
}

/* Privacy Policy & Legal Notice Sections */
.privacy-policy.section,
.imprint.section {
    padding-top: 120px; /* Abstand für die fixierte Navigation */
}

.title-spacing {
    margin: 2rem 0 4rem;
    text-align: center;
}

.title-spacing h1 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin: 0;
}

.privacy-policy .content-box,
.imprint .content-box {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.privacy-policy h1,
.imprint h1 {
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.privacy-policy h3,
.imprint h3 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    font-family: var(--font-heading);
}

.privacy-policy ul,
.imprint ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-policy p,
.imprint p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Responsive Anpassungen */
@media screen and (max-width: 768px) {
    .privacy-policy.section,
    .imprint.section {
        padding-top: 100px;
    }
    
    .privacy-policy .content-box,
    .imprint .content-box {
        padding: 1.5rem;
    }
}

/* Responsive Anpassungen für Hero */
@media screen and (min-width: 1200px) {
    .hero {
        height: 100vh;
        min-height: 800px;
    }
    
    .hero .container {
        max-width: 1000px;
        padding: 3rem;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .hero {
        height: 90vh;
        min-height: 700px;
    }
    
    .hero .container {
        max-width: 800px;
        padding: 2.5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.6rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .hero {
        height: 85vh;
        min-height: 600px;
        padding-top: 60px;
    }
    
    .hero .container {
        max-width: 700px;
        padding: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .hero .cta-button {
        font-size: 1.2rem;
        padding: 0.8rem 2rem;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .hero {
        height: auto;
        min-height: 500px;
        padding-top: 50px;
    }
    
    .hero .container {
        width: 90%;
        max-width: 540px;
        padding: 2rem;
        margin: 2rem auto;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero .cta-button {
        font-size: 1.1rem;
        padding: 0.7rem 1.8rem;
    }
}

/* Mobile Portrait Mode */
@media screen and (max-width: 575px) {
    .hero {
        height: auto;
        min-height: calc(100vh - 60px);
        padding-top: 30px;
    }
    
    .hero .container {
        width: 95%;
        max-width: none;
        padding: 1.5rem;
        margin: 1rem auto;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .hero .cta-button {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
        width: 100%;
        max-width: 250px;
    }
}

/* Mobile Landscape Mode */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 120vh;
        padding: 15px 0;
    }
    
    .hero-background {
        height: 120vh;
        object-position: center 15%;
        opacity: 0.8;
    }
    
    .hero .container {
        width: 70%;
        max-width: 400px;
        margin-top: 45px;
        padding: 0.8rem;
        background: rgba(255, 255, 255, 0.98);
    }
    
    .hero h1 {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
    }
    
    .hero .cta-button {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        min-width: 140px;
    }
}

@media screen and (max-height: 400px) and (orientation: landscape) {
    .hero {
        min-height: 140vh;
    }
    
    .hero-background {
        height: 140vh;
    }
    
    .hero .container {
        margin-top: 35px;
        max-width: 360px;
    }
    
    .hero h1 {
        font-size: 1.2rem;
    }
    
    .hero p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .hero .cta-button {
        padding: 0.4rem 0.8rem;
    }
}

/* Features Section */
.features-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(180deg, 
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.8) 15%,
        var(--background-color) 25%,
        var(--secondary-color) 100%);
    position: relative;
    overflow: visible;
}

.features-section::before {
    display: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.8rem;
    width: 95%;
    max-width: 1200px;
    margin: -50px auto 0;
    padding: 0 1rem;
    position: relative;
    z-index: 3;
}

.feature-box {
    text-align: center;
    padding: 1.2rem 0.8rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

.feature-box h3 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--primary-color);
    font-weight: 600;
}

.feature-box p {
    font-size: 0.8rem;
    color: var(--text-color);
    line-height: 1.4;
    margin: 0;
}

/* Responsive Features */
@media screen and (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
        width: 90%;
    }
}

@media screen and (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .features-grid {
        margin-top: -15px;
        grid-template-columns: 1fr;
        max-width: 350px;
        gap: 1.2rem;
    }

    .features-section {
        padding: 4rem 0 3rem;
    }

    .feature-box {
        padding: 1.5rem 1rem;
    }
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.review-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f8f8f8;
}

.review-image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.review-image picture source,
.review-image picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.review-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.review-content blockquote {
    margin: 0;
    font-style: italic;
    flex-grow: 1;
}

.review-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333;
}

.review-content footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.review-content cite {
    font-style: normal;
    font-weight: 600;
    color: #555;
}

.product-name {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .review-image {
        height: 250px;
    }

    .review-content {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .review-image {
        height: 200px;
    }
}

/* Scroll Shop Button */
.scroll-shop-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-shop-button.visible {
    opacity: 1;
    visibility: visible;
}

.shop-now-button {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.shop-now-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 768px) {
    .scroll-shop-button {
        bottom: 15px;
        right: 15px;
    }

    .shop-now-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Affiliate Program Section */
.affiliate-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.affiliate-image:hover {
    transform: scale(1.02);
}

.affiliate-cta {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .affiliate-image {
        margin-bottom: 1.5rem;
    }
    
    .affiliate-cta {
        padding: 1.5rem;
        margin: 2rem 0;
    }
} 