/* Styles généraux */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-image: url('');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: black;
}

/* En-tête */
header {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1em;
}

/* Encadrer les sections */
section {
    border: 2px solid #000;
    border-radius: 10px;
    padding: 20px;
    margin: 40px auto;
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.9);
}

/* Boutons "En savoir plus" */
button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

/* Pour la section contact */
/* Organiser les champs du formulaire sur une seule ligne */
.form-group {
    display: flex;
    justify-content: space-between;
}

.form-group input {
    width: 48%; /* Chaque champ prend 48% de la largeur pour s'aligner */
}

/* Adapter la taille du texte */
textarea {
    width: 100%;
    height: 100px;
}

/* Photos et logos */
.profile-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.profile-pic {
    width: auto;
    height: auto;
    max-width: 300px;
    max-height: 300px;
    border-radius: 50%;
    border: 3px solid white;
    margin-bottom: 10px;
    background-color: white;
}

.logo {
    width: 30px;
    height: auto;
    margin: 5px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

/* Navigation */
nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px;
    background-color: #007bff;
    border-radius: 5px;
    transition: 0.3s ease;
}

nav ul li a:hover {
    background-color: #0056b3;
}

/* Cartes de projet */
.project-card {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 20px auto;
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
    max-width: 600px;
}
