@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 {
    --mainColor: #fdfdfd;
    --darkColor: #0c1618;
    --lightDarkColor: #132326;
    --fontColor: #7a7a7a;
    --darkWhite: #e8eced;
    --linkBlue: #057afc;
    --red: #ff0000;
    --blurple: #454fbf;
    --darkGrey: #333;
    --green: rgb(22, 174, 22);
    --nav-text-color: #242424;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0 auto;
    background-color: var(--mainColor);
    color: var(--fontColor);
    font-family: "Poppins", sans-serif;
}

.visible {
    visibility: visible;
}

.hidden {
    display: none;
}

/*  HEADER DESIGN*/

header nav{
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
}

nav .brand {
    font-size: 1.5em; /* Previous 2em */
    font-weight: 800;
    color: var(--darkColor);
    text-decoration: none;
}

nav .links {
    display: flex;
    gap: .75rem;
}

nav .nav__link {
    color: var(--nav-text-color);
    font-size: 1.1em;
    padding: 0.125rem;
    text-decoration: none;
}
/*  MOBILE NAV */
/*
.nav__mobile__active {
    height: 100vh;
    width: 100vw;
}

#nav-mobile {
    display: none;

    justify-content: center;
    align-items: center;
}

#mobile-nav-button {
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
}

.nav__mobile__links__active {
    visibility: visible;
    display: flex;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
  
.nav__mobile__links__not__active {
    display: none;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
*/

/*  Mobile-Detection    */
#not-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 9999;
}

#loading-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#loading-content span{
    font-size: 1.25rem;
    font-weight: 400;
}

/*	LANDING PAGE DESIGN	*/

main {
    padding: 0 auto;
}

#landing {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 38rem;
    background-color: var(--darkWhite);
}

#landing .landing-container {
    display: flex;
    flex-direction: column;
    flex-flow: column;

    justify-content: center;
    align-items: center;

    gap: .25rem;

    padding: 8.25rem;
}

#landing .title {
    font-weight: 700;
    font-size: 1.75rem;
    text-align: center;
}

#landing .landing-container .description {
    font-weight: 400;
    font-size: 1.075rem;
    text-align: center;
}

#landing .landing-link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.075rem;

    padding: .6rem;
    border-radius: 1.25rem;
    transition: all 250ms;
}

#landing .landing-link:hover {
    background-color: #d2d7e7;
}

/*  FOOTER DESIGN */

footer {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 35px;
    padding: 100px;
    background-color: var(--darkColor);
}

footer .footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

footer .footer-links .footer__link {
    text-align: center;
    color: var(--darkWhite);
    font-size: 1.1em;
    padding: 0.125rem;
    text-decoration: none;
}

footer p {
    text-align: center;
    color: #afb3b4;
}


/*	RESPONSIVE DESIGN 	*/

@media screen and (max-width: 1200px) {
    #landing .landing-container {
        padding: 7rem;
    }
}

@media screen and (max-width: 1100px) {
    #landing .landing-container {
        padding: 6.5rem;
    }
}

@media screen and (max-width: 1000px) {
    #landing .landing-container {
        padding: 4.25rem;
    }
}

@media screen and (max-width: 900px) {
    #landing .landing-container {
        padding: 3rem;
        hyphens: auto;
    }
}

@media screen and (max-width: 800px) {
    #not-mobile {
        display: flex;
    }
    #landing .landing-container {
        padding: 1.65rem;
    }
}

@media screen and (max-width: 768px) {
    #nav-desktop {
        display: none;
    }
    #nav-mobile {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 700px) {

}

@media screen and (max-width: 660px) {
    #landing .landing-container {
        padding: 1.25rem;
    }
}

@media screen and (max-width: 550px) {
    #landing .landing-container {
        padding: 1.25rem;
    }
}


