@font-face {
    font-family: mulish;
    src: url(./assets/fonts/Mulish-Regular.ttf);
}

@font-face {
    font-family: mulishBlack;
    src: url(./assets/fonts/Mulish-Black.ttf);
}

@font-face {
    font-family: mulishBold;
    src: url(./assets/fonts/Mulish-Bold.ttf);
}

@font-face {
    font-family: mulishXBold;
    src: url(./assets/fonts/Mulish-ExtraBold.ttf);
}

@font-face {
    font-family: mulishLight;
    src: url(./assets/fonts/Mulish-Light.ttf);
}

@font-face {
    font-family: mulishMid;
    src: url(./assets/fonts/Mulish-Medium.ttf);
}

@font-face {
    font-family: poppins;
    src: url(./assets/fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: poppinsXBold;
    src: url(./assets/fonts/Poppins-ExtraBold.ttf);
}

@font-face {
    font-family: poppinsSemi;
    src: url(./assets/fonts/Poppins-SemiBold.ttf);
}

*{
    margin: 0;
    padding: 0;
    appearance: none;
    outline: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    transition: all 0.5s ease-out;
}

body::-webkit-scrollbar {
    display: none;
}
body {
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 80%;
    }

    100% {
        opacity: 1;
    }
}

a{
    text-decoration: none;
    color: #1e1e1e;
}

html{
    font-size: 16px;
}

.container{
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: #1e1e1e;
    gap: 3.5rem;
}

.hero{
    background: url(./assets/images/home-banner-alt.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 95vh;
    border-radius: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 3rem 0;
}

.navbar{
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 4rem;
}

.logo a img{
    width: 5rem;
}

.navlinks ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.2rem;
}

.navlinks ul li{
    font-family: mulish;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.navlinks ul li .active-page{
    font-family: mulishXBold;
    color: #E4CA8F;
    position: relative;
}

.navlinks ul li .active-page::before{
    content: "";
	position: absolute;
	width: 3rem;
	height: 1px;
	bottom: -10%;
	border-bottom: 3px solid #E4CA8F;
}

.navlinks ul li a{
    color: white;
}

.navlinks ul li .active-page:hover{
    color: #1e1e1e;
}

.navlinks ul li a:hover{
    color: #E4CA8F;
}

.button-music{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.button a img{
    width: 13rem;
    padding: 1rem;
    border-radius: 50%;
    animation: ring 2s linear infinite;
}

@keyframes ring {
    0%{
        opacity: 100%;
    }
    50%{
        opacity: 50%;
    }
    100%{
        opacity: 100%;
    }
}

.listen{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.listen-heading{
    font-family: mulishBlack;
    color: white;
    font-size: 2.5rem;
}

.streaming{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.streaming a img{
    width: 3.5rem;
}

.streaming a img:hover{
    opacity: 40%;
}

.footer{
    display: flex;
    width: 80%;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    color: #E4CA8F;
}


.footer-logo img{
    width: 4rem;
}

.footer-about{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.name1{
    font-size: 1.25rem;
    font-family: mulishMid;
    text-transform: uppercase;
}

.name2{
    font-size: 1rem;
    font-family: mulishLight;
    text-transform: capitalize;
}

.copyright1{
    font-size: 1rem;
    font-family: poppins;
    text-transform: capitalize;
}

.developer1{
    font-size: 1rem;
    font-family: poppins;
    text-transform: capitalize;
}

.developer2{
    font-size: 1rem;
    font-family: poppinsXBold;
}

.vert{
    height: 10.8rem;
}

.hor{
    display: none;
}

.footer-mailing{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.subscribe1{
    font-size: 1.25rem;
    font-family: mulishMid;
    text-transform: capitalize;
    margin-bottom: 0.5rem;
}

.subscribe2{
    font-size: 1.1rem;
    font-family: mulishLight;
    text-transform: capitalize;
    text-decoration: underline;
    cursor: pointer;
}

.footer-socials{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.social-text{
    font-family: mulishMid;
    text-transform: capitalize;
    font-size: 1.25rem;
}

.socials{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.handle{
    font-family: mulishMid;
}

.nav-right{
    visibility: hidden;
}

@media screen and (max-width: 1500px){
    html{
        font-size: 90%;
    }
    /* .hero{
        height: 105vh;
        padding: 0 0 5rem 0;
    } */
}

@media screen and (max-width: 1370px){
    html{
        font-size: 80%;
    }
}

@media screen and (max-width: 900px){
    .footer{
        width: 90%;
    }
}

@media screen and (max-width: 800px){
    .footer{
        width: 100%;
    }
}

@media screen and (max-width: 756px){
    .navbar{
        padding: 0 2rem;
    }
    .navlinks ul{
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-right{
        display: none;
    }
    /* .hero{
        height: 90vh;
    } */
    .footer{
        width: 100%;
        flex-direction: column;
        text-align: center;
    }
    .vert{
        display: none;
    }
    .hor{
        display: flex;
        width: 12rem;
    }
    .footer>div{
        align-items: center;
    }
}