/* Sustainability Page Styles */

/* Hero Section */
.sustainability-hero {
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sustainability-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.sustainability-hero .container {
    position: relative;
    z-index: 2;
}

.sustainability-hero .hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #81c784;
    animation: leafFloat 3s ease-in-out infinite;
}

@keyframes leafFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.sustainability-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.sustainability-hero .hero-subtitle {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #333;
}

.mission-promise {
    background: #e8f5e8;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4caf50;
    margin-top: 2rem;
}

.mission-promise h3 {
    color: #2e7d32;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission-promise p {
    margin: 0;
    font-style: italic;
    color: #333;
}

/* Sustainability Pillars */
.pillars-section {
    padding: 80px 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4caf50, #2e7d32);
}

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

.pillar-card.eco-friendly::before {
    background: linear-gradient(90deg, #4caf50, #66bb6a);
}

.pillar-card.responsible-sourcing::before {
    background: linear-gradient(90deg, #2196f3, #42a5f5);
}

.pillar-card.continuous-improvement::before {
    background: linear-gradient(90deg, #ff9800, #ffb74d);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.pillar-icon.eco {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
}

.pillar-icon.sourcing {
    background: linear-gradient(135deg, #2196f3, #42a5f5);
}

.pillar-icon.improvement {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
}

.pillar-card h4 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pillar-card.eco-friendly h4 {
    color: #2e7d32;
}

.pillar-card.responsible-sourcing h4 {
    color: #1976d2;
}

.pillar-card.continuous-improvement h4 {
    color: #f57c00;
}

.pillar-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pillar-card ul {
    text-align: left;
    margin-top: 1rem;
    color: #666;
}

.pillar-card ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.pillar-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* Environmental Impact Stats */
.impact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    text-align: center;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #4caf50;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-description {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Future Goals */
.goals-section {
    padding: 80px 0;
}

.goals-container {
    max-width: 800px;
    margin: 0 auto;
}

.goals-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.goal-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.goal-card:hover {
    transform: translateX(5px);
}

.goal-card.zero-waste {
    border-left: 4px solid #4caf50;
}

.goal-card.renewable-energy {
    border-left: 4px solid #2196f3;
}

.goal-card.carbon-neutral {
    border-left: 4px solid #ff9800;
}

.goal-card h4 {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.goal-card.zero-waste h4 {
    color: #2e7d32;
}

.goal-card.renewable-energy h4 {
    color: #1976d2;
}

.goal-card.carbon-neutral h4 {
    color: #f57c00;
}

.goal-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Call to Action */
.sustainability-cta {
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.sustainability-cta h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.sustainability-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sustainability-cta .btn {
    margin: 0 0.5rem;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.sustainability-cta .btn-light {
    background: white;
    color: #2e7d32;
}

.sustainability-cta .btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sustainability-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .sustainability-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sustainability-cta h2 {
        font-size: 2rem;
    }
    
    .sustainability-cta .btn {
        display: block;
        margin: 0.5rem auto;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .sustainability-hero {
        padding: 80px 0 60px;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* DARK MODE STYLES */
@media (prefers-color-scheme: dark) {
    /* Hero Section - Keep green theme but adjust for dark mode */
    .sustainability-hero {
        background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    }

    /* Mission Section */
    .mission-section {
        background: #1a1a1a;
    }

    .mission-text {
        color: #e0e0e0;
    }

    .mission-promise {
        background: #2a2a2a;
        border-left-color: #66bb6a;
    }

    .mission-promise h3 {
        color: #66bb6a;
    }

    .mission-promise p {
        color: #e0e0e0;
    }

    /* Pillars Section */
    .pillars-section {
        background: #121212;
    }

    .pillar-card {
        background: #2a2a2a;
        color: #e0e0e0;
        border: 1px solid #444;
    }

    .pillar-card:hover {
        background: #333333;
        border-color: #555;
    }

    .pillar-card.eco-friendly h4 {
        color: #66bb6a;
    }

    .pillar-card.responsible-sourcing h4 {
        color: #42a5f5;
    }

    .pillar-card.continuous-improvement h4 {
        color: #ffb74d;
    }

    .pillar-card p {
        color: #d0d0d0;
    }

    .pillar-card ul {
        color: #d0d0d0;
    }

    .pillar-card ul li::before {
        color: #66bb6a;
    }

    /* Impact Section */
    .impact-section {
        background: #1a1a1a;
    }

    .stat-card {
        background: #2a2a2a;
        border: 1px solid #444;
    }

    .stat-card:hover {
        background: #333333;
    }

    .stat-number {
        color: #66bb6a;
    }

    .stat-description {
        color: #d0d0d0;
    }

    /* Goals Section */
    .goals-section {
        background: #121212;
    }

    .goal-card {
        background: #2a2a2a;
        border: 1px solid #444;
    }

    .goal-card:hover {
        background: #333333;
    }

    .goal-card.zero-waste {
        border-left-color: #66bb6a;
    }

    .goal-card.renewable-energy {
        border-left-color: #42a5f5;
    }

    .goal-card.carbon-neutral {
        border-left-color: #ffb74d;
    }

    .goal-card.zero-waste h4 {
        color: #66bb6a;
    }

    .goal-card.renewable-energy h4 {
        color: #42a5f5;
    }

    .goal-card.carbon-neutral h4 {
        color: #ffb74d;
    }

    .goal-card p {
        color: #d0d0d0;
    }

    /* CTA Section - Keep green theme but darker */
    .sustainability-cta {
        background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    }

    .sustainability-cta .btn-light {
        background: #2a2a2a;
        color: #66bb6a;
        border: 1px solid #66bb6a;
    }

    .sustainability-cta .btn-light:hover {
        background: #333333;
        color: #66bb6a;
        border-color: #66bb6a;
    }

    /* Section Titles */
    .section-title {
        color: #f5f5f5;
    }

    /* General Text Elements */
    h1, h2, h3, h4, h5, h6 {
        color: #f5f5f5;
    }

    p, span, div {
        color: inherit;
    }
} 