/*
Theme Name: Top 80 Radio
Author: Jeremy KOVEN
Description: Thème ultra rapide pour Top 80 Radio
Version: 1.0
*/


/* ===============================
   GLOBAL
================================= */

body{
    margin:0;
    font-family:'Segoe UI', sans-serif;
    background:#05070F;
}

/* Cache le player natif */
audio{
    display:none;
}


/* ===============================
   HEADER
================================= */

.site-header{
    background:linear-gradient(
        to bottom,
        rgba(5,10,25,.75),
        rgba(5,10,25,0)
    );
}

.site-header.scrolled{
    background:rgba(5,10,25,.85);
    backdrop-filter: blur(10px);
}

.header-inner{
    display:flex;
    align-items:center;
}

.logo img{
    height:45px;
}


/* ===============================
   HERO
================================= */

.hero {
    position: relative;
    min-height: calc(100vh - 85px); /* Ajustement pour le player */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background: linear-gradient(rgba(5,10,25,0.5), rgba(5,10,25,0.5)), url('votre-image.jpg') center/cover no-repeat;
}



/* IMAGE DYNAMIQUE */

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:var(--cover-url) center/cover no-repeat;
    transform:scale(1.1);
    filter:blur(28px) brightness(.75) saturate(1.3);
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(5,10,25,.2),
        rgba(5,10,25,.55) 40%,
        #05070F 85%
    );
}
.hero-cover{
    width:220px;
    border-radius:14px;
    margin-bottom:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.6);
}


/* TEXTE DEVANT */

.hero-content{
    position:relative;
    z-index:2;
}


/* TEXTE DEVANT */

.hero-content{
    position:relative;
    z-index:2;
}


.hero h1{
    font-size:clamp(42px, 6vw, 82px);
    letter-spacing:-2px;
    font-weight:800;
    line-height:1.05;
}


.hero p{
    font-size:22px;
    opacity:.8;
}


/* ===============================
   NOW PLAYING
================================= */

.now-playing{
    margin-top:25px;
    font-size:20px;
    opacity:.9;
}

.now-playing span{
    display:block;
    margin-top:8px;
    font-size:14px;
    color:#00A2FF;
    letter-spacing:2px;
}


/* ===============================
   BOUTON PLAY HERO
================================= */

.play-button{
    position:relative;
    overflow:hidden;
}

.play-button::before{
    content:"";
    position:absolute;
    inset:-2px;
    border-radius:14px;
    background:linear-gradient(135deg,#2D6BFF,#00A2FF,#5BC6FF);
    z-index:-1;
    filter:blur(12px);
    opacity:.7;
}
.play-button{
    padding:20px 46px;
    border-radius:14px;
    font-size:22px;
    font-weight:700;
    background:linear-gradient(135deg,#2D6BFF,#00A2FF);
}

.play-button:hover{
    transform:scale(1.05);
    box-shadow:0 0 40px rgba(0,140,255,.7);
}


/* ===============================
   PLAYER BAR (ULTRA PREMIUM)
================================= */

.global-player{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    height:72px;
    background:#050B18;
    display:flex;
    align-items:center;
    padding:0 50px;
    gap:25px;
    z-index:9999;
    border-top:1px solid rgba(255,255,255,.05);
}

.global-player img{
    flex-shrink:0;
}

/* Bouton play */

#play-btn{
    background:linear-gradient(135deg,#2D6BFF,#00A2FF);
    border:none;
    width:64px;
    height:64px;
    border-radius:50%;
    font-size:26px;
    color:white;
    cursor:pointer;
    box-shadow:0 0 20px rgba(0,140,255,.5);
    transition:.25s;
}

#play-btn:hover{
    transform:scale(1.08);
}


/* Infos radio */

.player-meta{
    color:white;
    display:flex;
    flex-direction:column;
    gap:4px;
}

.radio-name{
    font-size:18px;
    font-weight:600;
}


/* LIVE DOT (effet radio vivante) */

.live-text{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    letter-spacing:2px;
}

.live-dot{
    width:10px;
    height:10px;
    background:#00A2FF;
    border-radius:50%;
    box-shadow:0 0 10px #00A2FF;
    animation:pulse 1.5s infinite;
}

@keyframes pulse{
    0%{transform:scale(1);opacity:1;}
    50%{transform:scale(1.6);opacity:.6;}
    100%{transform:scale(1);opacity:1;}
}

.radio-name strong{
    font-weight:700;
    color:#00A2FF;
}

#cover-art{
    width:65px;
    height:65px;
    min-width:65px;
    object-fit:cover;
    border-radius:8px;
    display:block;
}

.hero-inner{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:80px;
    max-width:1200px;
    margin:auto;
    padding:0 40px;
}

/* Pochette */

#hero-cover{
    width:320px;
    border-radius:18px;
    box-shadow:0 40px 90px rgba(0,0,0,.65);
    transition:.4s;
}

#hero-cover:hover{
    transform:scale(1.03);
}

/* Texte */

.hero-content{
    max-width:520px;
    text-align:left;
}

