body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fff5f8;
    color: #333;
}

/* HEADER */
header {
    background: white;
    padding: 15px 30px;
    border-bottom: 3px solid #f06292;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container img {
    height: 55px;
}

.logo-container h1 {
    color: #e91e63;
    margin: 0;
}

/* NAV */
nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #e91e63;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* RUBAN */
.ruban {
    height: 6px;
    background: linear-gradient(to right, #f06292, #ec407a);
}

/* BOUTONS */
.actions {
    display: flex;
    gap: 10px;
}

.don-btn {
    background: #e91e63;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 20px;
}

.share-btn {
    background: #f8bbd0;
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
}

/* SECTIONS */
.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 10%;
    gap: 40px;
}

.section.alt {
    background: #fde4ec;
}

.text {
    width: 50%;
}

.image {
    width: 40%;
}

.image img {
    width: 100%;
    border-radius: 15px;
}

/* TITRES ROSES + TRAIT */
h2 {
    color: #e91e63;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #f06292;
    margin-top: 8px;
}

/* FOOTER */
footer {
    background: #f06292;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

footer a {
    color: white;
    text-decoration: underline;
}

.emotion {
    margin-top: 20px;
    font-style: italic;
}
