/*
====================================================

Shadow-Wolves.FM
style.css
Version 2.0

====================================================
*/


/* ==========================================
   Google Font
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');


/* ==========================================
   CSS Variablen
========================================== */

:root{

    --background:#0B1016;
    --background-light:#141C26;

    --surface:#151E28;
    --surface-hover:#1B2734;

    --primary:#3DB8FF;
    --primary-hover:#67C8FF;

    --text:#F4F7FA;
    --text-light:#B8C5D2;

    --border:#2B3949;

    --success:#43D17A;
    --danger:#E05D5D;

    --radius:18px;

    --transition:.35s ease;

    --container:1280px;

    --header-height:110px;

}


/* ==========================================
   Reset
========================================== */

*,
*::before,
*::after{

    margin:0;
    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Inter",sans-serif;

    background:var(--background);

    color:var(--text);

    line-height:1.8;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

    height:auto;

}

a{

    color:inherit;

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    border:none;

    background:none;

    cursor:pointer;

    font:inherit;

}

input,
textarea,
select{

    font:inherit;

}


/* ==========================================
   Container
========================================== */

.container{

    width:min(100% - 40px,var(--container));

    margin-inline:auto;

}


/* ==========================================
   Sections
========================================== */

section{

    position:relative;

    padding:7rem 0;

}

.section{

    background:var(--background);

}

.section-dark{

    background:var(--background-light);

}


/* ==========================================
   Typography
========================================== */

h1,
h2,
h3,
h4{

    font-weight:700;

    line-height:1.15;

}

h1{

    font-size:clamp(3.8rem,7vw,6rem);

}

h2{

    font-size:clamp(2rem,5vw,3rem);

}

h3{

    font-size:1.35rem;

}

p{

    color:var(--text-light);

    font-size:1.05rem;

}


/* ==========================================
   Section Header
========================================== */

.section-header{

    text-align:center;

    margin-bottom:4rem;

}

.section-header span{

    display:inline-block;

    margin-bottom:1rem;

    color:var(--primary);

    font-size:.9rem;

    font-weight:600;

    letter-spacing:.2rem;

    text-transform:uppercase;

}

.section-header h2{

    margin-bottom:1rem;

}


/* ==========================================
   Text Content
========================================== */

.text-content{

    max-width:900px;

    margin:0 auto;

}

.text-content p{

    margin-bottom:1.5rem;

}

.text-content strong{

    color:var(--text);

}


/* ==========================================
   Listen
========================================== */

.text-content ul{

    margin:1rem 0 2rem 1.5rem;

    list-style:disc;

}

.text-content li{

    color:var(--text-light);

    margin-bottom:.75rem;

}


/* ==========================================
   Horizontale Linie
========================================== */

hr{

    border:none;

    height:1px;

    background:var(--border);

}
/* ==========================================
   Header
========================================== */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:var(--header-height);

    z-index:1000;

    transition:var(--transition);

}

.header.scrolled{

    background:rgba(11,16,22,.92);

    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(255,255,255,.06);

}


/* ==========================================
   Header Layout
========================================== */

.header .container{

    height:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

}


/* ==========================================
   Logo
========================================== */

.logo{

    display:flex;

    align-items:center;

    transition:var(--transition);

}

.logo img{

    height:110px;

    width:auto;

    transition:var(--transition);

}

.logo:hover img{

    transform:scale(1.04);

}


/* ==========================================
   Navigation
========================================== */

.navigation{

    display:flex;

    align-items:center;

}

.navigation ul{

    display:flex;

    align-items:center;

    gap:2.5rem;

}

.navigation li{

    list-style:none;

}

.navigation a{

    position:relative;

    font-size:1rem;

    font-weight:500;

    color:var(--text);

    transition:var(--transition);

}

.navigation a:hover,

.navigation a.active{

    color:var(--primary);

}

.navigation a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:var(--transition);

}

.navigation a:hover::after,

.navigation a.active::after{

    width:100%;

}


/* ==========================================
   Mobile Menu Button
========================================== */

.menu-toggle{

    display:none;

    width:42px;

    height:30px;

    flex-direction:column;

    justify-content:space-between;

    cursor:pointer;

}

.menu-toggle span{

    display:block;

    width:100%;

    height:3px;

    border-radius:999px;

    background:#ffffff;

    transition:var(--transition);

}


/* ==========================================
   Hamburger Animation
========================================== */

