@import url('https://fonts.googleapis.com/css2?family=Parisienne&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}

:root{
    --main-background: #11052C;
    --purple: #892CDC;
    --white: #FFFFFF;
    --light-purple: #E384FF;
    --gray: #E1E8EB;
}
body{
    background-color: var(--main-background);
}

.hide{
    display: none;
}

.main-container{
    width: auto;
    height: auto;
    padding: 0 5rem;
}

nav{
    height: 10vh;
    display: flex;
    align-items: center;
    padding: 3rem 0;
    justify-content: space-between;
}

.logo{
    font-size: 3rem;
    font-weight: 800;
    color: var(--purple);
    font-family: 'Parisienne', cursive;
}

.links{
    width: auto;
    height: auto;
}

.links ul{
    display: flex;
    gap: 2rem;
    list-style: none;
}

.links ul li a{
    color: var(--white);
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    transition: 1s;
}

.links ul li a:hover{
    color: var(--light-purple);
    font-weight: 500;
    text-decoration: underline;
}

.menu{
    display: none;
}

.intro{
    width: 100%;
    height: 50vh;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.intro-image{
    width: 40%;
    height: 100%;
}

.intro-image img{
    width: 100%;
    height: inherit;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--purple);
    filter: drop-shadow(2px 2px 20px #000a0a);
}

.intro-text{
    width: 100%;
    color: var(--white);
}
.intro-text h1{
    font-family: 'Quicksand', sans-serif;
    font-size: 5rem;
    margin-bottom: 1rem;
}

.intro-text h2{
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 200;
    margin-bottom: 1rem;
}

.intro-text h2 b{
    font-family: 'Quicksand', sans-serif;
    color: var(--purple);
}


.intro-text p{
    font-family: 'Quicksand', sans-serif;
    font-weight: 100;
    font-size: 1.1rem;
    color: var(--gray);
}

.friends{
    width: 100%;
    height: 80vh;
    border: 3px dashed #8a2cdc58;
    border-radius: 20px;
    margin-top: 5rem;
    margin-bottom: 3rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.friend-circle{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    position: relative;
}

.f-center{
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(2px 2px 20px #0a0a0a);
}

.f-smaller{
    width: 150px;
    height: 150px;
}

.friends h2{
    font-size: 2rem;
    font-family: 'Parisienne', cursive;
    color: var(--purple);
}

.contact{
    width: 100%;
    height: 20vh;
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.call, .email{
    color: var(--white);
}

.call h3, .email h3{
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Quicksand', sans-serif;
}

.call h3 b{
    color: var(--purple);
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
}

.email a{
    text-decoration: none;
    color: var(--purple);
    font-family: 'Quicksand', sans-serif;
}

.email a:hover{
    text-decoration: underline;
}

.footer{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer p{
    color: rgb(82, 82, 82);
    font-weight: 100;
    font-family: 'Quicksand', sans-serif;
}

.footer p b{
    color: var(--purple);
    font-family: 'Parisienne', cursive;
}

@media (max-width: 640px) {

    .links ul li a{
        font-size: 0.7rem;
    }

    .links ul{
        gap: 1rem;
    }


    .logo{
        font-size: 1rem;
    }

    .main-container{
        width: 100%;
        padding: 0 2rem;
    }

    

    .intro{
        flex-direction: column;
        height: auto;
    }

    .intro-image{
        width: 100%;
        height: 50%;
    }

    .intro-image img{
        height: 100%;
        border-radius: 20px;
    }

    .friends{
        width: auto;
        height: auto;
    }

    .friend-circle{
        width: 100%;
        height: 100%;
        gap: 2  rem;
        flex-direction: column;
        margin-bottom: 1rem;
    }

    .f-center{
        width: 80%;
        height: 80%;
        border-radius: 20px;
        
    }

    .f-smaller{
        width: 50%;
    }

    .friends h2{
        font-size: 1rem;
    }

    .contact{
        flex-direction: column;
        justify-content: space-around;
    }

    .call h3, .email h3{
        font-size: 1rem;
    }

    .footer p{
        font-size: 0.7rem;
    }
}

@media (width: 1280px) {
    /* body{
        background-color: green;
        
    } */

    
}