@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');

* {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

*::-webkit-scrollbar {
    display: none;
}

nav {
    width: 100vw;
}

.navbar {
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 7vh;
    transition: top .5s ease;
    z-index: 10;
}

.navbar-group {
    display: flex;
    align-items: center;
    flex-grow: 1;
    margin: 0;
}

.logo {
    margin: 0 1.5rem;
}

.logo a {
    text-decoration: none;
    color: black;
    font-size: 17px;
}

.navbar ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
}

.navbar-items {
    margin: 0 1.5rem;
}

.navbar-items ul li {
    display: flex;
    justify-content: center;
    align-items: center; 
}

.navbar-items ul li a {
    text-decoration: none;
    color: white;
    width: 5rem;
    margin: 3vh 1vh;
    text-align: center;
    position: relative;
    transition: all .5s ease;
}

.navbar-items ul li a:after {    
    content: "";
    display: block;
    height: 3px;
    bottom: 0;
    position: relative;
    left: 50%;
    background: #e6b606;
    transition: width 0.3s ease, left 0.3s ease;
    width: 0;
}

.navbar-items ul li a:hover:after { 
    width: 100%; 
    left: 0; 
}

.navbar ul li a:hover {
    color: #e6b606;
    transition: all .5s ease;
}

.toggleSidebar {
    padding: 0;
    font-size: 24px;
    background-color: transparent;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 9;
    position: relative;
    display: none;
}

.sidebar {
    display: none;
    height: 100vh;
    width: 150px;
    position: fixed;
    top: 0;
    left: -150px;
    background-color: #212121;
    transition: left 0.3s ease;
    overflow: hidden;
    z-index: 10;
    border-right: 1px solid rgba(255, 255, 255, 0.359);
}

.sidebar-header {
    background-color: #212121;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    height: 50px;
}

.sidebar-header h1 {
    font-size: 20px;
}

.sidebar-list {
    height: 100vh;
}

.sidebar-list ul {
    list-style: none;
    margin: 0;
}

.sidebar-list ul li {
    margin: 10px 0;
    position: relative;
    transition: all 1s;
}


.sidebar-list ul li a {
    display: block;
    text-decoration: none;
    color: white;
    font-size: 14px;
    padding: 10px;
}

.close-btn {
    background-color: #212121;
    color: white;
    border: hidden;
    font-size: 30px;
    cursor: pointer;
}

#about-side {
    background-color: #e6b606;
    color: black;
}

.main-header {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

header {
    color: white;
    background-color: #000f1a;
    background-image: url(../images/header.jpg);
    background-size: 100vw 110%;
    background-position: center;
}

header h1 {
    font-size: 4rem;
    color: white;
}

h1 {
    color: white;
    
}

.header-main {
    width: 90%;
    padding: 50px 0;
    text-align: center;
}

main {
    background-color: #212121;
    padding: 50px 100px;
    color: white;
}

.about-description{
    font-size: 24px;
    letter-spacing: 5px;
    font-weight: bold;
}

.about {
    display: flex;
    justify-content: center;
    padding: 0 50px;
    overflow-y: hidden;
}

.about-member {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all .3s;
    padding: 60px;
}

.about-member:hover {
    transform: scale(1.1);

}

.about img {
    border-radius: 20px;
    margin-bottom: 20px;
}

.footer-bio {
    text-align: left;
    background-color: #111;
    color: white;
    padding: 30px 100px;
    display: none;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.249);
}

.footer-bio h3 {
    font-size: 1.5rem;
}

.footer-contact, .footer-about {
    padding: 10px;
    line-height: 1.7;
    width: 450px;
}

.footer-contact ul, .footer-bio p {
    margin-top: 7px;
}

.footer-contact ul li {
    list-style-type: none;
}

.footer-about p {
    margin-bottom: 10px;
}

.footer-about a {
    background-color: white;
    border: 1px solid white;
    border-radius: 5px;
    color: black;
    text-decoration: none;
    font-size: 0.8rem;
    padding: 5px 20px;
    transition: all 0.4s ease;
}

.footer-about a:hover {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.footer-copyright {
    color: white;
    background-color: #0a0a0a;
    padding: 20px 0px;
    width: 100%;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    nav {
        background-color: #111;
        z-index: 9;
    }

    .logo, .navbar {
        margin: 0 15px;
        padding: 0;
        font-size: 12px;
    }

    .navbar-group a {
        font-size: 18px;
    }

    .logo {
        display: block;
        padding: 10px;
        margin: 0 20vw;
        text-align: center;
    }

    .navbar-items {
        display: none;
    }

    .toggleSidebar {
        display: block;
        z-index: 10;
    }

    .sidebar {
        display: grid;
        width: 150px;
    }

    .sidebar.open {
        left: 0;
    }

    .header-main h1 {
        font-size: 3rem;
        color: white;
    }

    main {
        padding: 30px 0;
        text-align: center;
    }
    
    .about {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bio {
        padding: 15px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .footer-contact {
        width: 150px;
        font-size: 10px;
        padding: 2px;
    }
    
    .footer-about {
        font-size: 10px;
        width: 170px;
        padding: 2px;
        padding-bottom: 5px;
    }

    .footer-about a {
        padding: 2px 20px;
    }

    .footer-copyright {
        font-size: 12px;
        padding: 10px;
    }
}
