body{
    font-family: 'Poppins', sans-serif;
}
section{
    /* height:500px; */
    background-color: #FAFAF3;
    /*border: solid black 5px;*/
    /*border-bottom: 0px;*/
    border-top: solid black 5px;
    border-right: solid black 5px;
    border-left:solid black 5px;

}

.hero{
    /* background-color: #1c1d25; */
    
    color: black;
    font-size: 40px;
    height: 100vh;
}


footer{
    background-color: black;
    color: white;
    text-align: center;
    padding: 80px;
}

nav{
    display: flex;
    justify-content: space-between;
    float:right;
}

.navText{
    color:black;
}

ul{
    /* list-style: none; */
    display: flex;
    width: 400px;
    list-style-type: none;
    justify-content: space-around;
    font-size: 30px;

}

li a{
    color:black;
}

li{
    /* width: 200px */
    text-decoration: none;
}


h1{
    font-size: 90px;
    margin: 0;
}

h2{
    font-size: 60px;
}

p{
    margin: 0;
    font-weight: 300;
    font-size: 30px;
}

.subtext{
    font-size: 15px;
    font-weight: 300;
}
.hero-text{
    margin-left: 80px;
    margin-bottom: 200px;
}

.hero-area{
    display: flex;
    /* flex-direction: column; */
    height: 100%;
    justify-content: space-between;
    align-items: center;
    background-image: url('/images/roboAn.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.button{
    width: 200px;
    height: 55px;
    background-color: coral;
    text-align: center;
    border-radius: 30px;
    font-weight: 300;
    font-size: 30px;
    padding-top: 5px;
    margin-top: 20px;
}

.button:hover{
    background-color: #ef744b;
}

.button:active{
    background-color: #A9A9A9;
    color: #808080;
}
.socials{
    padding-bottom: 200px;
}

.logo{
    height:80px;
    margin: 30px;
}

.social{
    margin:20px;
}

.sub-section{
    display: flex;
    justify-content: space-around;
    padding: 80px;
}

.sub-section-alt{
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 100px; /* unsure about this padding.. was 80*/
    border-top: none;
    padding-top: 40px;
}

.headshot{
    width: 300px;
    border-radius: 150px;
}

.headshot-container{
    display: flex;
    align-items: center;
    margin: 10px;

}

.projcard{
    display: flex;
    flex-direction: row;
    flex: 1 1 300px; /* Minimum width 300px, but flexible */
    /*max-width: 400px; /* Ensures project cards don’t get too big */
    /*width: 1000px;
    height:500px;
    /*margin: 10px;*/
    /*box-shadow: 5px 5px 20px rgb(197,195,195);*/
    width: 100%;
    height:auto;
    border: solid black 3px;
    margin-bottom: 35px;
    overflow: visible;

}

.project-container{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    
}

.proj-img{
    margin:20px;

    /* margin-right: 25px;
    margin-left: 25px; */
    /*width: 500px;
    max-width: 500px;
    
    /* border-radius: 125px; */
    
    width:100%;
    
    height: auto;
    max-height: 300px;
    border: solid black 3px;
    overflow: hidden;
    
}

.textDes{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
}

@media only screen and (max-width: 1000px) {
    .nav{
        display: flex;
    }
    .project-container{
        display: flex;
        flex-wrap: wrap;
    }
    .hero-area{
        
        background-image: none;    
    }
    .hero{
        height: 100px;
        display: flex;
        flex-direction: column;
    }
}
hr{
    margin-left: 20px;
    margin-right: 20px;
}

.project-link{
    text-decoration: none;
    color: #ef744b;
}

a{
    text-decoration: none;
    color: white;
}

.hamburger{
    display: none;
}

.hamburger:focus{
    outline:0;
}

@media only screen and (max-width:1000px){
    .hamburger{
        display:block;
        border:0;
        background-color: transparent;
        color:white;
        font-size: 30px;
        margin: 20px;
        align-self: center;

    }
    ul{
        display: none;
        background-color: #797a80 /*#2b2c38*/;
        margin:0px;
    }
    ul.show{
        display:flex;
    }

    nav{
        display: hidden;
        flex-direction: column-reverse;
        background-color: #797a80 /*#2b2c38*/;
    }
    .logo{
        display:none;
    }
}

.headadj{
    text-align: center;
}

@media (max-width: 1024px) {
    .projcard {
        flex-direction: column; /* Stacks image above text */
        text-align: center;
        align-items: center;
    }

    .proj-img {
        width: 100%; /* Full width on mobile */
        max-width: 350px; /* Keeps it a reasonable size */
    }
}
