body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #414244;
    /* Couleur de fond de secours */
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #f1eeeef2;
    /* Légèrement transparent */
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

h1, h2, h3 {
    color: #333;
}

.header {
    background: linear-gradient(90deg, #007BFF, #0056b3);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    margin: 0 auto 20px;
    display: block;
}

.contact-info {
    text-align: center;
    margin-bottom: 30px;
}

section {
    margin: 20px 0;
}

.profile-box {
    background-color: #007BFF;
    /* Couleur de fond bleue */
    color: white;
    /* Couleur du texte */
    padding: 8px;
    /* Espacement intérieur */
    border-radius: 4px;
    /* Coins arrondis */
    text-align: center;
    /* Centre le texte */
    margin: 0 auto 16px;
    /* Centre la boîte avec un espacement en bas */
    width: 60%;
    /* Ajustez la largeur selon vos besoins */
}

.profile1-box {
    background-color: #007BFF;
    /* Couleur de fond bleue */
    color: white;
    /* Couleur du texte */
    padding: 12px;
    /* Espacement intérieur */
    border-radius: 6px;
    /* Coins arrondis */
    text-align: center;
    /* Centre le texte */
    margin: 0 auto 16px;
    /* Centre la boîte avec un espacement en bas */
    width: 60%;
    /* Ajustez la largeur selon vos besoins */
}


.divider {
    border-top: 2px solid #007BFF;
    /* Ligne de séparation */
    margin: 20px 0;
}

.skills h3 {
    color: #007BFF;
    /* Couleur pour les titres de compétences */
}

ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
    /* Aligner le texte des listes à gauche */
}

.social-buttons {
    text-align: center;
    margin-top: 20px;
}

.social-buttons a {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.github-btn {
    background-color: #333;
}

.github-btn:hover {
    background-color: #555;
}

.linkedin-btn {
    background-color: #0077b5;
}

.linkedin-btn:hover {
    background-color: #005582;
}

.social-buttons i {
    margin-right: 8px;
}

body {
    background-image: url('assets/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* assombrit le fond */
    z-index: -1;
}

..dropdown-nav {
    text-align: center;
    margin-bottom: 20px;
}

#menu {
    list-style: none;
    padding: 0;
    margin: 10px auto;
}

#menu li {
    margin: 8px 0;
}

#menu a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}

.hidden {
    display: none;
}

html {
    scroll-behavior: smooth;
}

.skills-toggle {
    text-align: center;
    margin: 20px auto;
}

.skills-btn {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.skills-btn:hover {
    background-color: #0056b3;
}

.skills-content {
    max-width: 600px;
    margin: 0 auto 20px;
    text-align: left;
    background-color: #f1f1f1;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.hidden {
    display: none;
}