/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700;800&family=Inter:wght@400;500&display=swap');

:root {
    /* Couleurs extraites du logo Bloom Up */
    --bloom-blue: #395b6a;
    --bloom-coral: #eb7360;
    --bloom-peach: #f4b4a6;
    --bg-light: #fdfbf8;
    --text-dark: #2a2a2a;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--bloom-blue);
    font-weight: 800;
}

/* --- NAVIGATION --- */
header {
    background-color: var(--bg-light);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.logo img {
    height: 150px;
    object-fit: contain;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: var(--bloom-blue);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: var(--bloom-coral);
}

/* --- LAYOUTS GLOBAUX --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.hero {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--bloom-coral);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

.hero-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- BOUTONS --- */
.btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--bloom-coral);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--bloom-blue);
    transform: translateY(-3px);
}

/* --- SECTIONS SPÉCIFIQUES --- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid var(--bloom-peach);
}

.card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* --- STATS --- */
.stats-section {
    background-color: var(--bloom-blue);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.stats-section h2 {
    color: var(--bloom-peach);
    margin-bottom: 50px;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--bloom-coral);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--white);
    font-size: 1rem;
}

/* --- FOOTER --- */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
    margin-top: 80px;
}

footer a {
    color: var(--bloom-peach);
    text-decoration: none;
}