

section {
  padding: 10px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100vw;
}

/* Button Styles */

.button-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  justify-items: center;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 10px 10%;
  background: var(--primary-bg);
  color: var(--text-color);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: all 0.5s ease;
  cursor: pointer;
}

.btn-primary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.btn-text {
  flex: 1;

}

#hero-section {
  background-image: linear-gradient(
      to left,
      rgba(0, 0, 0, 0.769),
      rgba(0, 0, 0, 0.61)
    ),
    url("../img/gallery/IMG_6871.png");
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section Styles */
.about {
  display: flex;
  flex-direction: column;
}

.about-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 16px
}

.about-row {
  display: flex;
  flex-direction: column;
  width: 100%;

}

.about-column {
  flex: 1;
  padding: 2%;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  flex: 1;
}

.main-image {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 20px 30px rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  object-fit: cover;
  transition: scale 2s ease-in-out;
  gap: 2rem;
}

.content-container {
  height: 100%;
}

.tagline {
  display: inline-block;
  border-radius: 50px;
  background-color: #2d2e2f;
  color: var(--header-text-color);
  padding: 5px 15px;
  margin-bottom: 15px;
}

.heading {
  font-size: 1.7rem;
  line-height: 1.2;
  margin-bottom: 1px;
}

.highlight-box {
  background-color: #f8f9fa;
  border-bottom: 5px solid var(--main-color);
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 30px;
}

.highlight-text {
  color: #343a40;
  margin-bottom: 10px;
}

.description {
  margin-bottom: 30px;
}

.vision {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  overflow: hidden;
}

.vision-card {
  margin: 16px;
}

.vision-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.vision-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.vision-text-body h5 {
  font-size: 16px;
  margin: 16px 0%;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 6px;
}

.vision-text-body h2 {
  font-weight: 800;
  font-size: 22px;
  line-height: 32px;
  margin: 16px 0%;
}

.vision-text-body p {
  font-size: 16px;
  line-height: 24px;
  margin: 16px 0%;
}



.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  overflow: hidden;
}

.intro-card {
  margin: 16px;
}

.intro-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.intro-text-body h5 {
  font-size: 16px;
  margin: 16px 0%;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 6px;
}

.intro-text-body h2 {
  font-weight: 800;
  font-size: 22px;
  line-height: 32px;
  margin: 16px 0%;
}

.intro-text-body p {
  font-size: 16px;
  line-height: 24px;
  margin: 16px 0%;
}




/* Media Queries */

@media (min-width: 1024px) {

  .about {
    flex-direction: row;
    padding: 50px 0;
  
  }

  .about-inner {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .about-row {
    flex-direction: row;
    width: 100%;
  }

  .image-container {
    padding: 8px 5%;
  }

  .vision .vision-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  .vision-card {
    padding: 0 10%;
  }

  .vision-img {
    flex: 1;
  }

  .vision-text-body {
    flex: 1;
  }

  
  .intro {
    flex-direction: row;
    align-items: center;
    gap: 9rem;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .intro-card {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 10%;
  }

  .intro-img {
    flex: 1;
    margin: 32px;
  }

  .intro-text-body {
    flex: 1;
    margin: 32px;
  }

  .intro-text-body p {
    font-size: 16px;
    line-height: 32px;
  }



}

@media (min-width: 768px) {

  .intro {
    flex-direction: row;
    align-items: center;
    gap: 9rem;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .intro-text-body p {
    font-size: 16px;
    line-height: 32px;
  }

  .vision .vision-card.reverse {
    flex-direction: row-reverse;
  }

}
