.apropos-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Header Bio */
.bio-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px dashed #ddd;
}

.bio-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bio-text {
    flex: 1;
}

.bio-text p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Sections */
.apropos-section {
    margin-bottom: 40px;
}

.apropos-section h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.apropos-section h2 i {
    color: #3498db;
}

/* Liste des Crédits */
.credits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.credit-card {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    transition: transform 0.3s ease;
}

.credit-card:hover {
    transform: translateX(10px);
    background: #e9ecef;
}

.credit-card a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

/* Galerie des Fonds */
.gallery-fonds {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.fond-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 150px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.fond-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fond-item:hover img {
    transform: scale(1.1);
}

.fond-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8em;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.fond-item:hover .fond-caption {
    transform: translateY(0);
}

/* Footer Remerciements */
.thanks-footer {
    text-align: center;
    margin-top: 50px;
    font-style: italic;
    color: #7f8c8d;
    padding: 20px;
    background: #fdfdfd;
    border-radius: 10px;
}

@media (max-width: 600px) {
    .bio-header {
        flex-direction: column;
        text-align: center;
    }
}
