/* ============================= */
/* Base Styles                  */
/* ============================= */

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fdfaf6;
  color: #333;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #4b2e2e;
}

/* ============================= */
/* Section Spacing & Container  */
/* ============================= */

main section {
  padding: 4rem 0;
  position: relative;
}

.container {
  max-width: 1140px;
}

/* ============================= */
/* About Image Styling          */
/* ============================= */

img {
  max-width: 100%;
  height: auto;
  border-radius: 1.25rem;
  transition: transform 0.5s ease;
}

img:hover {
  transform: scale(1.02);
}

/* ============================= */
/* Parallax Background Section  */
/* ============================= */

.bg-dark {
  background: linear-gradient(135deg, #1a1a1a, #333);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #fff;
}

/* ============================= */
/* Mission & Vision Cards       */
/* ============================= */

.bg-light {
  background-color: #fff !important;
}

.rounded-3 {
  border-radius: 1rem;
}

.shadow-sm {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

h5, h3 {
  color: #6b4226;
}

/* ============================= */
/* Fade-in Animation            */
/* ============================= */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================= */
/* Responsive Tweaks            */
/* ============================= */

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .rounded-3 {
    border-radius: 0.75rem;
  }
}
