/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: #000;
    color: #fff;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}



/* =========================================================
   GLOBAL
========================================================= */

img {
    display: block;
    max-width: 100%;
    height: auto;
}


a {
    color: #fff;
    text-decoration: none;
    transition: .3s ease;
}


a:hover {
    color: #ff8800;
}


section {
    padding: clamp(2rem, 5vw, 4rem) 0;
}



/* =========================================================
   HEADER
========================================================= */

header {

    background: #111;

    text-align: center;

    padding: 1rem;

    box-shadow:
        0 5px 20px rgba(0,0,0,.45);

}


.header-img {

    width: 100%;

    max-width: 1800px;

    margin: auto;

}



/* =========================================================
   NAVIGATION
========================================================= */

nav {

    margin-top: 1.25rem;

}


nav ul {

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:1rem;

    list-style:none;

}


nav a {

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:48px;

    padding:.9rem 1.5rem;

    border-radius:8px;

    font-weight:600;

}


nav a:hover {

    background:#ff8800;

    color:#000;

    transform:translateY(-2px);

}



/* =========================================================
   MAIN LAYOUT
========================================================= */

main {

    width:min(1800px,96%);

    margin:auto;

}


h1 {

    text-align:center;

    font-size:clamp(2rem,5vw,3rem);

    margin-bottom:2rem;

    letter-spacing:1px;

}



/* =========================================================
   BEATSTARS
========================================================= */

.beatstore {

    width:100%;

}


.beatstore iframe {

    width:100%;

    height:950px;

    border:none;

    border-radius:12px;

}



/* =========================================================
   SPOTIFY / MUSIC EMBEDS
========================================================= */


.spotify-playlist,
.albums {

    width:100%;

    max-width:1400px;

    margin:auto;

}


.spotify-playlist iframe,
.albums iframe {

    width:100%;

    height:520px;

    border:none;

    border-radius:12px;

}



/* =========================================================
   LICENSING
========================================================= */


.licensing {

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    gap:2rem;

}


.licensing img {

    width:100%;

    max-width:1200px;

    border-radius:12px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.5);

}



/* =========================================================
   LEGAL PAGES
========================================================= */


.privacy-policy,
.cookie-policy,
.terms-policy {

    display:flex;

    justify-content:center;

}


.privacy-container,
.cookie-container,
.terms-container {

    width:100%;

    max-width:900px;

    padding:2rem;

    text-align:left;

    line-height:1.9;

}


.privacy-container h1,
.cookie-container h1,
.terms-container h1 {

    text-align:center;

}


.privacy-container h2,
.cookie-container h2,
.terms-container h2 {

    margin-top:2rem;

    margin-bottom:.75rem;

    color:#ff8800;

}



/* =========================================================
   FOOTER
========================================================= */


footer {

    background:#111;

    border-top:1px solid #222;

    text-align:center;

    padding:2rem 1rem;

}


footer ul {

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:1rem;

    list-style:none;

    margin-bottom:1.5rem;

}


footer a {

    display:flex;

    align-items:center;

    gap:.5rem;

}


footer img {

    width:28px;

    height:28px;

}


footer p {

    color:#999;

}



/* =========================================================
   LARGE DESKTOP
========================================================= */


@media(min-width:1600px){

    .beatstore iframe{

        height:1200px;

    }


    .spotify-playlist iframe,
    .albums iframe{

        height:700px;

    }

}



/* =========================================================
   TABLETS
========================================================= */


@media(max-width:992px){

    .beatstore iframe{

        height:700px;

    }


    .spotify-playlist iframe,
    .albums iframe{

        height:400px;

    }

}



/* =========================================================
   MOBILE
========================================================= */


@media(max-width:768px){

    body{

        font-size:15px;

    }


    nav ul,
    footer ul{

        flex-direction:column;

        align-items:stretch;

    }


    nav a{

        background:#222;

        text-align:center;

    }


    .beatstore iframe{

        height:500px;

    }


    .spotify-playlist iframe,
    .albums iframe{

        height:260px;

    }


}



/* =========================================================
   SMALL PHONES
========================================================= */


@media(max-width:480px){

    main{

        width:95%;

    }


    body{

        font-size:14px;

    }


    h1{

        font-size:1.7rem;

    }


    .beatstore iframe{

        height:420px;

    }


    .spotify-playlist iframe,
    .albums iframe{

        height:220px;

    }

}