/* Fichier: style.css */

/* Personnalisation des couleurs, polices, etc. */
:root {
    --primary-blue: #1e88e5;
    --dark-blue: #1565c0;
    --light-blue: #bbdefb;
    --text-color: #ffffff;
    --nav-text-color: #ffffff;
    --white: #fff;
}

body {
    font-family: Arial, sans-serif; /* Remplacez par votre police */
    color: var(--text-color);
}

/* --------------------
   Barre de navigation
   -------------------- */
.navbar {
    background-color: transparent;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.nav-link {
    color: var(--nav-text-color);
    font-weight: bold;
}

.nav-link.active, .nav-link:hover {
    color: var(--primary-blue);
}

.custom-btn {
    background-color: var(--primary-blue);
    border: none;
    color: var(--white);
    font-weight: bold;
    border-radius: 50px;
    padding: 10px 25px;
    transition: background-color 0.3s ease;
}

.custom-btn:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}

/* --------------------
   Section d'accueil
   -------------------- */
.hero-section {
    background-color: var(--light-blue); /* Couleur de fond */
    background-image: url('pattern.svg'); /* Remplacez par le chemin de votre motif de fond */
    background-size: cover;
    background-position: center;
    color: var(--text-color);
    padding: 80px 0;
    min-height: 500px;
    position: relative;
    overflow: hidden; /* Pour que l'image de profil ne dépasse pas */
}

.hero-content {
    z-index: 1; /* Assure que le contenu est au-dessus du fond */
}

.salutation {
    font-size: 1.5rem;
    font-weight: normal;
    color: #666;
}

