/* ==============================================
   BLANDINE BAUDOUIN - STYLE COMPLET
   ============================================== */

/* ==============================================
   VARIABLES ET FONTS
   ============================================== */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');

:root {
    --primary-blue-dark: #001f65;
    --primary-blue-light: #6895fd;
    --accent-red-dark: #731919;
    --accent-red-light: #e5202b;
    --white: #ffffff;
}

/* ==============================================
   STYLES GLOBAUX
   ============================================== */
body {
    font-family: "Dancing Script", cursive;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue-light));
    min-height: 100vh;
}

.text-underline {
    text-decoration: underline;
}

/* ==============================================
   NAVBAR
   ============================================== */
.navbar-custom {
    background: transparent;
    box-shadow: 0 4px 8px rgba(0, 31, 101, 0.3);
}

.navbar-custom .navbar-brand {
    color: var(--white) !important;
    font-weight: bold;
}

.navbar-custom .navbar-nav .nav-link {
    color: var(--white) !important;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    overflow: hidden;
    font-size: 1.5rem;
}

.navbar-custom .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.3s ease;
    z-index: 0;
}

.navbar-custom .navbar-nav .nav-link:hover::before {
    left: 0;
}

.navbar-custom .navbar-nav .nav-link:hover {
    color: var(--white) !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.navbar-custom .navbar-nav .nav-link i {
    position: relative;
    z-index: 1;
}

.navbar-custom .navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.navbar-custom .navbar-toggler {
    border: 2px solid var(--white);
    padding: 4px 8px;
}

.navbar-custom .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.hamburger {
    width: 25px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-collapse {
    background: linear-gradient(135deg, rgba(0, 31, 101, 0.95), rgba(104, 149, 253, 0.95));
    border-radius: 10px;
    margin-top: 10px;
    padding: 15px;
}

@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link::before {
        display: none;
    }
    
    .navbar-nav .nav-link:hover {
        text-shadow: none;
    }
}

/* ==============================================
   JUMBOTRON
   ============================================== */
.jumbotron {
    background: transparent;
    padding: 100px 0 80px;
    margin-top: 76px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}

.jumbotron .lead {
    font-size: 2rem;
}

.jumbotron .container {
    position: relative;
    z-index: 1;
}

.jumbotron .row {
    position: relative;
    z-index: 2;
}

.jumbotron-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(115, 25, 25, 0.6);
    transition: transform 0.3s ease;
}

.jumbotron-img:hover {
    transform: scale(1.02);
}

/* ==============================================
   BOUTONS ET BADGES
   ============================================== */
.profession-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--accent-red-dark), var(--accent-red-light));
    color: var(--white);
    border-radius: 25px;
    border: 2px solid var(--white);
    font-weight: 500;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(115, 25, 25, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.profession-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transition: left 0.3s ease;
}

.profession-badge:hover::before {
    left: 0;
}

.profession-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(115, 25, 25, 0.5);
}

.profession-badge > * {
    position: relative;
    z-index: 1;
}

.jumbotron .btn {
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.jumbotron .btn-outline-light {
    background: linear-gradient(135deg, var(--accent-red-dark), var(--accent-red-light));
    border: 2px solid var(--white);
    color: var(--white);
}

.jumbotron .btn-outline-light:hover {
    background: linear-gradient(135deg, var(--accent-red-light), var(--accent-red-dark));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(115, 25, 25, 0.4);
}

.jumbotron .btn-light {
    background: linear-gradient(135deg, var(--accent-red-dark), var(--accent-red-light));
    border: 2px solid var(--white);
    color: var(--white);
}

.jumbotron .btn-light:hover {
    background: linear-gradient(135deg, var(--accent-red-light), var(--accent-red-dark));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(115, 25, 25, 0.4);
}

/* ==============================================
   MAIN CONTENT
   ============================================== */
.main-content {
    padding: 40px 0;
    background: transparent;
}

/* Images et vidéos de la page index */
.main-content .bio-img,
.main-content iframe {
    box-shadow: 0 10px 30px rgba(115, 25, 25, 0.6) !important;
}

.main-content .bio-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(115, 25, 25, 0.8) !important;
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
    background: transparent;
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer .row > div {
    text-align: center;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-text {
    font-size: 1.5rem;
    line-height: 1.8;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.footer-link:hover {
    color: var(--accent-red-light);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-red-dark), var(--accent-red-light));
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(115, 25, 25, 0.3);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 15px rgba(115, 25, 25, 0.5);
    color: var(--white);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.3);
    margin: 30px 0 20px;
}

.footer-copyright {
    font-size: 1rem;
    opacity: 0.8;
}

/* ==============================================
   PAGE BIO
   ============================================== */
.bio-header {
    padding: 150px 0 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.bio-profile-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: 0 10px 30px rgba(115, 25, 25, 0.6);
}

