.syncopate-regular {
  font-family: "Syncopate", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.syncopate-bold {
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.google-sans {
  font-family: "Google Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "GRAD" 0;
}

#stars{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000619;
}

.logo-wrapper{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}


body{
    background-color: transparent;
    margin: 0;
    padding: 0;
}

.top-header {
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    padding: 30px 5%; 
    color: #FFFFFF;
    background-color: #000619; 
}

.hamburger{
    display: none;
    cursor: pointer;
}

.bar{
    display:block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;

}
.logo {
    z-index: 998;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: "Syncopate", sans-serif; 
}

.nav-menu{
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #FFFFFF;
    white-space: 100px;
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 3px;
    white-space: 100px;
    font-family: 'Google Sans', sans-serif; 
}


main{
    color: #ffffff;
}

.hero-section{
    min-height: 75vh;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}


/* Invisible rotating container */
.orbit-path {
    position: absolute;

    width: min(500px, 70vh);
    height: min(500px, 70vh);

    animation: spin 12s linear infinite;
}

/* Object orbiting around center */
.orbiter {
    position: absolute;

    width: 50px;
    height: 50px;

    fill: white;
    border-radius: 50%;

    top: 50%;
    left: 50%;

    transform: translateX(calc(min(70vw, 500px) / 2));
}

.orbiter svg{
    transform: rotate(90deg);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.headshot{
    width: 100px;
    height: auto;
    
}

.main-title{
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 10px;
    font-family: "Syncopate", sans-serif;
}

.section-heading{
    font-family: "Syncopate", sans-serif;
}

.welcome-section{
    margin-top: 15vh;
    padding: 50px 5%;
    background-color: #cccccc;
    color:#000619;
    flex-direction:column;
    justify-content:center;
    align-items: center;
    text-align: left;
    font-family: "Google Sans", sans-serif;
    font-size: 1.5rem;
}

.project-section{
    margin-top: 15vh;
    padding: 50px 5%;
    background-color: #cccccc;
    color:#000619;
    flex-direction:column;
    justify-content:center;
    align-items: center;
    text-align: left;
    font-family: "Google Sans", sans-serif;
    font-size: 1.5rem;
}

.project-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card{
    background-color:transparent;
    outline-color:#000619;
    outline-width: 0.25rem;
    outline-style: solid;
    aspect-ratio: 1/1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.footer{
    color: #ffffff;
    background-color: transparent;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    font-family: 'Google Sans', sans-serif;
    padding: 50px 5%;

}

.subtitle{
    font-size: 1.2rem;
    max-width:  500px;
    font-weight: 400;
    font-family: "Google Sans", sans-serif;
}


.social-links{
    display: flex;
    align-items: center;
    align-content: center;
    gap: 20px;
}

.social-icon{
    color: #FFFFFF;
    font-size: 1rem;
    width: 30px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover{
    color: #ff9900;
    justify-content: space-between; 
    transform: translateY(-5px);
}



@media (max-width: 768px){

    .logo{
        font-size: 1.5rem;
    }
    .project-grid{
        grid-template-columns: 1fr;
    }
    .hamburger{
        z-index: 998;
        display:block;
    }

    .main-title{
        font-size: 3rem;
    }

    .nav-menu{
        z-index: 997;
        position: fixed;
        left: -100%;
        top: 40px;
        gap: 0;
        flex-direction: column;
        background-color: #000619;
        height: 100%;
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        display:flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .nav-menu a{
        margin: 20px 0;
    }

    .nav-menu.active{
        left:0;
    }

    .hamburger.active .bar:nth-child(2){
        opacity: 0;
        z-index: 998;
    }

    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
        z-index: 998;
    }

    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
        z-index: 998;
    }

}