.name {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.role {
    font-size: 2rem;
    font-weight: normal;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.slogan {
    font-size: 1.1rem;
    font-style: italic;
    color: #777;
    margin-bottom: 2rem;
}

.profile-image-container {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Boutons de la section d'accueil */
.custom-btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.custom-btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Media Queries pour le responsive */
@media (max-width: 768px) {
    .name {
        font-size: 2.5rem;
    }
    .role {
        font-size: 1.5rem;
    }
    .hero-content .row {
        flex-direction: column-reverse; /* Met l'image au-dessus du texte sur mobile */
    }
    .profile-image-container {
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
    }
}

/* Fichier: style.css */

/* Personnalisation des couleurs, polices, etc. (ajoutez ces variables si elles ne sont pas déjà présentes) */
:root {
    --primary-blue: #1e88e5;
    --dark-blue: #1565c0;
    --light-blue: #bbdefb;
    --text-color: #333;
    --nav-text-color: #555;
    --white: #fff;
    --light-gray: #f4f4f4;
}

/* --------------------
   Section "À Propos"
   -------------------- */
.about-section {
    background-color: var(--white);
}

.about-title {
    color: var(--dark-blue);
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-blue);
}

.subsection-title, .subsection-title-alt {
    font-weight: bold;
    color: var(--dark-blue);
    margin-bottom: 25px;
}

.subsection-title-alt {
    position: relative;
    display: inline-block;
}

.subsection-title-alt::before {
    content: '';
    position: absolute;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    width: 180px;
    background-color: var(--light-blue);
}

.subsection-title-alt::after {
    content: '';
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    width: 180px;
    background-color: var(--light-blue);
}

.about-section p {
    color: #666;
}

/* Styles des cartes "Mes valeurs" */
.value-card {
    border-left: 5px solid var(--primary-blue);
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.icon-circle {
    font-size: 1.5rem;
    color: var(--primary-blue);
    background-color: var(--light-blue);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Styles pour la chronologie (timeline) */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--light-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: var(--dark-blue);
    border: 4px solid var(--light-blue);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-left {
    left: 0;
}

.timeline-right {
    left: 50%;
}

.timeline-left::after {
    left: 97.5%;
}

.timeline-right::after {
    left: -12px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--light-gray);
    position: relative;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.timeline-content .timeline-year {
    display: block;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.timeline-content .timeline-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-color);
}

.timeline-content .timeline-subtitle {
    font-style: italic;
    color: #777;
}

.timeline-content .timeline-text {
    color: #555;
    margin-top: 10px;
}

/* Media Queries pour le responsive */
@media (max-width: 768px) {
    .timeline-container::after {
        left: 31px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-item::after {
        left: 15px !important;
    }
    .timeline-right {
        left: 0%;
    }
    .subsection-title-alt::before, .subsection-title-alt::after {
        width: 60px;
    }
    .subsection-title-alt::before {
        left: 20px;
        transform: translateY(-50%);
    }
    .subsection-title-alt::after {
        right: 20px;
        transform: translateY(-50%);
    }
}

/* Fichier: style.css */

/* Personnalisation des couleurs, polices, etc. */
:root {
    --primary-blue: #1e88e5;
    --dark-blue: #1565c0;
    --text-color: #333;
    --gray-bg: #f7f7f7;
}

/* --------------------
   Section "Projets"
   -------------------- */
.projects-section {
    background-color: var(--white);
}

.project-item {
    background-color: var(--gray-bg);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.project-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.project-image-container {
    width: 250px; /* Taille fixe pour les images */
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.project-title {
    font-weight: bold;
    color: var(--dark-blue);
    font-size: 1.5rem;
    line-height: 1.4;
}

/* Responsive adjustments for project items */
@media (max-width: 768px) {
    .project-item {
        flex-direction: column;
        text-align: center;
    }
    .project-image-container {
        margin-right: 0 !important;
        margin-bottom: 1rem !important;
    }
}

/* Fichier: style.css */

/* Personnalisation des couleurs, polices, etc. */
:root {
    --primary-blue: #1e88e5;
    --dark-blue: #1565c0;
    --light-blue: #bbdefb;
    --text-color: #333;
    --white: #fff;
    --gray-bg: #f7f7f7;
    --card-border-color: #e0e0e0;
}

/* --------------------
   Section "Compétences"
   -------------------- */
.skills-section {
    background-color: var(--gray-bg);
}

.section-title, .section-title-sub {
    color: var(--dark-blue);
    font-weight: bold;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-blue);
}

.section-subtitle {
    color: #777;
    margin-top: 25px;
}

/* Styles des cartes de compétences techniques */
.skill-card {
    border: 1px solid var(--card-border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.skill-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.skill-card .card-body {
    position: relative;
    padding: 2rem;
}

.skill-category {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.tags-container {
    margin-top: 15px;
}

.tag {
    display: inline-block;
    background-color: var(--light-blue);
    color: var(--dark-blue);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* Styles des cartes de gestion */
.management-card {
    background-color: var(--white);
    border: 1px solid var(--card-border-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.management-card h4 {
    color: var(--primary-blue);
    font-weight: bold;
}

.management-card ul li {
    color: #555;
    margin-bottom: 5px;
}

.management-card ul li i {
    color: var(--primary-blue);
    font-size: 0.7rem;
}

/* Styles des soft skills */
.soft-skills-container {
    margin-top: 40px;
    background-color: var(--white);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.soft-skill-item .icon-large {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

/* --------------------
   Section "Prêt à collaborer"
   -------------------- */
.collaboration-section {
    background-color: var(--primary-blue);
    color: var(--white);
}

.collaboration-title {
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.collaboration-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
}

.collaboration-btn {
    background-color: var(--dark-blue);
    border: none;
    color: var(--white);
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.collaboration-btn:hover {
    background-color: var(--dark-blue);
    opacity: 0.9;
}

.collaboration-btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.collaboration-btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

/* Fichier: style.css */

/* Personnalisation des couleurs, polices, etc. */
:root {
    --primary-blue: #ffffff;
    --dark-blue: #fdfdfd;
    --light-blue: #bbdefb;
    --text-color: #333;
    --white: #fff;
    --gray-bg: #f7f7f7;
    --card-border-color: #e0e0e0;
}

/* --------------------
   Section "Contact"
   -------------------- */
.contact-section {
    background-color: var(--white);
}

.contact-form-card,
.contact-info-card,
.social-card,
.collaboration-card {
    border: 1px solid var(--card-border-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-title,
.info-title,
.social-title,
.collaboration-title {
    font-weight: bold;
    color: var(--dark-blue);
    border-left: 4px solid var(--primary-blue);
    padding-left: 10px;
    margin-bottom: 25px;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(30, 136, 229, 0.25);
}

.form-btn {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    font-weight: bold;
    border-radius: 50px;
    padding: 10px 25px;
    transition: background-color 0.3s ease;
}

.form-btn:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.contact-item .icon-circle {
    font-size: 1rem;
    color: var(--primary-blue);
    background-color: var(--light-blue);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-item p {
    color: #666;
}

.social-icons .social-icon-link {
    font-size: 1.5rem;
    color: #666;
    transition: color 0.3s ease;
}

.social-icons .social-icon-link:hover {
    color: var(--primary-blue);
}

/* Fichier: style.css */

/* Personnalisation des couleurs, polices, etc. */
:root {
    --primary-blue: #1e88e5;
    --dark-blue: #1565c0;
    --footer-bg: #343a40; /* Couleur de fond foncée */
    --footer-text-color: #f8f9fa; /* Couleur de texte claire */
    --footer-link-color: #adb5bd; /* Couleur des liens */
}

/* --------------------
   Footer
   -------------------- */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text-color);
    border-top: 5px solid var(--primary-blue);
}

.copyright-text {
    font-size: 0.9rem;
    color: var(--footer-link-color);
    margin-bottom: 0;
}

.slogan-text {
    font-style: italic;
    font-size: 1rem;
    color: var(--footer-link-color);
    margin-bottom: 10px;
}

.btn-secondary-custom {
    background-color: transparent;
    border: 1px solid var(--footer-link-color);
    color: var(--footer-link-color);
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

/* Ajustements pour les petits écrans */
@media (max-width: 768px) {
    .footer-cta {
        margin-top: 15px;
    }
}