@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "EB Garamond", serif;
}

body {
  background: #f4f0eb;
  color: #3c3c3c;
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.hero-image,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-out;
  will-change: transform;
}

/* Generic Section Styling */
section {
  padding: 60px 20px;
  text-align: justify;
}

.about,
.mission-vision,
.principal-msg,
.trustee-msg {
  background-color: #faf9f6;
  margin: 0 auto 30px;
  padding: 3rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  max-width: 1100px;
  margin-top: 20px;
}

.about h2,
.mission-vision h2,
.principal-msg h2,
.trustee-msg h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #3c3c3c;
  border-left: 5px solid #a1866f;
  padding-left: 15px;
}

.about p,
.mission-vision li,
.principal-msg p,
.trustee-msg p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #5c5c5c;
}

/* Mission/Vision List */
ul,
li {
  list-style-type: none;
}

.mission-vision ul {
  padding-left: 0;
}

.mission-vision li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.mission-vision li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #867c68;
  font-size: 1.1rem;
}

/* Principal Message Layout */
.principal-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.principal-text {
  flex: 1 1 55%;
  font-size: 16px;
  line-height: 1.8;
  color: #3c3c3c;
}

.principal-image {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.principal-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Trustee Message Layout */
.trustee-msg .trustee-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b4b4b;
  margin-bottom: 2rem;
}

.trustee-msg .trustee-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 1rem;
}

.trustee-card img {
  width: 160px;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.trustee-card p {
  text-align: center;
  margin-top: 8px;
  font-size: 1rem;
  color: #5c5c5c;
}

.trustee-msg .trustee-images img:hover {
  transform: scale(1.05);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .principal-content {
    flex-direction: column;
    text-align: center;
  }

  .principal-text {
    font-size: 15px;
  }

  .principal-image {
    margin-top: 20px;
  }

  .trustee-msg .trustee-images img {
    width: 120px;
    height: 110px;
  }

  .trustee-msg .trustee-text {
    font-size: 1rem;
  }
}