.menu-toggle.active span:nth-child(1){

    transform:translateY(13px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:translateY(-13px) rotate(-45deg);

}
/* ==========================================
   Hero
========================================== */

.hero{

    position:relative;

    display:flex;

    align-items:center;

    min-height:100vh;

    padding-top:var(--header-height);

    background:
        linear-gradient(
            rgba(11,16,22,.72),
            rgba(11,16,22,.92)
        ),
        url("../images/hero.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
        radial-gradient(

            circle,

            transparent 10%,

            rgba(11,16,22,.15) 55%,

            rgba(11,16,22,.70) 100%

        );

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-content{

    max-width:720px;

}


/* ==========================================
   Hero Typography
========================================== */

.hero-eyebrow{

    display:inline-block;

    margin-bottom:1rem;

    color:var(--primary);

    font-size:.9rem;

    font-weight:600;

    letter-spacing:.2rem;

    text-transform:uppercase;

}

.hero h1{

    margin-bottom:1rem;

    line-height:.95;

    text-transform:uppercase;

}

.hero h1 span{

    display:block;

    color:var(--primary);

}

.hero-lead{

    margin-bottom:1rem;

    color:#ffffff;

    font-size:1.35rem;

    font-weight:500;

    letter-spacing:.08rem;

}

.hero p{

    max-width:650px;

    margin-bottom:2rem;

    font-size:1.1rem;

}


/* ==========================================
   Hero Buttons
========================================== */

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:1rem;

    margin-bottom:3rem;

}


/* ==========================================
   Hero Features
========================================== */

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:1rem;

}

.hero-features span{

    display:flex;

    align-items:center;

    gap:.5rem;

    padding:.8rem 1.2rem;

    border-radius:999px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(10px);

    color:var(--text);

    transition:var(--transition);

}

.hero-features span:hover{

    background:rgba(61,184,255,.10);

    border-color:var(--primary);

    transform:translateY(-3px);

}
/* ==========================================
   Buttons
========================================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:190px;

    height:56px;

    padding:0 2rem;

    border-radius:var(--radius);

    font-weight:600;

    letter-spacing:.03rem;

    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);

    color:#081018;

    box-shadow:0 12px 30px rgba(61,184,255,.20);

}

.btn-primary:hover{

    background:var(--primary-hover);

    transform:translateY(-3px);

    box-shadow:0 16px 35px rgba(61,184,255,.35);

}

.btn-secondary{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.12);

    color:#ffffff;

}

.btn-secondary:hover{

    background:rgba(255,255,255,.10);

    border-color:var(--primary);

    color:var(--primary);

    transform:translateY(-3px);

}


/* ==========================================
   Allgemeine Cards
========================================== */

.card{

    position:relative;

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:2rem;

    overflow:hidden;

    transition:var(--transition);

}

.card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:var(--primary);

    transform:scaleX(0);

    transform-origin:left;

    transition:var(--transition);

}

.card:hover{

    background:var(--surface-hover);

    border-color:var(--primary);

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.35);

}

.card:hover::before{

    transform:scaleX(1);

}

.card h2,
.card h3{

    margin-bottom:1rem;

    color:var(--text);

}

.card p{

    color:var(--text-light);

}


/* ==========================================
   Grid Layout
========================================== */

.card-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:2rem;

}


/* ==========================================
   Show Cards
========================================== */

.card img{

    width:100%;

    height:220px;

    object-fit:cover;

    border-radius:12px;

    margin-bottom:1.5rem;

    border:1px solid var(--border);

}

.card img:hover{

    transform:scale(1.02);

}


/* ==========================================
   News
========================================== */

#news{

    background:var(--background-light);

}

#news .card{

    max-width:900px;

    margin:0 auto;

    text-align:center;

}

#news .card p{

    margin-bottom:1rem;

}
/* ==========================================
   Live Radio
========================================== */

#live-radio{

    background:var(--background);

}


/* ==========================================
   Radio Card
========================================== */

.radio-card{

    max-width:1000px;

    margin:0 auto;

    padding:3rem;

    text-align:center;

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:var(--radius);

    box-shadow:0 15px 40px rgba(0,0,0,.30);

}


/* ==========================================
   Live Badge
========================================== */

.live-badge{

    display:inline-block;

    padding:.6rem 1.4rem;

    margin-bottom:1rem;

    border-radius:999px;

    background:rgba(224,93,93,.18);

    color:#ff7272;

    font-weight:700;

    letter-spacing:.08rem;

    text-transform:uppercase;

}


/* ==========================================
   Now Playing
========================================== */

.now-playing{

    display:inline-block;

    margin-bottom:1.5rem;

    padding:.6rem 1.4rem;

    border-radius:999px;

    background:rgba(61,184,255,.08);

    border:1px solid rgba(61,184,255,.15);

    color:var(--primary);

    font-size:.9rem;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:.15rem;

}


/* ==========================================
   Song Information
========================================== */

#song-title{

    font-size:clamp(2rem,4vw,3rem);

    color:#ffffff;

    margin-bottom:.75rem;

}

