/* Palette Vintage Blues/Rock */
:root {
    --vintage-gold: #c5a059; /* Un or patiné, moins jaune, plus cuivre/vieux bois */
    --dark-bg: #141414;
    --darker-bg: #0d0d0d;
    --text-light: #e6e2da; /* Blanc cassé style papier de pochette de vinyle d'époque */
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Lora', serif;
    line-height: 1.8;
}

/* Application de la police IM Fell DW Pica pour l'esprit Roots/Folk */
h1, h2, h3, .rock-font {
    font-family: 'IM Fell DW Pica', serif;
    letter-spacing: 1px;
}

h1 {
    font-size: 4.5rem;
}

/* Section Hero (Bannière avec la route) */
.hero-section {
    background: linear-gradient(rgba(13, 13, 13, 0.6), rgba(13, 13, 13, 0.85)), url('../img/TITUSparalax.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 65vh;
    display: flex;
    align-items: center;
    border-bottom: 3px solid var(--vintage-gold);
}

.hero-title {
    color: #ffffff;
    text-shadow: 3px 5px 10px rgba(0,0,0,0.9);
}

.hero-subtitle {
    color: var(--vintage-gold);
    font-size: 1.6rem;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* Image de profil (Portrait avec la guitare) */
.artist-portrait {
    border: 2px solid var(--vintage-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9);
    border-radius: 2px;
    filter: contrast(1.05) sepia(0.15); /* Renforce le côté argentique/vintage */
}

/* Mise en forme du texte */
.lead-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.frenchy-quote {
    border-left: 3px solid var(--vintage-gold);
    background-color: var(--darker-bg);
    padding: 25px;
    margin: 35px 0;
    font-style: italic;
    font-size: 1.2rem;
}

/* Ligne de séparation style gravure */
.divider {
    height: 1px;
    width: 140px;
    background: linear-gradient(to right, transparent, var(--vintage-gold), transparent);
    margin: 50px auto;
}
.videos-section {
    color: #e0e0e0;
}
.videos-section h2 {
    color: var(--vintage-gold); /* Titre en couleur chaude */
}
.video-item {
    margin-bottom: 40px;
}
.video-item video {
    width: 100%;
    height: auto;
    display: block;
    background-color: #000; /* Fond noir pour les contrôles vidéo */
}
.card {
    background-color: #333333; /* Fond de carte sombre */
    color: #e0e0e0;
    border: 1px solid #4a4a4a; /* Bordure de carte légèrement visible */
}
.card-title {
    color: var(--vintage-gold);; /* Titre de carte en couleur chaude */
}
.btn-outline-primary {
    color: var(--vintage-gold);
    border-color: var(--vintage-gold);
}
.btn-outline-primary:hover {
    background-color: var(--vintage-gold);;
    color: #1a1a1a; /* Texte sombre sur fond chaud au survol */
}
.modal-content {
    background-color: #2c2c2c; /* Fond de modale sombre */
    color: #e0e0e0;
}
.modal-header {
    border-bottom: 1px solid #4a4a4a;
}
.modal-title {
    color: var(--vintage-gold); /* Titre de modale en couleur chaude */
}
.btn-close {
    filter: invert(1); /* Bouton fermer en blanc pour contraste */
}
.modal-body pre {
    text-align: left;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: #e0e0e0;
}
.footer .social-links a {
    color: var(--vintage-gold);; /* Icônes sociales en couleur chaude */
}
.footer .social-links a:hover {
    color: var(--vintage-gold);
}
.photo-worn {
position: relative;
display: block;
transform: rotate(-4deg);       
transition: transform .35s ease;
}
.photo-worn:hover {
transform: rotate(-2deg) scale(1.02);
}
.photo-worn img {
display: block;
/*filter: sepia(.25) contrast(.92) brightness(.97) saturate(.8);*/
}
/* grain / usure superposée */
.photo-worn::after {
content: "";
position: absolute;
inset: 0;
mix-blend-mode: multiply;
pointer-events: none;
}
/*  ***********  BOUCLE CLIPS  ************  */
.clip-coming-soon {
    overflow: hidden;
    background: #111;
}

.clip-coming-soon img {
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.clip-coming-overlay {
    background: rgba(0, 0, 0, 0.48);
    color: #fff;
}

.clip-coming-title {
    padding: .45rem 1rem;
    border: 1px solid var(--vintage-gold);
    color: var(--vintage-gold);
    background: rgba(0, 0, 0, .65);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: .08rem;
}

.clip-coming-date {
    padding: .35rem .75rem;
    color: #fff;
    background: rgba(0, 0, 0, .65);
    font-size: .95rem;
}