/* =====================================================
   XENIS RADIO
   MINIMAL DESIGN
   BLACK & WHITE ONLY
===================================================== */


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    background: #000000;
}


body {
    margin: 0;
    padding: 0;

    width: 100%;
    min-height: 100vh;

    background: #000000;
    color: #FFFFFF;

    font-family: 'Montserrat', sans-serif;

    overflow-x: hidden;
}


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

header {
    width: 100%;

    height: 90px;

    background: #000000;

    border-bottom: 1px solid #FFFFFF;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 60px;
}


/* =====================================================
   LOGO
===================================================== */

.logo {
    color: #FFFFFF;

    font-family: 'Cormorant Garamond', serif;

    font-size: 32px;

    font-weight: 600;

    letter-spacing: 5px;

    white-space: nowrap;
}


.logo span {
    font-family: 'Montserrat', sans-serif;

    font-size: 18px;

    font-weight: 300;

    letter-spacing: 3px;

    margin-left: 8px;
}


/* =====================================================
   DESKTOP MENU
===================================================== */

nav {
    display: flex;

    align-items: center;

    gap: 35px;
}


nav a {
    color: #FFFFFF;

    text-decoration: none;

    font-size: 13px;

    font-weight: 400;

    letter-spacing: 2px;

    transition: opacity 0.2s ease;
}


nav a:hover {
    opacity: 0.55;
}


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

.hero {
    width: 100%;

    min-height: 500px;

    background: #000000;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 70px 20px;
}


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

.hero h1 {
    color: #FFFFFF;

    font-family: 'Cormorant Garamond', serif;

    font-size: 110px;

    font-weight: 500;

    letter-spacing: 15px;

    line-height: 1;
}


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

.hero-radio {
    color: #FFFFFF;

    font-family: 'Montserrat', sans-serif;

    font-size: 34px;

    font-weight: 300;

    letter-spacing: 12px;

    margin-top: 15px;
}


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

.hero::after {
    content: "";

    width: 160px;

    height: 1px;

    background: #FFFFFF;

    margin-top: 40px;
}


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

.hero p {
    color: #FFFFFF;

    font-size: 17px;

    font-weight: 300;

    letter-spacing: 4px;

    margin-top: 25px;
}


/* =====================================================
   PLAYER SECTION
===================================================== */

.player {
    width: 100%;

    background: #000000;

    padding: 20px 20px 100px;

    display: flex;

    justify-content: center;
}
/* =========================================
   XENIS RADIO — MINIMAL PLAYER
   ========================================= */

.player {
    width: 100%;
    background: #000000;
    padding: 20px 20px 100px;
    display: flex;
    justify-content: center;
}

.player-box {
    width: 560px;
    max-width: 100%;
    background: transparent;
    border: none !important;
    padding: 20px 0;
}

/* Artist */
.now-playing {
    width: 100%;
    text-align: center;
    margin-bottom: 28px;
}

#artist {
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 1.5;
    text-transform: uppercase;
}

#title {
    color: #B8B8B8;
    font-family: 'Cormorant Garamond', serif;
    font-size: 23px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-top: 3px;
}

/* Controls */
.controls {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Play button */
.controls button {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    border: 1px solid #FFFFFF;
    border-radius: 50%;

    background: #000000;
    color: #FFFFFF;

    font-size: 13px;
    line-height: 1;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    transition: all 0.2s ease;
}

.controls button:hover {
    background: #FFFFFF;
    color: #000000;
}

/* Volume slider */
#volumeControl {
    flex: 1;
    width: 100%;
    height: 2px;

    appearance: none;
    -webkit-appearance: none;

    background: #FFFFFF;
    cursor: pointer;
}

/* Chrome / Edge / Safari */
#volumeControl::-webkit-slider-runnable-track {
    height: 2px;
    background: #FFFFFF;
}

#volumeControl::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;

    width: 10px;
    height: 10px;

    margin-top: -4px;

    border: 1px solid #FFFFFF;
    border-radius: 50%;

    background: #000000;
}

/* Firefox */
#volumeControl::-moz-range-track {
    height: 2px;
    background: #FFFFFF;
}

#volumeControl::-moz-range-thumb {
    width: 10px;
    height: 10px;

    border: 1px solid #FFFFFF;
    border-radius: 50%;

    background: #000000;
}

/* Hide native audio */
audio {
    display: none;
}
/* =====================================================
   XENIS RADIO — FINAL DESKTOP FIX
===================================================== */

/* Κρατάμε μόνο το menu του HEADER */
header nav {
    display: flex;
}

/* Κρύβουμε τυχόν δεύτερο menu που βρίσκεται εκτός header */
body > nav {
    display: none !important;
}

/* Κρύβουμε native player αν υπάρχει εκτός του custom player */
.player audio {
    display: none !important;
}

/* Custom player */
.player-box {
    display: block !important;
}

/* Desktop θέση */
@media (min-width: 769px) {

    .hero {
        min-height: 500px;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .player {
        padding-top: 20px;
        padding-bottom: 100px;
    }

}
