/* Spezifische Styles für die Nachhaltigkeits-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-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;
}

.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);
}

/* Mission Section */
.mission-section {
    padding: 60px 0;
    background: white;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.mission-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.mission-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.mission-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.gum-bubble {
    position: relative;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: bubbleFloat 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
}

.gum-bubble:hover {
    transform: scale(1.1);
    animation-play-state: paused;
}

.gum-bubble::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: bubbleShine 2s ease-in-out infinite;
}

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

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

@keyframes bubbleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
    }
    50% { 
        transform: translateY(-10px) scale(1.02); 
    }
}

@keyframes bubbleShine {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.2); 
    }
}

.mission-image {
    text-align: center;
}

.mission-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Ingredients Section */
.ingredients-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

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

.ingredient-image {
    height: 250px;
    overflow: hidden;
}

.ingredient-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ingredient-card:hover .ingredient-image img {
    transform: scale(1.05);
}

.ingredient-content {
    padding: 30px;
}

.ingredient-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.ingredient-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ingredient-content ul {
    list-style: none;
    padding: 0;
}

.ingredient-content li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

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

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

.packaging-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.packaging-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.packaging-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.packaging-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 1.5rem;
    color: #2ecc71;
}

.feature span {
    font-weight: 600;
    color: #2c3e50;
}

.packaging-image {
    text-align: center;
}

.packaging-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


/* Future Section */
.future-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.future-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.future-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.future-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.future-goals {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.goal {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.goal:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.goal i {
    font-size: 2rem;
    color: #2ecc71;
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 1;
    flex-shrink: 0;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.goal span {
    font-weight: 600;
    color: #2c3e50;
}

/* Fallback für Icons */
.goal i::before {
    content: attr(data-icon);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Sicherstellen, dass Icons sichtbar sind */
.fas, .fa {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.future-image {
    text-align: center;
}

.future-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.3rem;
    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;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

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

.cta-button.secondary:hover {
    background: white;
    color: #2ecc71;
    transform: translateY(-3px);
}

/* Instagram Section */
.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);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        white-space: nowrap;
    }
    
    .mission-content,
    .packaging-content,
    .future-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .packaging-features {
        grid-template-columns: 1fr;
    }
    
    .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;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
    }
}

/* 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;
    }
    
    /* Mission Section Mobile */
    .mission-section {
        padding: 80px 0;
        background: white;
    }
    
    .mission-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .mission-text {
        text-align: center;
    }
    
    .mission-text h3 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #2c3e50;
        font-weight: 800;
    }
    
    .mission-text p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #666;
        margin-bottom: 30px;
    }
    
    .mission-stats {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
        flex-wrap: wrap;
    }
    
    .stat-item {
        text-align: center;
        padding: 15px;
    }
    
    .gum-bubble {
        position: relative;
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #2ecc71, #27ae60);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        animation: bubbleFloat 3s ease-in-out infinite;
        box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
        transition: all 0.3s ease;
    }
    
    .gum-bubble:hover {
        transform: scale(1.1);
        animation-play-state: paused;
    }
    
    .gum-bubble::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 15px;
        width: 15px;
        height: 15px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        animation: bubbleShine 2s ease-in-out infinite;
    }
    
    .bubble-content {
        text-align: center;
        color: white;
        z-index: 2;
        position: relative;
    }
    
    .stat-number {
        font-size: 1.5rem;
        font-weight: 900;
        margin-bottom: 5px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .stat-label {
        font-size: 0.8rem;
        font-weight: 600;
        opacity: 0.9;
    }
    
    @keyframes bubbleFloat {
        0%, 100% {
            transform: translateY(0px) scale(1);
        }
        50% {
            transform: translateY(-8px) scale(1.02);
        }
    }
    
    @keyframes bubbleShine {
        0%, 100% {
            opacity: 0.3;
            transform: scale(1);
        }
        50% {
            opacity: 0.7;
            transform: scale(1.2);
        }
    }
    
    .mission-image {
        text-align: center;
    }
    
    .mission-image img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    /* Ingredients Section Mobile */
    .ingredients-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .ingredients-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }
    
    .ingredient-card {
        background: white;
        padding: 35px 25px;
        border-radius: 25px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        border: 3px solid transparent;
        position: relative;
        overflow: hidden;
    }
    
    .ingredient-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(45deg, #2ecc71, #27ae60);
    }
    
    .ingredient-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        border-color: #2ecc71;
    }
    
    .ingredient-image {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .ingredient-image img {
        width: 100%;
        max-width: 200px;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .ingredient-content h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
        color: #2c3e50;
        font-weight: 700;
        text-align: center;
    }
    
    .ingredient-content p {
        font-size: 1rem;
        line-height: 1.6;
        color: #666;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .ingredient-content ul {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }
    
    .ingredient-content li {
        padding: 8px 0;
        color: #666;
        font-size: 0.95rem;
        position: relative;
        padding-left: 25px;
        transition: color 0.3s ease;
    }
    
    .ingredient-content li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #2ecc71;
        font-weight: bold;
        font-size: 1.1rem;
    }
    
    .ingredient-content li:hover {
        color: #2ecc71;
    }
    
    /* Packaging Section Mobile */
    .packaging-section {
        padding: 80px 0;
        background: white;
    }
    
    .packaging-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .packaging-text {
        text-align: center;
    }
    
    .packaging-text h3 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #2c3e50;
        font-weight: 800;
    }
    
    .packaging-text p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #666;
        margin-bottom: 25px;
    }
    
    .packaging-features {
        list-style: none;
        padding: 0;
        margin: 25px 0;
    }
    
    .packaging-features li {
        padding: 12px 0;
        color: #666;
        font-size: 1rem;
        position: relative;
        padding-left: 30px;
        transition: color 0.3s ease;
    }
    
    .packaging-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #2ecc71;
        font-weight: bold;
        font-size: 1.3rem;
    }
    
    .packaging-features li:hover {
        color: #2ecc71;
    }
    
    .packaging-image {
        text-align: center;
    }
    
    .packaging-image img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    /* Future Section Mobile */
    .future-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .future-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .future-text {
        text-align: center;
    }
    
    .future-text h3 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #2c3e50;
        font-weight: 800;
    }
    
    .future-text p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #666;
        margin-bottom: 30px;
    }
    
    .future-goals {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .goal {
        background: white;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .goal:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .goal i {
        font-size: 2rem;
        color: #2ecc71;
        display: inline-block;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 1;
        flex-shrink: 0;
        font-family: "Font Awesome 6 Free" !important;
        font-weight: 900 !important;
    }
    
    .goal span {
        font-weight: 600;
        color: #2c3e50;
        font-size: 1rem;
    }
    
    .future-image {
        text-align: center;
    }
    
    .future-image img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
}