/* Reset basique */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    width: 100%;
}

/* --- Section Gauche (Bleue) --- */
.content-side {
    flex: 1;
    background-color: #0047FF; /* Bleu vif similaire à l'image initiale */
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header-logo {
    font-size: 2rem;
    font-weight: 900;
}

/* Classe spécifique pour rendre le cœur blanc */
.heart-white {
    color: white;
    /* Astuce pour forcer un émoji à être blanc sur fond coloré */
    filter: brightness(0) invert(1); 
    display: inline-block;
    padding: 0 3px; /* Léger espacement pour le cœur */
}

.main-text h1 {
    font-size: clamp(4rem, 10vw, 8rem); /* Taille fluide selon l'écran */
    line-height: 0.9;
    margin-bottom: 40px;
    font-weight: 900;
}

.subtext {
    font-size: 1.2rem;
    line-height: 1.6;
    letter-spacing: 1px;
}

.subtext p {
    margin-bottom: 20px;
}

.footer-thanks {
    margin-top: 40px;
    font-weight: 900;
}

/* --- Section Droite (Image) --- */
.image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0; /* Couleur de fond optionnelle */
}

.image-side img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* L'image s'ajuste sans être déformée */
}

/* --- Responsive : Mobile --- */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* On empile au lieu d'aligner */
    }

    .content-side {
        padding: 40px 20px;
        order: 2; /* Texte en dessous sur mobile */
    }

    .image-side {
        height: 50vh; /* L'image prend la moitié de l'écran sur mobile */
        order: 1;
        background-color: transparent; /* Pour éviter un fond gris visible sur mobile */
    }

    .main-text h1 {
        font-size: 4rem;
    }
}