/**
 * STYLES FICHE LAURÉAT NARRATIVE
 * Version immersive avec focus sur le récit
 * Prix de Flore 2025
 */

/* ========================================
   HERO SECTION - En-tête immersif
   ======================================== */

.fiche-laureats-narrative {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2B3E50;
    background: #FAF9F6;
}

.hero-laureats {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #003366 0%, #346C62 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
}

.hero-blur {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(1.2);
    transform: scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-metadata {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.annee-badge,
.edition-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.9);
    color: #2B3E50;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: white;
    margin: 0 0 30px 0;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-book {
    margin: 40px 0;
}

.book-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-style: italic;
    color: #D4AF37;
    margin: 0 0 10px 0;
    font-weight: 400;
}

.book-publisher {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

.hero-images {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.laureate-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #D4AF37;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.book-cover {
    width: 120px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.laureate-photo img,
.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   RÉCIT NARRATIF - Sections de contenu
   ======================================== */

.recit-container {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.recit-section {
    margin-bottom: 100px;
    position: relative;
    opacity: 1;
}

.section-ornament {
    position: absolute;
    left: -80px;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.ornament-icon {
    font-size: 24px;
    filter: grayscale(0);
}

.section-content {
    padding-left: 20px;
    border-left: 2px solid rgba(212, 175, 55, 0.2);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #346C62;
    margin: 0 0 25px 0;
    font-weight: 600;
}

.narrative-text {
    font-size: 17px;
    line-height: 1.8;
    color: #4A5568;
}

.narrative-text p {
    margin-bottom: 20px;
    text-align: justify;
    hyphens: auto;
}

.narrative-text p:first-of-type {
    font-size: 19px;
    line-height: 1.7;
    color: #2B3E50;
}

.narrative-text strong {
    color: #2B3E50;
    font-weight: 600;
}

.narrative-text em {
    color: #346C62;
    font-style: italic;
}

/* Styles spécifiques par section */
.portrait-section .section-content {
    border-left-color: rgba(52, 108, 98, 0.3);
}

.biographie-section .section-content {
    border-left-color: rgba(212, 175, 55, 0.3);
}

.oeuvre-section .section-content {
    border-left-color: rgba(0, 51, 102, 0.3);
}

.jury-section .section-content {
    border-left-color: rgba(52, 108, 98, 0.3);
}

.ceremonie-section .section-content {
    border-left-color: rgba(212, 175, 55, 0.5);
}

/* ========================================
   NAVIGATION - Précédent / Suivant
   ======================================== */

.laureats-navigation {
    margin-top: 120px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #003366 0%, #346C62 100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-link:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
    border-color: #D4AF37;
}

.nav-arrow {
    font-size: 24px;
    color: #D4AF37;
}

.nav-info {
    display: flex;
    flex-direction: column;
}

.nav-year {
    font-size: 14px;
    color: #D4AF37;
    font-weight: 600;
}

.nav-name {
    font-size: 16px;
    font-weight: 400;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .section-ornament {
        position: static;
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .section-content {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid rgba(212, 175, 55, 0.2);
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .hero-laureats {
        min-height: auto;
        padding: 40px 20px;
    }

    .hero-images {
        flex-direction: column;
        gap: 20px;
    }

    .laureate-photo {
        width: 120px;
        height: 120px;
    }

    .book-cover {
        width: 100px;
        height: 150px;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-link {
        width: 100%;
        justify-content: center;
    }

    .narrative-text {
        font-size: 16px;
        text-align: left;
    }
}