#song-artist{

    font-size:1.25rem;

    color:var(--text-light);

    margin-bottom:2.5rem;

}


/* ==========================================
   Show Information
========================================== */

.radio-info-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:1.5rem;

    margin-bottom:3rem;

}

.info-box{

    background:var(--background-light);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:1.8rem;

    transition:var(--transition);

}

.info-box:hover{

    border-color:var(--primary);

    transform:translateY(-5px);

}

.info-box h3{

    margin-bottom:1rem;

    color:var(--primary);

}

.info-box p{

    color:var(--text);

    font-weight:600;

}


/* ==========================================
   Player Selection
========================================== */

.player-selection{

    margin-top:2rem;

}

.player-selection h3{

    margin-bottom:2rem;

    color:#ffffff;

}

.player-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:2rem;

}

.player-option{

    background:var(--background-light);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:2rem;

    transition:var(--transition);

}

.player-option:hover{

    border-color:var(--primary);

    background:var(--surface-hover);

    transform:translateY(-6px);

}

.player-option h4{

    margin-bottom:1rem;

    color:var(--primary);

}

.player-option p{

    margin-bottom:2rem;

    color:var(--text-light);

}
/* ==========================================
   Shows
========================================== */

#shows{

    background:var(--background-light);

}


/* ==========================================
   Shows Intro
========================================== */

.section-intro{

    max-width:850px;

    margin:0 auto 3rem;

    text-align:center;

    color:var(--text-light);

}


/* ==========================================
   Shows Grid
========================================== */

.shows-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:2rem;

}


/* ==========================================
   Show Card
========================================== */

.show-card{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:var(--radius);

    overflow:hidden;

    transition:var(--transition);

}

.show-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    background:var(--surface-hover);

    box-shadow:0 18px 40px rgba(0,0,0,.35);

}

.show-card img{

    width:100%;

    height:240px;

    object-fit:cover;

    display:block;

}


/* ==========================================
   Show Content
========================================== */

.show-content{

    padding:2rem;

}

.show-badge{

    display:inline-block;

    margin-bottom:1rem;

    padding:.45rem 1rem;

    border-radius:999px;

    background:rgba(61,184,255,.10);

    border:1px solid rgba(61,184,255,.20);

    color:var(--primary);

    font-size:.85rem;

    font-weight:600;

}

.show-content h3{

    margin-bottom:1rem;

    color:#ffffff;

    font-size:1.4rem;

}

.show-content p{

    color:var(--text-light);

    line-height:1.8;

}


/* ==========================================
   Discord
========================================== */

#discord{

    background:var(--background);

}

.discord-community{

    display:grid;

    grid-template-columns:220px 1fr;

    align-items:center;

    gap:3rem;

    padding:3rem;

    background:linear-gradient(

        135deg,

        rgba(88,101,242,.12),

        rgba(61,184,255,.08)

    );

    border:1px solid rgba(88,101,242,.25);

    border-radius:var(--radius);

}

.discord-logo{

    width:170px;

    margin:auto;

    filter:drop-shadow(0 0 20px rgba(88,101,242,.35));

}

.community-badge{

    display:inline-block;

    margin-bottom:1rem;

    padding:.45rem 1rem;

    border-radius:999px;

    background:rgba(88,101,242,.18);

    color:#9AA8FF;

    font-size:.85rem;

    font-weight:600;

    letter-spacing:.1rem;

    text-transform:uppercase;

}

.discord-content h2{

    margin-bottom:1rem;

    color:#ffffff;

}

.discord-content p{

    margin-bottom:2rem;

    color:var(--text-light);

    line-height:1.8;

}

.discord-join-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:1rem 2rem;

    border-radius:var(--radius);

    background:#5865F2;

    color:#ffffff;

    font-weight:600;

    transition:var(--transition);

}

.discord-join-btn:hover{

    transform:translateY(-3px);

    background:#6D7BFF;

    box-shadow:0 15px 30px rgba(88,101,242,.35);

}
/* ==========================================
   Network
========================================== */

.network{

    background:var(--background);

    border-top:1px solid var(--border);

    text-align:center;

}

.network .container{

    max-width:900px;

}

.network-link{

    display:inline-block;

    margin-bottom:2.5rem;

}

.network-badge{

    width:340px;

    max-width:100%;

    margin:0 auto;

    transition:var(--transition);

    filter:drop-shadow(0 0 18px rgba(61,184,255,.20));

}

.network-link:hover .network-badge{

    transform:translateY(-5px) scale(1.03);

    filter:drop-shadow(0 0 28px rgba(61,184,255,.45));

}

.network p{

    margin-bottom:1.5rem;

}

.network strong{

    color:var(--text);

}


