
:root {
    --primary-color: #aa3763;
    --secondary-color: #584e46;
    --light-gray: #f4f4f4;
    --dark-gray: #4a4a4a;
    --dark-pink: #9b3a5e;
    --white: #ffffff;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--dark-gray);
    background-color: var(--white);
}

header {
background-color: rgba(155, 58, 94, 0.8); /* Semi-transparent */
position: absolute; /* Permet de flotter au-dessus */
top: 0; /* S'assure qu'il est tout en haut */
left: 0; /* Aligné à gauche */
width: 100%; /* Occupe toute la largeur */
z-index: 10; /* Priorité d'affichage sur les autres éléments */
color: var(--white);
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

nav {
    display: flex;
    gap: 20px;
    margin-right: 30px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

nav a:hover {
    color: var(--primary-color);
}

.banner {
    position: relative;
    width: 100%;
    height: 400px; /* Ajustez la hauteur selon vos besoins */
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.hero button {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 10px 25px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
}

.hero button:hover {
    background-color: var(--dark-gray);
    color: var(--white);
}

.section {
    padding: 40px 20px;
}

.section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

footer {
background-color: #7b2d4b;
color: var(--white);
}

.footer-primary {
padding: 40px 20px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
width: 100%;
max-width: 1200px;
}

.footer-grid div {
text-align: left;
}

.footer-grid h3 {
margin-bottom: 15px;
font-size: 1.2em;
}

.footer-grid p, .footer-grid a {
font-size: 1em;
margin: 5px 0;
color: var(--white);
text-decoration: none;
}

.footer-grid a:hover {
text-decoration: underline;
}

.footer-legal {
background-color: #5a1f38; /* Ton encore plus foncé */
color: #ccc; /* Texte plus clair */
padding: 15px 20px;
text-align: center;
font-size: 0.9em;
}

.footer-legal .legal-links {
display: flex;
justify-content: center;
gap: 15px;
margin-bottom: 10px;
}

.footer-legal a {
color: var(--white);
text-decoration: none;
}

.footer-legal a:hover {
text-decoration: underline;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

form label {
    font-size: 1.1em;
    margin-bottom: 10px;
    display: block;
}

form input[type="email"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 0 auto 20px;
    display: block;
    border: 1px solid var(--dark-gray);
    border-radius: 5px;
    box-sizing: border-box;
}

form button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    display: inline-block;
}

form button:hover {
    background-color: var(--dark-gray);
    color: var(--white);
}

.about {
    background-color: var(--light-gray);
    padding: 40px 20px;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2em;
    line-height: 1.8;
}

.partners {
    padding: 40px 20px;
    background-color: var(--light-gray);
}

.partners h2 {
    text-align: center;
    margin-bottom: 30px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.partners-logos img {
    height: 80px;
    max-width: 100%;
    object-fit: contain;
}


.bubbles {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 30px;
}

.bubble {
background-color: var(--light-gray);
color: var(--dark-gray);
border-radius: 50%;
width: 300px;
height: 300px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 20px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
}

.bubble:hover {
transform: scale(1.05);
}

.bubble h3 {
font-size: 1.4em;
margin-bottom: 15px; /* Ajoute un espace entre le titre et la description */
color: var(--primary-color);
}

.bubble p {
font-size: 1em;
line-height: 1.5;
}

.section {
    padding: 40px 20px;
}

.section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.stat {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    text-align: center;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: scale(1.05);
}

.stat h3 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.stat p {
    font-size: 1em;
    color: var(--dark-gray);
}

.founder {
    text-align: center;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.founder img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.founder .message {
    font-size: 1.2em;
    line-height: 1.6;
    color: var(--dark-gray);
    font-style: italic;
}

.founder .message strong {
    display: block;
    margin-top: 20px;
    font-style: normal;
}

.contact-form {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--dark-gray);
    border-radius: 5px;
    box-sizing: border-box;
}

.contact-form button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
}

.contact-form button:hover {
    background-color: var(--dark-gray);
}


.agenda {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.event {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.event-date {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    border-radius: 10px;
    padding: 10px;
    min-width: 80px;
}

.event-date h3 {
    margin: 0;
    font-size: 2em;
}

.event-date p {
    margin: 0;
    font-size: 1em;
}

.event-details h4 {
    margin: 0 0 10px;
    color: var(--dark-pink);
}

.event-details p {
    margin: 0;
}

.podcast {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--light-gray);
    border-radius: 10px;
    margin: 20px auto;
    max-width: 800px;
}

.podcast h3 {
    margin-bottom: 10px;
    color: var(--dark-pink);
}

.podcast p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.contact-form {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 40px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--dark-gray);
    border-radius: 5px;
    box-sizing: border-box;
}

.contact-form button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
}

.contact-form button:hover {
    background-color: var(--dark-gray);
}


/* Général : Applique des styles par défaut pour les grands écrans */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--dark-gray);
    background-color: var(--white);
}

/* Ajout pour le menu hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 2em;
    color: var(--white);
    cursor: pointer;
}

@media (max-width: 768px) {
    /* Header et menu adaptatif */
    header {
        position: relative;
        padding: 10px 20px;
    }

    nav {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: var(--primary-color);
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 10;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    nav.show {
        display: flex;
    }

    nav a {
        padding: 10px;
        text-align: left;
        font-size: 1em;
    }

    .hamburger {
        display: block;
    }

    /* Bannière et Hero */
    .banner {
        height: 250px; /* Réduction pour mobile */
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .hero button {
        padding: 10px 15px;
        font-size: 0.9em;
    }

    /* Sections */
    .section {
        padding: 20px 10px;
    }

    .cards,
    .bubbles,
    .stats,
    .agenda {
        flex-direction: column;
        gap: 15px;
    }

    .card,
    .bubble,
    .stat,
    .event {
        width: 100%; /* Pleine largeur pour mobile */
    }

    .bubble {
        width: 90%;
        height: auto;
        padding: 20px;
        border-radius: 20px; /* Moins arrondi pour s'adapter */
    }

    .bubble h3 {
        font-size: 1.2em;
    }

    .bubble p {
        font-size: 0.9em;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr; /* Une seule colonne */
        text-align: center;
    }
}
