/* Spezifische Styles für die Startseite */

/* Hero Section Verbesserungen */
.hero-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Media Cards Hover Effekte */
.media-card {
    position: relative;
    overflow: hidden;
}

.media-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(46, 204, 113, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.media-card:hover::after {
    transform: translateX(100%);
}

.media-icon {
    transition: transform 0.3s ease;
}

.media-card:hover .media-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Sortiment Cards Spezialeffekte */
.sortiment-card {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sortiment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: -1;
}

.sortiment-card:hover::before {
    opacity: 0.1;
}

.flavor-icon {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* About Preview Spezialeffekte */
.about-card {
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.about-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.floating-elements .element {
    animation: float 3s ease-in-out infinite;
}

.floating-elements .element:nth-child(1) {
    animation-delay: 0s;
}

.floating-elements .element:nth-child(2) {
    animation-delay: 1s;
}

.floating-elements .element:nth-child(3) {
    animation-delay: 2s;
}

/* Argument Cards Spezialeffekte */
.argument-card {
    position: relative;
    overflow: hidden;
}

.argument-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.argument-card:hover::after {
    width: 300px;
    height: 300px;
}

.argument-icon {
    transition: all 0.3s ease;
}

.argument-card:hover .argument-icon {
    transform: scale(1.2) rotate(360deg);
}

/* Testimonial Cards Spezialeffekte */
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}



/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Spezielle Hover Effekte für Buttons */
.cta-button,
.about-cta {
    position: relative;
    overflow: hidden;
}

.cta-button::before,
.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before,
.about-cta:hover::before {
    left: 100%;
}

/* Hero Section mit Logo-Hintergrund */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 120%;
    background-position: 80% 20%;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    display: none;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 3;
    position: relative;
}

/* Spezielle Animationen für Text */
.hero-subtitle {
    position: relative;
    overflow: hidden;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    transform: scaleX(0);
    transition: transform 0.6s ease;
    transform-origin: left;
}

.hero-subtitle:hover::after {
    transform: scaleX(1);
}
/* Instagram Section - Vereinfacht wie auf anderen Seiten */
.instagram-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.instagram-card {
    text-align: center;
    color: white;
}

.instagram-content i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.instagram-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.instagram-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.instagram-cta {
    display: inline-block;
    padding: 15px 30px;
    background: white;
    color: #833ab4;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.instagram-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Verbesserungen */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        background-size: 150% 150%;
    }
    
    .media-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .sortiment-cards {
        grid-template-columns: 1fr;
    }
    
    .arguments-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Mobile Complete Redesign - Modern & Clean */
@media (max-width: 768px) {
    /* Verstecke alle Partikel auf mobilen Geräten */
    .particle {
        display: none !important;
    }
    
    /* Verstecke schwebende Elemente */
    .floating-elements {
        display: none !important;
    }
    
    .floating-elements .element {
        display: none !important;
    }
    /* Hero Section Mobile */
    .hero {
        height: 70vh;
        padding: 0;
        position: relative;
    }
    
    .hero-content {
        position: absolute;
        top: 75%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 3;
        width: 90%;
        padding: 30px 20px;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 25px;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
        line-height: 1.2;
        font-weight: 900;
        white-space: nowrap;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
        line-height: 1.4;
        font-weight: 400;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 40px;
        color: #2c3e50;
        position: relative;
        font-weight: 800;
    }
    
    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(45deg, #2ecc71, #27ae60);
        border-radius: 3px;
    }
    
    /* Media Section Mobile */
    .media-section {
        padding: 10px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        margin-top: 20px;
    }
    
    .media-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }
    
    .media-card {
        background: white;
        padding: 40px 30px;
        border-radius: 25px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: all 0.4s ease;
        border: 3px solid transparent;
        position: relative;
        overflow: hidden;
    }
    
    .media-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.1), transparent);
        transition: left 0.6s ease;
    }
    
    .media-card:hover::before {
        left: 100%;
    }
    
    .media-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        border-color: #2ecc71;
    }
    
    .media-icon {
        font-size: 3.5rem;
        color: #2ecc71;
        margin-bottom: 25px;
        display: block;
        transition: transform 0.3s ease;
    }
    
    .media-card:hover .media-icon {
        transform: scale(1.1) rotate(5deg);
    }
    
    .media-card h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
        color: #2c3e50;
        font-weight: 700;
    }
    
    .media-card p {
        font-size: 1.1rem;
        color: #666;
        line-height: 1.7;
    }
    
    /* Sortiment Section Mobile */
    .sortiment-section {
        padding: 80px 0;
        background: white;
    }
    
    .sortiment-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }
    
    .sortiment-card {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 40px 30px;
        border-radius: 25px;
        text-align: center;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        border: 3px solid transparent;
        position: relative;
        overflow: hidden;
    }
    
    .sortiment-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(45deg, #2ecc71, #27ae60);
    }
    
    .sortiment-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        border-color: #2ecc71;
    }
    
    .sortiment-card h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: #2c3e50;
        font-weight: 700;
    }
    
    .sortiment-card p {
        font-size: 1.1rem;
        color: #666;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    
    .sortiment-features {
        list-style: none;
        padding: 0;
        margin: 25px 0;
    }
    
    .sortiment-features li {
        padding: 12px 0;
        color: #666;
        font-size: 1rem;
        position: relative;
        padding-left: 30px;
        transition: color 0.3s ease;
    }
    
    .sortiment-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #2ecc71;
        font-weight: bold;
        font-size: 1.3rem;
    }
    
    .sortiment-features li:hover {
        color: #2ecc71;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    /* Entferne schwebende Animationen auf mobilen Geräten */
    .about-section::before {
        display: none !important;
    }
    
    .about-preview::before {
        display: none !important;
    }
    
    /* Deaktiviere alle schwebenden Animationen auf mobilen Geräten */
    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(0px) rotate(0deg); }
    }
    
    @keyframes float-particle {
        0%, 100% { transform: translateY(0px) translateX(0px); }
        50% { transform: translateY(0px) translateX(0px); }
    }
    
    .about-content {
        text-align: center;
        position: relative;
        z-index: 2;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
        color: white;
        font-weight: 800;
    }
    
    .about-content p {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 40px;
        opacity: 0.95;
    }
    
    .about-cta {
        display: inline-block;
        background: white;
        color: #2ecc71;
        padding: 18px 35px;
        border-radius: 35px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.2rem;
        transition: all 0.4s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        position: relative;
        overflow: hidden;
    }
    
    .about-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.1), transparent);
        transition: left 0.6s ease;
    }
    
    .about-cta:hover::before {
        left: 100%;
    }
    
    .about-cta:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }
    
    /* Arguments Section Mobile */
    .arguments-section {
        padding: 80px 0;
        background: #f8f9fa;
    }
    
    .arguments-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }
    
    .argument-card {
        background: white;
        padding: 40px 30px;
        border-radius: 25px;
        text-align: center;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        border-left: 6px solid #2ecc71;
        position: relative;
        overflow: hidden;
    }
    
    .argument-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.05), transparent);
        transition: left 0.6s ease;
    }
    
    .argument-card:hover::before {
        left: 100%;
    }
    
    .argument-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }
    
    .argument-icon {
        font-size: 3rem;
        color: #2ecc71;
        margin-bottom: 25px;
        display: block;
        transition: transform 0.3s ease;
    }
    
    .argument-card:hover .argument-icon {
        transform: scale(1.1) rotate(5deg);
    }
    
    .argument-card h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: #2c3e50;
        font-weight: 700;
    }
    
    .argument-card p {
        font-size: 1.1rem;
        color: #666;
        line-height: 1.7;
    }
    
    /* Testimonials Section Mobile */
    .testimonials-section {
        padding: 80px 0;
        background: white;
    }
    
    .testimonials-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }
    
    .testimonial-card {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 40px 30px;
        border-radius: 25px;
        text-align: center;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }
    
    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 20px;
        left: 25px;
        font-size: 4rem;
        color: #2ecc71;
        opacity: 0.2;
        font-family: serif;
        font-weight: bold;
    }
    
    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }
    
    .testimonial-text {
        font-size: 1.2rem;
        color: #2c3e50;
        line-height: 1.7;
        margin-bottom: 25px;
        font-style: italic;
        position: relative;
        z-index: 2;
    }
    
    .testimonial-author {
        font-size: 1.1rem;
        color: #2ecc71;
        font-weight: 700;
        position: relative;
        z-index: 2;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: float 8s ease-in-out infinite reverse;
    }
    
    .cta-content {
        position: relative;
        z-index: 2;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
        margin-bottom: 25px;
        color: white;
        font-weight: 800;
    }
    
    .cta-content p {
        font-size: 1.2rem;
        margin-bottom: 40px;
        opacity: 0.95;
        line-height: 1.7;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .cta-button {
        display: inline-block;
        background: white;
        color: #2ecc71;
        padding: 18px 35px;
        border-radius: 35px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.2rem;
        transition: all 0.4s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        width: 100%;
        max-width: 350px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.1), transparent);
        transition: left 0.6s ease;
    }
    
    .cta-button:hover::before {
        left: 100%;
    }
    
    .cta-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }
    
    .cta-button.secondary {
        background: transparent;
        color: white;
        border: 3px solid white;
    }
    
    .cta-button.secondary:hover {
        background: white;
        color: #2ecc71;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        white-space: nowrap;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .media-card,
    .sortiment-card,
    .argument-card,
    .testimonial-card {
        padding: 30px 20px;
    }
} 