/* ==========================================
   Footer
========================================== */

.footer{

    background:#080D12;

    border-top:1px solid var(--border);

    padding:3rem 0;

}

.footer-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:3rem;

}

.footer-left{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    gap:.75rem;

}

.footer-left p{

    margin:0;

    color:var(--text-light);

}

.footer-links{

    display:flex;

    flex-wrap:wrap;

    gap:1.5rem;

    margin-top:.5rem;

}

.footer-links a{

    color:var(--primary);

    transition:var(--transition);

}

.footer-links a:hover{

    color:#ffffff;

}

.footer-right{

    margin-left:auto;

}

.network-badge-footer{

    width:340px;

    max-width:100%;

    display:block;

    transition:var(--transition);

    filter:drop-shadow(0 0 15px rgba(61,184,255,.25));

}

.network-badge-footer:hover{

    transform:translateY(-4px) scale(1.03);

    filter:drop-shadow(0 0 25px rgba(61,184,255,.45));

}


/* ==========================================
   Fade-In Animation
========================================== */

.hidden{

    opacity:0;

    transform:translateY(30px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}


/* ==========================================
   Scroll Offset
========================================== */

#live-radio,
#shows,
#discord,
#news{

    scroll-margin-top:120px;

}
/* ==========================================
   Responsive Design
========================================== */

@media (max-width:992px){

    .hero{

        text-align:center;

    }

    .hero-content{

        max-width:100%;

        margin:0 auto;

    }

    .hero p{

        margin-left:auto;

        margin-right:auto;

    }

    .hero-buttons,

    .hero-features{

        justify-content:center;

    }

    .discord-community{

        grid-template-columns:1fr;

        text-align:center;

    }

    .discord-logo{

        width:140px;

    }

}


@media (max-width:768px){

    :root{

        --header-height:90px;

    }

    section{

        padding:5rem 0;

    }

    .logo img{

        height:85px;

    }

    .menu-toggle{

        display:flex;

    }

    .navigation{

        position:fixed;

        top:var(--header-height);

        right:-100%;

        width:280px;

        height:calc(100vh - var(--header-height));

        background:rgba(11,16,22,.98);

        backdrop-filter:blur(15px);

        border-left:1px solid var(--border);

        transition:var(--transition);

    }

    .navigation.active{

        right:0;

    }

    .navigation ul{

        flex-direction:column;

        align-items:flex-start;

        padding:3rem 2rem;

        gap:2rem;

    }

    .hero h1{

        font-size:3rem;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

    }

    .btn{

        width:100%;

        max-width:320px;

    }

    .hero-features{

        justify-content:center;

    }

    .hero-features span{

        justify-content:center;

        width:100%;

    }

    .card-grid,

    .shows-grid,

    .player-grid,

    .radio-info-grid{

        grid-template-columns:1fr;

    }

    .radio-card{

        padding:2rem;

    }

    .network-badge{

        width:260px;

    }

    .footer-container{

        flex-direction:column;

        text-align:center;

    }

    .footer-left{

        align-items:center;

    }

    .footer-links{

        justify-content:center;

    }

    .footer-right{

        margin-left:0;

    }

    .network-badge-footer{

        width:260px;

    }

}


@media (max-width:480px){

    .container{

        width:min(100% - 24px,var(--container));

    }

    h1{

        font-size:2.4rem;

    }

    h2{

        font-size:2rem;

    }

    .logo img{

        height:72px;

    }

    .radio-card{

        padding:1.5rem;

    }

    #song-title{

        font-size:2rem;

    }

    #song-artist{

        font-size:1rem;

    }

    .footer-links{

        flex-direction:column;

        gap:1rem;

    }

}


/* ==========================================
   Scrollbar
========================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:var(--background);

}

::-webkit-scrollbar-thumb{

    background:var(--surface-hover);

    border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary);

}


/* ==========================================
   Text Selection
========================================== */

::selection{

    background:var(--primary);

    color:#081018;

}


/* ==========================================
   Focus
========================================== */

:focus-visible{

    outline:2px solid var(--primary);

    outline-offset:4px;

}


/* ==========================================
   Animation
========================================== */

@keyframes fadeIn{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero-content{

    animation:fadeIn .8s ease;

}


/* ==========================================
   Utility Classes
========================================== */

.text-center{

    text-align:center;

}

.mt-1{margin-top:1rem;}
.mt-2{margin-top:2rem;}
.mt-3{margin-top:3rem;}

.mb-1{margin-bottom:1rem;}
.mb-2{margin-bottom:2rem;}
.mb-3{margin-bottom:3rem;}


/* ==========================================
   End of File

   Shadow-Wolves.FM
   Version 2.0

========================================== */