/* Importing the fonts */



.navbar {
    position: absolute;
    top: 0;
    left: 0;
}



.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;

    background-image: url('images/background.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

}

.content-wrapper {
    max-width: 600px;
    padding: 20px;
    margin-bottom: 10vh;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    letter-spacing: 2px;
    white-space: nowrap;
    animation: fadeIn 2s ease-in-out forwards;
}

@keyframes fadeIn {
  0% { 
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.intro {
    font-size: 1.3rem;
    color: white;
    line-height: 1.5;
    font-weight: bold;
    animation: fadeIn 2s ease-in-out forwards;
}




.container img {
    width: 500px;
    height: 300px;
    border-radius: 50%;

}

/* Container layout */
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Creates 3 equal columns */
  gap: 40px;                             /* Space between columns and rows */
  padding: 20px;
  max-width: 1000px;                     /* Adjust based on your design */
  margin: 0 auto;                        /* Centers the grid on the page */
}

/* Card layout */
.person {
  display: flex;
  flex-direction: column;
  align-items: flex-start;               /* Aligns description to the left */
}

/* Square Image Placeholder */
.image-box {
  width: 100%;
  aspect-ratio: 1 / 1;                   /* Forces the box to stay perfectly square */       
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Description Text */
.desc {
  margin-top: 10px;                      /* Space between image and text */
}
