/* Spezifische Styles für die Angebot-Seite */

/* Section Titles - New Design for All Devices */
.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    position: relative;
    font-weight: 800;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    border-radius: 3px;
}

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

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

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.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: 100%;
    background-position: 80% 20%;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    display: none;
}

/* Product Sections */
.product-section {
    padding: 60px 0;
    position: relative;
    margin-top: -30px;
    z-index: 2;
}

.himbeere-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.matcha-section {
    background: white;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-content.reverse {
    direction: rtl;
}

.product-content.reverse > * {
    direction: ltr;
}

.product-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #f8f9fa;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-video:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.product-video video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    pointer-events: none;
    border-radius: 20px;
    user-select: none;
    display: block;
    background: #000;
}

/* Verstecke alle Video-Controls */
.product-video video::-webkit-media-controls {
    display: none !important;
}

.product-video video::-webkit-media-controls-panel {
    display: none !important;
}

.product-video video::-webkit-media-controls-play-button {
    display: none !important;
}

.product-video video::-webkit-media-controls-timeline {
    display: none !important;
}

.product-video video::-webkit-media-controls-current-time-display {
    display: none !important;
}

.product-video video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

.product-video video::-webkit-media-controls-mute-button {
    display: none !important;
}

.product-video video::-webkit-media-controls-volume-slider {
    display: none !important;
}

.product-video video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

.video-overlay {
    display: none;
}

.product-info {
    padding: 40px;
}

.product-header {
    text-align: center;
    margin-bottom: 30px;
}

.product-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    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); }
}

.product-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.product-tagline {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

.product-description {
    margin-bottom: 30px;
}

.product-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 25px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(46, 204, 113, 0.15);
    border-color: #2ecc71;
}

.feature i {
    font-size: 2.5rem;
    color: #2ecc71;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.feature:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #27ae60;
}

.feature span {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.3;
    text-align: center;
}

/* Product Details */
.product-details {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.detail-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.detail-card:hover::before {
    transform: scaleX(1);
}

.detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.detail-icon {
    font-size: 3rem;
    color: #2ecc71;
    margin-bottom: 20px;
    text-align: center;
}

.detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.detail-card ul {
    list-style: none;
    padding: 0;
}

.detail-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.detail-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.detail-card ul li:last-child {
    border-bottom: none;
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background: white;
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: white;
}

.header-cell {
    padding: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.table-row:hover {
    background: #f8f9fa;
}

.table-row:last-child {
    border-bottom: none;
}

.row-label {
    padding: 20px;
    font-weight: 600;
    color: #2c3e50;
    background: #f8f9fa;
}

.row-cell {
    padding: 20px;
    text-align: center;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary {
    background: white;
    color: #2ecc71;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        white-space: nowrap;
    }

    .product-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-content.reverse {
        direction: ltr;
    }

    .product-video video {
        height: 350px;
        object-fit: cover;
        pointer-events: none;
        border-radius: 20px;
    }

    .product-header h2 {
        font-size: 2rem;
    }

    .product-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .feature {
        padding: 20px 15px;
    }
    
    .feature i {
        font-size: 2rem;
    }
    
    .feature span {
        font-size: 1rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }

    .header-cell,
    .row-label,
    .row-cell {
        padding: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
        white-space: nowrap;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .product-info {
        padding: 20px;
    }

    .product-header h2 {
        font-size: 1.8rem;
    }

    .detail-card {
        padding: 20px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* New Comparison Cards */
.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.comparison-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-header {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 25px;
    text-align: center;
    position: relative;
}

.card-header h3 {
    font-size: 1.4rem;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.flavor-icon {
    font-size: 2rem;
    margin-top: 10px;
}

.card-content {
    padding: 25px;
}

.feature {
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    line-height: 1.5;
}

.feature:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.feature strong {
    color: #2c3e50;
    display: inline-block;
    min-width: 120px;
}

@media (max-width: 768px) {
    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .card-header {
        padding: 20px;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .feature strong {
        min-width: 100px;
        font-size: 0.9rem;
    }
}

/* Mobile Complete Redesign - Modern & Clean */
@media (max-width: 768px) {
    /* 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;
    }
    
    /* Product Sections Mobile */
    .product-section {
        padding: 80px 0;
        background: white;
    }
    
    .product-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .product-text {
        text-align: center;
    }
    
    .product-text h3 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #2c3e50;
        font-weight: 800;
    }
    
    .product-text p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #666;
        margin-bottom: 25px;
    }
    
    .product-features {
        list-style: none;
        padding: 0;
        margin: 25px 0;
    }
    
    .product-features li {
        padding: 12px 0;
        color: #666;
        font-size: 1rem;
        position: relative;
        padding-left: 30px;
        transition: color 0.3s ease;
    }
    
    .product-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #2ecc71;
        font-weight: bold;
        font-size: 1.3rem;
    }
    
    .product-features li:hover {
        color: #2ecc71;
    }
    
    .product-video {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        background: #f8f9fa;
    }
    
    .product-video video {
        width: 100%;
        height: 300px;
        object-fit: cover;
        pointer-events: none;
        border-radius: 20px;
    }
    
    /* Comparison Section auf Mobile verstecken */
    .comparison-section {
        display: none;
    }
    
    /* Videos auf Mobile verstecken */
    .product-video {
        display: none;
    }
    
    .comparison-card {
        background: white;
        border-radius: 25px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: all 0.4s ease;
        border: 3px solid transparent;
        position: relative;
    }
    
    .comparison-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(45deg, #2ecc71, #27ae60);
    }
    
    .comparison-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        border-color: #2ecc71;
    }
    
    .card-header {
        background: linear-gradient(135deg, #2ecc71, #27ae60);
        color: white;
        padding: 30px 25px;
        text-align: center;
        position: relative;
    }
    
    .card-header h3 {
        font-size: 1.6rem;
        margin: 0 0 15px 0;
        font-weight: 700;
    }
    
    .flavor-icon {
        font-size: 2.5rem;
        margin-top: 10px;
    }
    
    .card-content {
        padding: 30px 25px;
    }
    
    .feature {
        margin-bottom: 20px;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        color: #666;
        line-height: 1.6;
    }
    
    .feature:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .feature strong {
        color: #2c3e50;
        display: inline-block;
        min-width: 120px;
        font-weight: 700;
    }
    
    /* 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;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(180deg); }
    }
    
    .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;
    }
} 