/* =====================================================
   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;
}


.player-box {
    width: 700px;
    max-width: 100%;

    background: #000000;

    border: 1px solid #FFFFFF;

    padding: 35px 40px;
}


.player-title {
    color: #FFFFFF;

    text-align: center;

    font-family: 'Cormorant Garamond', serif;

    font-size: 28px;

    font-weight: 500;

    letter-spacing: 4px;

    margin-bottom: 10px;
}
.player-status {
    color: #FFFFFF;

    text-align: center;

    font-size: 10px;

    letter-spacing: 3px;

    margin-bottom: 30px;
}


/* =====================================================
   CONTROLS
===================================================== */

.controls {
    width: 100%;

    display: flex;

    align-items: center;

    gap: 18px;
}


/* =====================================================
   PLAY BUTTON
===================================================== */

.controls button {
    width: 58px;

    height: 58px;

    flex-shrink: 0;

    border: 1px solid #FFFFFF;

    border-radius: 50%;

    background: #000000;

    color: #FFFFFF;

    font-size: 18px;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.controls button:hover {
    background: #FFFFFF;

    color: #000000;
}


/* =====================================================
   VOLUME
===================================================== */

.volume-symbol {
    color: #FFFFFF;

    font-size: 18px;

    flex-shrink: 0;
}


/* =====================================================
   VOLUME SLIDER
===================================================== */

#volumeControl {
    flex: 1;

    width: 100%;

    height: 3px;

    accent-color: #FFFFFF;

    cursor: pointer;
}


/* =====================================================
   AUDIO
===================================================== */

audio {
    display: none;
}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {
    display: none;
}


/* =====================================================
   NO IMAGES
===================================================== */

body,
header,
.hero,
.player,
.player-box {
    background-image: none !important;
}
/* =====================================================
   ABOUT PAGE
===================================================== */

.page-content {
    width: 100%;
    max-width: 850px;

    min-height: calc(100vh - 90px);

    margin: 0 auto;

    padding: 100px 30px;

    background: #000000;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* =========================
   ABOUT TITLE
========================= */

.page-content h1 {
    color: #FFFFFF;

    font-family: 'Cormorant Garamond', serif;

    font-size: 55px;

    font-weight: 500;

    letter-spacing: 7px;

    line-height: 1.2;
}


/* =========================
   ABOUT LINE
========================= */

.page-line {
    width: 120px;

    height: 1px;

    background: #FFFFFF;

    margin: 35px 0;
}


/* =========================
   ABOUT TEXT
========================= */

.page-content p {
    max-width: 700px;

    color: #FFFFFF;

    font-family: 'Montserrat', sans-serif;

    font-size: 16px;

    font-weight: 300;

    line-height: 1.9;

    letter-spacing: 1px;

    margin-bottom: 20px;
}


/* =====================================================
   ABOUT MOBILE
===================================================== */

@media (max-width: 700px) {

    .page-content {
        min-height: calc(100vh - 70px);

        padding: 70px 25px 100px;
    }


    .page-content h1 {
        font-size: 36px;

        letter-spacing: 4px;
    }


    .page-line {
        width: 90px;

        margin: 28px 0;
    }


    .page-content p {
        font-size: 14px;

        line-height: 1.8;

        letter-spacing: .5px;
    }

}
/* =====================================================
   NOW PLAYING - FINAL
===================================================== */

.now-playing {
    width: 100%;
    text-align: center;
    margin: 0 auto 25px;
}


.now-playing-label {
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 12px;
}


#artist {
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.4;
}


#title {
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: .5px;
    line-height: 1.5;
    margin-top: 4px;
}