/* Global styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a237e; /* Bleu marine uni */
    color: #fff; /* Texte en blanc pour contraste */
    line-height: 1.6;
}

/* Header styles */
header {
    background-color: #0d1b56; /* Bleu marine plus foncé */
    color: #fff;
    padding: 1rem;
    text-align: center;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header nav ul li {
    display: inline;
    margin: 0 10px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Section styles */
section {
    padding: 2rem;
    margin: 1rem auto;
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.1); /* Fond semi-transparent */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Projects cards */
.project {
    border: 1px solid #fff; /* Bordure blanche */
    border-radius: 8px;
    margin: 1rem 0;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1); /* Fond semi-transparent */
}

.project h3 {
    color: #fff; /* Titres en blanc */
}

/* Skills list */
#skills ul {
    list-style: none;
    padding: 0;
}

#skills ul li {
    padding: 0.5rem 0;
    font-weight: bold;
}

/* Page de Contact */
#contact-form {
    background-color: #f4f4f4;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 2rem auto;
}

#contact-form h2 {
    color: #333;
}

#contact-form label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #ddd;
}

#contact-form button {
    background-color: #1a237e; /* Couleur principale */
    color: white;
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact-form button:hover {
    background-color: #0d1b56; /* Couleur au survol */
}

/* Coordonnées de contact */
#contact-info ul {
    list-style-type: none;
    padding: 0;
}

#contact-info ul li {
    margin-bottom: 1rem;
}

#contact-info a {
    color: #fff;
    text-decoration: none;
}

#contact-info a:hover {
    text-decoration: underline;
}

/* Icônes de réseaux sociaux */
#social-links ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 1rem;
}

#social-links ul li {
    display: inline-block;
}

#social-links img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

#map iframe {
    width: 100%;
    border: 0;
    border-radius: 8px;
}

/* Pied de page */
footer {
    background-color: #0d1b56;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

/* Footer styles */
/* Pied de page */
footer {
    background-color: #0d1b56; /* Bleu foncé */
    color: white;
    padding: 1rem;
    text-align: center;
}

/* Liens dans le footer */
footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
/* Assure que le footer reste toujours en bas */
html, body {
    height: 100%;
  }
  
  body {
    display: flex;
    flex-direction: column;
  }
  
  main {
    flex: 1;
  }