* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;
}

.navbar {
    background: black;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo {
    background-color: gold;
    background-image: linear-gradient(to top, rgb(54, 42, 1) 0%, gold 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.fa-gem {
    margin-right: 0.5rem;
}

.navbar__menu{
    align-items: center;
    display: flex;
    list-style: none;
    text-align: center;
}

.navbar__links {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;

}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: gold;
    color: black;
}

.button:hover {
    background: rgb(81, 76, 9);
    transition: all 0.3s ease;
}

.navbar__links:hover {
    color: gold;
    transition: all 0.3s ease;
}


@media screen and (max-width: 960px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu{
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 50vh;
        z-index: -1;
    }

    .navbar__menu.active {
        background: black;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height:50vh;
        font-size: 1.6rem;
    }

    #navbar__logo {
        padding-left: 25px;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.5s ease-in-out;
        background: white;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }
    
    .navbar__btn {
        padding-bottom: 2rem;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: 0;
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
    }
    
    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


.projects {
  background: #131313;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
}

.projects h1 {
background-color: gold;
    background-image: linear-gradient(to top, rgb(54, 42, 1) 0%, gold 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  margin: 2rem;
  font-size: 2.5rem;
}

.projects h2 {
    background-color: gold;
    margin-bottom: 5rem;
    font-size: 2rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.projects p {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.projects__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 5rem;
}

.projects__card {
  margin: 2rem;
  height: 525px;
  width: 400px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.card__image,
.card__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__video {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.projects__card:hover .card__video {
  opacity: 1;
}

.projects__card h2 {
  position: absolute;
  z-index: 2;
  top: 350px;
  left: 30px;
}

.projects__card p {
  position: absolute;
  z-index: 2;
  top: 400px;
  left: 30px;
}

.projects__card:hover {
  transform: scale(1.075);
  transition: 0.2s ease-in;
  cursor: pointer;
}

.resume {
  background: #131313;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
}

.resume h1 {
background-color: gold;
    background-image: linear-gradient(to top, rgb(54, 42, 1) 0%, gold 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  margin: 2rem;
  font-size: 2.5rem;
}

.resume h2 {
  width: 80vw;
  color: gold;
  font-size: 2rem;
  justify-content: left;
  margin: 1rem;
}

.resume ul {
  width: 80vw;
  color: gold;
  font-size: 1.5rem;
  justify-content: left;
  line-height: 1.5;
}

.download-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  margin: 3rem;
  color: black;
  text-decoration: none;
  font-size: 1.2rem;
  transition: 0.3s ease;
  background-color: gold;
  border-radius: 15px;
}

.download-btn:hover {
  background-color: rgb(79, 82, 8);
  color: black;
  transform: scale(1.1);
}


.Home {
  background: #131313;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.about {
  width: 100%;
  height: 40vh;
  background-image: url('Images/Purdue_Background.jpg');
  background-size: cover;
  background-position: center 80%;
  background-repeat: no-repeat;
  position: relative;
}

.about__container {
  position: absolute; 
  align-items: center;
  justify-content: center;       
  display: flex;
  background-image: radial-gradient(white 0%, #777777 40%,#323232 70%, black 90%);
  opacity: 90%;
  width: 100%;
  height: 100%;
}

.about__container h1 {
  position: absolute;
  top: 30%;
  left: 12%;
  font-size: 3rem;
  color: black;
  font-weight: 900;
  background-color: transparent;
  width: 75vh;
  height: auto;
}

.profile__card {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-image: url('Images/Profile.jpg');
  background-size: 110%;
  background-position: 80% 70%;
  position: absolute;
  right: 15vw;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1200px) {
  .about__container h1 {
    left: 50%;
    top: 50%;
    width: 90vw;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .profile__card {
    opacity: 0;
    pointer-events: none;
  }
}

.bio { 
  background-color: transparent;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
}

.bio_text {
  background-color: transparent;
  height: auto;
  margin: 2.5rem;
  text-align: justify;
}

.bio_text h1 {
  font-size: 50px;
  color: white;
}

.bio_text p{ 
  font-size: 25px;
  color:rgb(155, 155, 155);
}

.bio_pic img {
  width: 42vw;
  height: auto;
  margin: 0  2.5rem;
}


.contact {
  display: grid;
  grid-template-columns: 45% auto;
  align-items: start;
  background-color: #131313;
  min-height: 100vh;
}

.contact__content {
  display: flex;
  flex-direction: column;
  padding: 5vw; 
  box-sizing: border-box; 
}

.contact__text {
  display: block;
  padding: 0 1rem 0;
  color: white;
}

.contact__pic {
  padding: 0;
}

.contact__pic img {
  height: auto;     
  width: 48vw;
  display: block;
  padding: 5vw 5vw 0;
}

.contact__content h1 {
  margin: 0;
  text-align: left; 
  color: gold;
  font-size: 100px;
  padding: 0 0 2rem;
}

.contact__form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 2rem;
  border-top: 3px solid white;
  border-left: 3px solid white;
  padding-left: 2rem;
  padding-right: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
  box-sizing: border-box;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: white;
}

input,
textarea {
  border: none;
  border-bottom: 2px solid white;
  background: transparent;
  color: lightgray;
  padding: 0.5rem 0;
  font-size: 1rem;
  width: 100%;
  outline: none;
}

button {
  margin-top: 1rem;
  padding: 0.75rem;
  border: 2px solid white;
  background-color: gold;
  cursor: pointer;
  color: black;
  font-size: 1.5rem;
  border-radius: 1rem;
}

button:hover {
    background: rgb(116, 109, 14);
    transition: all 0.3s ease;
}

.contact__text h2 {
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 2.5rem;
}

.contact__text p {
  color: gray;
  font-size: 1.2rem;
  line-height: 2rem;
}

.contact__socials {
  display: flex;
  gap: 2rem;
}

.linkedin-link {
  font-size: 2rem;
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
}

.linkedin-link:hover {
  color: #0A66C2; /* LinkedIn blue */
}

.instagram-link {
  font-size: 2rem;
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
}

.instagram-link:hover {
  color: #E1306C; /* Instagram pink */
}

.facebook-link {
  font-size: 2rem;
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
}

.fa-facebook:hover {
  color: #1877F2;  /* Facebook blue */
}

