/* ==========================================================================
   1. Réinitialisation et Base
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    background-color: #0b0c10;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

/* ==========================================================================
   2. Gestion de l'Arrière-plan (Illustration)
   ========================================================================== */
.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('christian.jpg') center/cover no-repeat; 
    z-index: -1;
}

/* Voile sombre global plus léger pour laisser transparaître les détails */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 12, 16, 0.75) 30%, rgba(11, 12, 16, 0.5) 100%);
}

/* ==========================================================================
   3. Conteneur Principal (Effet Verre Dépoli Ultra-Transparent)
   ========================================================================== */
.main-container {
    max-width: 800px;
    padding: 50px;
    /* Fond très transparent (0.35) pour fusionner avec l'image */
    background: rgba(20, 22, 26, 0.35); 
    border-radius: 16px;
    /* Flou renforcé pour que le texte reste parfaitement lisible */
    backdrop-filter: blur(14px); 
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    margin: 20px;
}

/* ==========================================================================
   4. Typographie et Éléments de Texte
   ========================================================================== */
.profile-header h1 {
    font-size: 2.8rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #66fcf1; /* Teinte cyan moderne */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.profile-header h2 {
    font-size: 1.4rem;
    font-weight: 400;
    color: #c5a059; /* Teinte dorée/artistique */
    margin-bottom: 35px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bio-section p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #eaeded;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.bio-section strong {
    color: #66fcf1;
    font-weight: 600;
}

/* ==========================================================================
   5. Boutons et Interactions (CTA)
   ========================================================================== */
.cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    text-align: center;
}

.btn-primary {
    background-color: #66fcf1;
    color: #0b0c10;
}

.btn-primary:hover {
    background-color: #45a29e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 252, 241, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* ==========================================================================
   6. Adaptabilité Mobile (Responsive Design)
   ========================================================================== */
@media (max-width: 600px) {
    .main-container {
        padding: 30px 20px;
    }
    .profile-header h1 {
        font-size: 2.2rem;
    }
    .profile-header h2 {
        font-size: 1.2rem;
    }
    .cta-group {
        flex-direction: column;
    }
}
