/* ==========================================================================
   EN-TÊTE DE L'ALBUM (HERO)
========================================================================== */
.album-hero {
    background-color: var(--bleu-rac);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.album-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../img/wrestlers_bg.png') right bottom / auto 70% no-repeat;
    opacity: 0.15; 
    z-index: 1; 
}

.album-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* --- Ligne Navigation & Date --- */
.meta-row {
    display: flex;
    justify-content: flex-start; 
    align-items: center;            
    margin-bottom: 20px;
    gap: 30px;
}

.back-link {
    background-color: #362F4F;
    color: var(--blanc) !important;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Typo-MulishBold', sans-serif;
    font-size: 14px;
    display: inline-flex; 
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.back-link i {
    color: var(--jaune-rac);
}

.back-link:hover {
    background-color: #4A426B;
}

.album-date {
    font-family: 'Typo-Paris', sans-serif;
    color: var(--jaune-rac);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0; 
}

/* --- Titre principal --- */
.album-hero h1 {
    font-family: 'Typo-Paris', sans-serif;
    color: var(--blanc);
    font-size: 48px;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0;
}

/* ==========================================================================
   IMAGE PRINCIPALE
========================================================================== */
.photo-single {
    text-align: center; 
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 5%;
}

.album-cover-full {
    width: 100%;
    height: auto;
    max-height: 80vh; /* Évite que l'image ne prenne trop de hauteur sur grand écran */
    object-fit: cover;
    border-radius: 12px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ==========================================================================
   LIENS ASSOCIÉS
========================================================================== */
.links-section {
    max-width: 1000px;
    margin: 0 auto 60px auto;
    background: #FAFAFA;
    border: 1px solid #E0E0E0;
    padding: 30px;
    border-radius: 12px;
}

.links-section h3 {
    font-family: 'Typo-MulishBold', sans-serif;
    color: var(--bleu-rac);
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.links-section h3 i {
    color: var(--jaune-rac);
}

.link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    background-color: var(--blanc);
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    position: relative; 
    transition: all 0.3s ease;
}

.link-item:last-child {
    margin-bottom: 0;
}

.link-item:hover {
    border-color: var(--jaune-rac);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.link-item span {
    color: var(--bleu-rac);
    font-family: 'Typo-MulishBold', sans-serif;
    font-size: 15px;
}

.link-item a {
    color: var(--jaune-rac);
    text-decoration: none;
    font-family: 'Typo-MulishBold', sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Rend toute la carte cliquable */
.link-item a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* ==========================================================================
   RESPONSIVE ALBUM
========================================================================== */
@media (max-width: 992px) {
    .album-hero { padding: 80px 5%; }
    .album-hero h1 { font-size: 42px; }
    .links-section { margin: 0 5% 60px 5%; }
}

@media (max-width: 768px) {
    .album-hero { padding: 60px 5%; }
    .album-hero h1 { font-size: 36px; }
    .meta-row { flex-wrap: wrap; gap: 15px; }
}

@media (max-width: 576px) {
    .album-hero h1 { font-size: 28px; }
    .album-date { font-size: 12px; }
    .back-link { padding: 8px 16px; font-size: 13px; }
    
    .links-section { padding: 20px; }
    .link-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 15px;
    }
}