/* Home/StationCharge - Thème vert nature, moderne et responsive (style d'origine adapté) */

.hero-section {
    background: linear-gradient(135deg, #43A047 0%, #66BB6A 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}
.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-btn {
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}
.hero-btn.primary {
    background: #43A047;
    color: white;
}
.hero-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 160, 71, 0.18);
    background: #388E3C;
    color: #fff;
}

.stats-section {
    padding: 60px 0;
    background: #E8F5E9;
    width: 100vw;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.stat-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(67, 160, 71, 0.10);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #43A047;
    margin-bottom: 10px;
}
.stat-label {
    font-size: 1.1rem;
    color: #666;
}

.quick-actions {
    padding: 60px 0;
}
.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.action-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(67, 160, 71, 0.10);
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s;
    border: 2px solid transparent;
}
.action-card:hover {
    transform: translateY(-5px);
    border-color: #43A047;
}
.action-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #43A047;
}
.action-card h3 {
    margin-bottom: 15px;
    color: #388E3C;
    font-size: 1.3rem;
}
.action-card p {
    color: #666;
    line-height: 1.6;
}

.features-section {
    padding: 60px 0;
    background: #E8F5E9;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.feature-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(67, 160, 71, 0.10);
}
.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #43A047;
}
.feature-card h3 {
    margin-bottom: 15px;
    color: #388E3C;
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #43A047 0%, #66BB6A 100%);
    color: white;
    text-align: center;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}
.btn {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-primary {
    background: #43A047;
    color: white;
}
.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 160, 71, 0.13);
    background: #388E3C;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #388E3C;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 600px) {
    .hero-section {
        padding: 32px 0 18px 0;
    }
    .hero-section h1 {
        font-size: 1.3rem;
    }
    .container {
        padding: 0 6px;
    }
}

.footer-pro {
    width: 100%;
    margin: 0;
    padding: 8px 0 2px 0;
    background: linear-gradient(120deg, #43A047 0%, #388E3C 100%);
    color: #fff;
    box-shadow: 0 2px 16px 0 rgba(56,142,60,0.10);
    z-index: 10;
    box-sizing: border-box;
}
.footer-pro-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
    padding: 0;
}

.main-center {
    max-width: 1100px; /* ou 1200px selon ton design */
    margin: 0 auto;
    padding: 0 10px; /* pour l'espace sur mobile */
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
}

.menu-toggle {
    display: block;
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1200;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 8px;
    border-radius: 50%;
    box-shadow: none;
} 