/* =============================================
   DCToolz — about.css
   ============================================= */

/* --------------------------------------------------
   PAGE LAYOUT
   -------------------------------------------------- */

#about {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

/* Couches de fond animées (reprises de index.css) */
.about-gradient-l1 {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 40%, rgba(18, 143, 181, 0.28) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 15%, rgba(92, 217, 213, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 85%, rgba(127, 119, 221, 0.18) 0%, transparent 55%);
    background-size: 200% 200%;
    animation: aboutG1 16s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.about-gradient-l2 {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 60%, rgba(18, 100, 150, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(100, 60, 180, 0.15) 0%, transparent 55%);
    background-size: 200% 200%;
    animation: aboutG2 22s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes aboutG1 {
    0%   { background-position: 0%   0%;   }
    50%  { background-position: 100% 100%; }
    100% { background-position: 0%   0%;   }
}
@keyframes aboutG2 {
    0%   { background-position: 100% 0%;   }
    50%  { background-position: 0%   100%; }
    100% { background-position: 100% 0%;   }
}

.about-content {
    position: relative;
    z-index: 2;
    width: 100%;
}


/* --------------------------------------------------
   PHOTO
   -------------------------------------------------- */

.about-photo-wrap {
    position: relative;
}

.about-photo {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    border-radius: 16px;
    display: block;
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    filter: grayscale(12%);
    transition: filter 0.4s ease;
}

.about-photo:hover {
    filter: grayscale(0%);
}

/* Placeholder si pas de photo */
.about-photo-placeholder {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 0.5px dashed rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: #444;
    font-size: 0.8rem;
}

.about-photo-placeholder i {
    font-size: 2rem;
    color: #333;
}

/* Trait décoratif derrière la photo */
.about-photo-wrap::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    border-radius: 16px;
    border: 0.5px solid rgba(18, 143, 181, 0.25);
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .about-photo,
    .about-photo-placeholder {
        max-width: 240px;
        margin: 0 auto;
    }
    .about-photo-wrap::before {
        display: none;
    }
}


/* --------------------------------------------------
   TEXTE
   -------------------------------------------------- */

.about-kicker {
    font-size: 0.72rem;
    color: #128fb5;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-name {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 6px;
}

.about-title {
    font-size: 1rem;
    color: #888;
    margin-bottom: 24px;
    font-weight: 400;
}

.about-bio {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 540px;
}

.about-bio strong {
    color: #e0e0e0;
    font-weight: 500;
}


/* --------------------------------------------------
   OSCAR HIGHLIGHT
   -------------------------------------------------- */

.oscar-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(218, 165, 32, 0.08);
    border: 0.5px solid rgba(218, 165, 32, 0.35);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 32px;
    max-width: 100%;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.oscar-badge:hover {
    background: rgba(218, 165, 32, 0.13);
    border-color: rgba(218, 165, 32, 0.5);
}

.oscar-icon {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(218, 165, 32, 0.5));
}

.oscar-text-title {
    font-size: 0.72rem;
    color: #daa520;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 3px;
}

.oscar-text-body {
    font-size: 0.85rem;
    color: #e8d18a;
    font-weight: 500;
    line-height: 1.4;
}

.oscar-text-sub {
    font-size: 0.72rem;
    color: #8a7540;
    margin-top: 2px;
}


/* --------------------------------------------------
   LINKS
   -------------------------------------------------- */

.about-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.about-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #aaa;
    border: 0.5px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    background: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
}

.about-link-btn i {
    font-size: 1rem;
}

.about-link-btn:hover {
    color: #ffffff;
    border-color: #128fb5;
    background: rgba(18, 143, 181, 0.1);
}

.about-link-btn.primary {
    color: #ffffff;
    border-color: #128fb5;
    background: rgba(18, 143, 181, 0.12);
}

.about-link-btn.primary:hover {
    background: rgba(18, 143, 181, 0.22);
}

/* CV — léger highlight différencié */
.about-link-btn.cv {
    color: #5cd9d5;
    border-color: rgba(92, 217, 213, 0.3);
    background: rgba(92, 217, 213, 0.05);
}

.about-link-btn.cv:hover {
    background: rgba(92, 217, 213, 0.12);
    border-color: rgba(92, 217, 213, 0.6);
}


/* --------------------------------------------------
   DIVIDER DÉCORATIF
   -------------------------------------------------- */

.about-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #128fb5, transparent);
    margin: 20px 0;
    border-radius: 2px;
}


/* --------------------------------------------------
   STATS RAPIDES (optionnel)
   -------------------------------------------------- */

.about-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-stat-val {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
}

.about-stat-lbl {
    font-size: 0.7rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about-stat-sep {
    width: 0.5px;
    background: rgba(255, 255, 255, 0.1);
    align-self: stretch;
}
