* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #fff;
    color: #111;
}

a {
    text-decoration: none;
    color: inherit;
}

.bandeau-fixe {
    width: 100%;
    background-color: white;
    padding: 20px 20px;
    position: fixed;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Ombre */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-name {
    margin-left: 20px;
    margin-right: 20px;
}

.don-btn {
    background-color: red;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
}

.hero {
    height: fit-content;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    flex-direction: column;
}

.hero-content {
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: -4px;
}

.hero h1 {
    font-size: 3em;
    font-weight: bold;
}

.hero p {
    margin-top: 10px;
}

.hero nav {
    margin-top: 20px;
}

.hero nav a {
    margin: 0 10px;
    font-weight: bold;
    color: white;
}

.projet {
    position: relative;
    background-color: #00aaff;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50vh;
    color: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2); /* Ombre */
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.buttons a {
    margin: 10px;
    padding: 10px 20px;
    display: inline-block;
}

.btn {
    background: white;
    color: #00aaff;
    border-radius: 5px;
}

.btn-outline {
    border: 2px solid white;
    border-radius: 5px;
}

.infos {
    display: flex;
    justify-content: space-around;
    height: 50vh;
    padding: 40px 20px;
    background-color: #f4f4f4;
}

.card {
    width: 30%;
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.card h3 {
    margin-bottom: 10px;
}

.procuration {
    background-color: #fefefe;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 35vh;
    padding: 5vh 5vh;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.05); /* Ombre */
}

.procuration-buttons {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
}

.procuration-option-1, .procuration-option-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.btn-blue {
    background: #1da1f2;
    color: white;
    margin-top: 20px;
    padding: 10px 15px;
    border-radius: 5px;
}

.btn-red {
    background: #e60000;
    color: white;
    margin-top: 20px;
    padding: 10px 15px;
    border-radius: 5px;
}

.don {
    background-color: #1a1a50;
    color: white;
    height: 400px;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.don-buttons {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.don-buttons button, .don-buttons input, .don-buttons a {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
}

.don-buttons input {
    width: 150px;
}

.btn-don {
    background-color: red;
    color: white;

}

footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}

.footer-links a {
    color: white;
    margin: 0 10px;
}

.socials a {
    margin: 0 5px;
    color: white;
}
