/* --- Styles spécifiques pour la page Accueil --- */

.accueil-page {
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}

/* Section Hero */
.hero-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-left img.hero-illustration {
    width: 100%;
    max-width: 450px;
    height: auto;
    transform: scale(1.1);
    animation: float 6s ease-in-out infinite;
    margin: 0;
}

.hero-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.hero-right h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.hero-right h1 span {
    color: var(--color-green);
}

.hero-right h2 {
    font-size: 1.2rem;
    color: var(--color-primary);
    line-height: 1.6;
    font-weight: 400;
}

/* Section Caractéristiques */
.features-section {
    padding: 80px 0;
    position: relative;
    background-color: var(--color-background);
}

.features-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 260px;
    padding: 30px;
    border-radius: 50%;
    border: 5px solid #75AA3C;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-bubble:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(44, 62, 80, 0.15);
}

.feature-icon-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--color-background);
    border: 3px solid #75AA3C;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
}

.feature-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 500;
    line-height: 1.4;
}

/* Contenu WordPress */
.page-content {
    padding: 60px 0;
}

.page-content .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}