.bio-content {
    padding: 60px 0;
}

.bio-text {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--white);
}

.bio-img {
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.bio-img:hover {
    transform: scale(1.02);
}

.bio-gallery-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ==============================================
   PAGE AUDIOS
   ============================================== */
.audios-header {
    padding: 150px 0 80px;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.audios-content {
    padding: 60px 0 80px;
}

/* Audio Player */
.audio-player {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.time-display {
    text-align: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.song-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 30px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.song-item {
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.4rem;
    border: 1px solid transparent;
}

.song-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.song-item.active {
    background: linear-gradient(135deg, var(--accent-red-dark), var(--accent-red-light));
    border-color: var(--white);
}

/* Timeline */
.timeline {
    position: relative;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin-bottom: 30px;
    cursor: pointer;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(135deg, var(--accent-red-dark), var(--accent-red-light));
    border-radius: 5px;
    width: 0%;
    transition: width 0.1s linear;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Controls */
.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.control-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: linear-gradient(135deg, var(--accent-red-dark), var(--accent-red-light));
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(115, 25, 25, 0.5);
}

.play-btn {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

/* Scrollbar pour la liste */
.song-list::-webkit-scrollbar {
    width: 8px;
}

.song-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.song-list::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-red-dark), var(--accent-red-light));
    border-radius: 10px;
}

.song-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-red-light), var(--accent-red-dark));
}

/* ==============================================
   PAGE DÉAMBULATION
   ============================================== */
.deambulation-header {
    padding: 150px 0 80px;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.deambulation-content {
    padding: 60px 0;
}

.deambulation-text {
    font-size: 2rem;
    line-height: 1.8;
    color: var(--white);
}

.deambulation-text p {
    margin-bottom: 1.5rem;
}

.deambulation-img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.deambulation-img:hover {
    transform: scale(1.05);
}

.btn-info-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-red-dark), var(--accent-red-light));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid var(--white);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(115, 25, 25, 0.3);
}

.btn-info-link:hover {
    background: linear-gradient(135deg, var(--accent-red-light), var(--accent-red-dark));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(115, 25, 25, 0.5);
    color: var(--white);
}

.btn-info-link i {
    font-size: 1.5rem;
    vertical-align: middle;
}

/* ==============================================
   ANIMATIONS AU SCROLL
   ============================================== */
[data-animate] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-left"] {
    transform: translateX(-30px);
}

[data-animate="fade-right"] {
    transform: translateX(30px);
}

[data-animate="zoom-in"] {
    transform: scale(0.9);
}

[data-animate].animate-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* ==============================================
   RESPONSIVE - TABLETTES
   ============================================== */
@media (max-width: 768px) {
    body {
        font-size: 1.3rem;
    }
    
    .jumbotron {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .jumbotron .lead {
        font-size: 1.5rem;
    }
    
    .jumbotron .btn {
        font-size: 1.1rem;
    }
    
    .bio-profile-img {
        width: 150px;
        height: 150px;
    }
    
    .bio-text,
    .deambulation-text {
        font-size: 1.4rem;
    }
    
    .bio-gallery-img {
        height: 300px;
    }
    
    .deambulation-img {
        height: 250px;
        margin-bottom: 20px;
    }
    
    .audio-player {
        padding: 30px 20px;
    }
    
    .time-display {
        font-size: 1.5rem;
    }
    
    .song-item {
        font-size: 1.2rem;
        padding: 12px;
    }
    
    .control-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .play-btn {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
    
    .footer-text,
    .footer-link {
        font-size: 1.3rem;
    }
}

/* ==============================================
   RESPONSIVE - MOBILES
   ============================================== */
@media (max-width: 576px) {
    body {
        font-size: 1.1rem;
    }
    
    .navbar-custom .navbar-nav .nav-link {
        font-size: 1.3rem;
    }
    
    .jumbotron {
        padding: 60px 0 40px;
        margin-top: 70px;
    }
    
    .jumbotron .lead {
        font-size: 1.3rem;
    }
    
    .profession-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .bio-header,
    .audios-header,
    .deambulation-header {
        padding: 120px 0 60px;
    }
    
    .bio-profile-img {
        width: 120px;
        height: 120px;
    }
    
    .bio-text,
    .deambulation-text {
        font-size: 1.2rem;
    }
    
    .bio-gallery-img {
        height: 250px;
    }
    
    .deambulation-img {
        height: 200px;
    }
    
    .audio-player {
        padding: 20px 15px;
    }
    
    .time-display {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .song-list {
        max-height: 250px;
    }
    
    .song-item {
        font-size: 1.1rem;
        padding: 10px;
    }
    
    .controls {
        gap: 15px;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .btn-info-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .footer-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .footer-text,
    .footer-link {
        font-size: 1.1rem;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}
