/* ===========================
   STYLE ABOUT PAGE - FUSIKAB DJ
   =========================== */

/* Section À propos */
.about-section {
    padding: 60px 0;
}

.about-section h1,
.about-section h2 {
    color: #ffcc00;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-section p.lead {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

/* Team Cards */
.team-card {
    background-color: #1a1a1a;
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.4);
}

.team-card .team-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #ffcc00;
}

/* Titres et sous-titres */
.team-card .card-title {
    color: #ffcc00;
    font-weight: 600;
    margin-top: 15px;
}

.team-card .card-subtitle {
    color: #f5f5f5;
    font-weight: 500;
    opacity: 0.9;
}

/* Décalage uniquement pour Baptiste */
.subtitle-baptiste {
    display: inline-block;   /* permet de décaler sans être affecté par le text-center parent */
    text-align: left;
    margin-left: 15px;       /* décalage à gauche */
}

/* Texte en italique */
.team-card .card-text em {
    font-size: 0.85rem;
    color: #cccccc;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .team-card .team-photo {
        width: 120px;
        height: 120px;
    }
    .about-section h1,
    .about-section h2 {
        font-size: 1.5rem;
    }
    .subtitle-baptiste {
        display: block;
        text-align: center;
        margin-left: 0;
    }
}
