
/* BIO.CSS */

/* Portrait */
.bio-portrait {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    margin: 0 auto;
}

/* Timeline */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #0d6efd;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 20px;
    position: relative;
    width: 50%;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-content {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 25px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #0d6efd;
    border: 3px solid #fff;
    z-index: 1;
}

.timeline-item.left::before {
    right: -10px;
}

.timeline-item.right::before {
    left: -10px;
}

/* Responsive Timeline */
@media screen and (max-width: 768px) {
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 70px;
    }
    .timeline-container::after {
        left: 30px;
    }
    .timeline-item::before {
        left: 15px !important;
    }
}

/* Compétences */
.skills i {
    transition: transform 0.3s ease;
}
.skills i:hover {
    transform: scale(1.2);
}


   /* Style spécifique bio */
        .bio-container p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 1.5rem;
        }

        .bio-container img {
            max-height: 600px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        @media (max-width: 768px) {
            .bio-container img {
                max-height: 400px;
            }
        }


html, body {
  padding-left: 0 !important;
	padding-right: 0 !important;
	padding-bottom: 0 !important;
}