@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
    --primary-color: #003153;
    --primary-color-200: hsla(205, 100%, 16%, 0.203);
    --secondary-color: #663399;
    --secondary-color-500: #6633994f;
    --white: #ffffff;
    --black: #000000;
    --black-600: #000000ee;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;  
}

::selection{
    background-color: var(--secondary-color);
    color: var(--white);
}

body{
    width: 100%; 
    position: relative;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

.sub-hero{
    background: url(./images/artists/apostle.jpeg);
    background-size: 100%;
    background-position:0 -30vh;
    width: 100%;
    height: 80vh;
}


.sub-hero header{
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    gap: 20px;
    padding: 1rem 6vw;  
    position: sticky;
    top: 0;
    z-index: 11111;
    backdrop-filter: blur(5px);
}

header .logo a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

header .logo h1{
    color: var(--white);
}

.sub-hero header nav{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    list-style: none;
}

.sub-hero header nav a{
    color: var(--white);
    text-decoration: none;
    opacity: .7;
}

.sub-hero header nav a.active, .sub-hero header nav a:hover{
    font-weight: 600;
    opacity: 1;
}

.sub-hero header .cta{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: white;
}

.sub-hero header .cta i{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1em;
    background-color: var(--secondary-color-500);
    cursor: pointer;
    transition: all .3s ease;
}

main{
    padding: 7rem 12vw;
    min-height: 120vh;
    display: flex; 
}

main .hero-text{
    flex: 1;
}

main .hero-text h1{
    font-size: 4vw;
    line-height: 4.2vw;
    color: var(--white);
    text-shadow: 0 0 5px black;
}

main .hero-text h1 span{
    font-weight: 700;
    font-size: 5vw;
}

main .hero-text p{
    margin-block: .8rem;
    color: #bdb8b8;
}

main .hero-text button{
    margin-block: .7rem;
    background: rgba(108, 19, 45, 0.808);
    border: none;
    outline: none;
    padding: .7rem 1.2rem;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

main .hero-text button:hover{
    background-color: rgba(255, 0, 0, 0.562);
    transform: scale(1.1);
}

main .hero-image{
    flex: 1;
    display: flex;
    justify-content: flex-end; 
    gap: 10px;
}

main .hero-image img{
    width: 180px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    transform: rotate(15deg);
    transition: all .3s ease-in-out;
}

main .hero-image img:hover{
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .4);
    z-index: 11;
}

.subscribe{
    width: 90%;
    border-radius: 20px;
    min-height: 40vh; 
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    z-index: 111;
    display: flex;
    align-self: center; 
    align-items: center;  
    background: var(--secondary-color); 
}

.subscribe h1{
    flex: 1;
    padding: 0 4rem;
    font-size: 4rem;
    line-height: 4rem;
    color: black;
}

.subscribe form{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    gap: 1rem;
}

.subscribe form .form-control{
    display: flex;
    background-color: black;
    width: 90%;
    height: 60px;
    border-radius: 35px;
    padding: 5px;
}

.subscribe form .form-control input{
    flex: 3;
    border: none;
    outline: none;
    padding-left: 2rem; 
    font-size: 1rem;
    background: transparent; 
    color: var(--white);
}

.subscribe form .form-control button{
    flex: 2;
    border: none;
    outline: none;
    background: #232323;
    color: var(--white);
    border-radius: 25px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .3rem .3rem .3rem .9rem;
}

.subscribe form .form-control button i{
    background-color: var(--secondary-color);
    height: 100%;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe form .socials{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: .5rem;
}

.subscribe form .socials i{
    font-size: 1.2rem;
    cursor: pointer;  
    background-color: black;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.footer{
    background: var(--black);
    position: relative;
    width: 100%;
    min-height: 100vh;
    color: var(--white); 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2vh; 
}

.footer .gradient{
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(224, 65, 113, 0.808) 0%, rgb(1, 23, 39) 60%);
    filter: blur(60px);
    position: absolute; 
    top: 20%;
    right: 5%;
    transform: translate(-50% -20%);
    opacity: .5;
}

.footer .footer-head{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: center;
    margin: 2rem 8vw;
    padding-block: 3rem;
    position: relative;
    z-index: 11;
    gap: 4rem;
    border-bottom: .5px solid var(--white);
}

.footer .footer-head .logo{
    width: 100%;
    position: relative;
}

.footer .footer-head .logo a{
    display: flex;
    width: 70% !important;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer .footer-head .text p{ 
    line-height: 30px;
}

.footer .footer-head .social{
    font-size: 1.6rem;
    margin-top: 1rem;
    opacity: .7;
}

.footer .title{
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer nav{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer nav a{
    text-decoration: none;
    color: var(--white);
}

.footer strong{
    font-weight: 700;
}

footer{
    z-index: 111;
}