/*--------------------------This is for Landing Page styling-------------------------------------*/


.main-hero {
  min-height: calc(100vh - 96px); /* More flexible than fixed height */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem 2rem; /* Ensure space for nav/logo */
  color: #d1d5db;
  position: relative;
}

.hero-content {
  max-width: 800px;
  animation: fadeUp 1s ease-out;
}

.main-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: white;
}

.main-hero h2 {
  font-size: 1.5rem;
  color: #bf7973;
  margin-bottom: 1rem;
}

.main-hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.highlight {
  color: #66d9c4;
}

.projects-card {
  padding: 4rem 1rem 0;
  border-top: solid #d1d5db05
}






/*--------------------------This is for Landing Page Hero styling-------------------------------------*/


.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #66d9c4;
  font-size: 1rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}

.scroll-down i {
  display: block;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  opacity: 1;
  transition: opacity 3s ease;
}

.scroll-down.hide {
  opacity: 0;
  pointer-events: none;
}

.scroll-down span {
    color: #d1d5db;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(6px);
  }

  60% {
    transform: translateX(-50%) translateY(3px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





/*--------------------------This is for card styling-------------------------------------*/



.aboutme-card {

    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 6rem;
}

.aboutme-card p {
    padding-bottom: 1rem;
}






/*--------------------------This is for About Me styling-------------------------------------*/
.aboutme-card img {
  border-radius: 50%;
  height: 200px;
  width:200px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
}

.project-module.profile-card .project-image img {
  max-width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin: 0 auto;
  border-radius: 50%;
}
















/*-----------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------This is for @media 768px (tablet and higher) styling-----------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------------------------------------------------------*/
@media (min-width: 768px) {
  .main-hero h1 {
    font-size: 4rem;
  }

  .main-hero h2 {
    font-size: 2rem;
  }

  .main-hero p {
    font-size: 1.25rem;
  }
}


@media (min-width: 1024px) {
  .main-hero h1 {
    font-size: 4rem; /* or larger, depending on how bold you want */
  }

  .main-hero h2 {
    font-size: 2.5rem;
  }

  .main-hero p {
    font-size: 1.5rem;
  }

  .aboutme-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: left;
  }

  .aboutme-card img {
    margin: 0;
  }

}