/* Top section background */
.top_section {
    width: 100%;
    height: auto; /* Allows flexibility in height */
    background: url("../images/v27_3.png") no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

/* Header container */
header {
    display: flex; /* Use Flexbox for alignment */
    align-items: center; /* Vertically align items */
    justify-content: space-between; /* Space between left and right sections */
    width: 100%;
    padding: 10px 10%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(255, 255, 255, 0)); /* Gradient overlay */
    box-sizing: border-box; /* Include padding in width */
}

/* Left section: Logo and links */
.header_left {
    display: flex;
    align-items: center; /* Align items vertically */
    gap: 20px; /* Space between items */
}

/* Logo */
.LeCité_head {
    width: 153px; /* Adjust size as needed */
    height: 50px;
    background: url("../images/logo_lecite_site_lm.png") no-repeat center center;
    background-size: contain;
}

/* "Le collectif" and "Nos actions" links */
.v9_14, .v8_3 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.v9_18, .v8_4 {
    color: rgba(255, 255, 255, 1);
    font-family: Merriweather, sans-serif;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
}

/* Right section: Donate button and icon */
.v9_24 {
    display: flex;
    align-items: center; /* Align items vertically */
    gap: 10px; /* Space between the icon and button */
}

.v165_7 {
    width: 40px;
    height: 40px;
    background: url("../images/v165_7.png") no-repeat center center;
    background-size: contain;
}

/* Donate button */
.v9_27 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: rgba(0, 38, 84, 1);
    color: white;
    border-radius: 10px;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
}

.v9_27:hover {
    background: rgba(0, 38, 84, 0.8); /* Slightly darker on hover */
}


/* Footer */

.bas_de_page {
    width: 100%;
    height: auto;
    background: rgba(0, 38, 84, 1);
    padding: 20px;
    opacity: 1;
    left: 0px;
    overflow: hidden;
}

.logo_bas {
    width: 20%;
    height: 50px;
    margin: 10px auto;
    background: url("../images/logo_lecite_site_lm.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    opacity: 1;
    overflow: hidden;
}

.liste_bas {
    width: 100%;
    height: 228px;
    background: rgba(0, 38, 84, 1);
    padding: 10px;
    opacity: 1;
    top: 172px;
    overflow: hidden;
    display: flex;
    justify-content: space-between; /* Spread items across the main axis */
    align-items: center; /* Center items along the cross axis */
}

.item_liste {
    width: 25%;
    height: 208px;
    background: rgba(0, 38, 84, 1);
    padding: 25px 10px;
    opacity: 1;
    top: 10px;
    overflow: hidden;
    flex: 1; /* All items share available space equally */
    margin: 5px;
    align-items: center;    
    justify-content: space-between;
}

.Titre_bas {
    width: 100%;
    color: rgba(255, 255, 255, 1);
    top: 25px;
    left: 10px;
    font-family: Merriweather;
    font-weight: Regular;
    font-size: 20px;
    opacity: 1;
    text-align: center;
    display: block;
}

.soussousliste {
    width: 100%;
    height: 100%;
    background: rgba(0, 38, 84, 1);
    margin: 0px;
    padding: 50px 0px;
    opacity: 1;
    top: 84px;
    left: 16px;
    overflow: hidden;
    display: flex;
    align-items: center; /* Center items along the cross axis */
    flex-direction: column;
}

.item_sousliste {
    width: 100%;
    color: rgba(255, 255, 255, 1);
    top: 0px;
    font-family: Merriweather;
    font-weight: Regular;
    font-size: 12px;
    opacity: 1;
    text-align: center;
}