/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Main Body Styling */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: radial-gradient(
  circle at 0% 0%,
  rgba(238, 233, 247, 0.6),
  rgba(255, 246, 229, 0.585));
  color: #444;
  line-height: 1.6;
  font-family: 'GlacialIndifference-Bold','Teachers', sans-serif;
}

/* ===== HOME PAGE STYLES ===== */

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px 100px; /* Adjusted padding for better spacing */
  position: relative;
}

.hero h1 {
  font-family: "Sue Ellen Francisco", cursive;
  font-size: 2.5rem; /* Larger to match image */
  max-width: 800px;
  margin: 0 auto 50px;
  color: #5d4b4b;
}

.hero-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.home-landing-page img {
  max-height: 150px;
  width: auto;
  border-radius: 15px;
}

.home-landing-page:hover{
  transform: translateY(-16px)
}
.hero-values {
  text-align: left;
  font-family: "HandyCasual", "Happy monkey", sans-serif;
  color: #5d8a8a; /* Grayer to match image */
  font-weight: 700;
  margin-left: 30px; /* Gap between image and text */
  letter-spacing: 1rem;
  
}

.value-item {
  margin-bottom: 15px;
  font-size: 1.3rem;
  letter-spacing: 3px;
  line-height: 1.2;
  text-transform: uppercase;
}

.explore-btn {
  margin-top: 20px;
  background: #9b59b6;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'GlacialIndifference-Bold', "Teachers", "Lexend", "Didact Gothic", Helvetica, sans-serif;
  letter-spacing: 3px;
  font-size: 1.5rem;

;
}

.explore-btn:hover {
  background: #7d3c98;
}

/* ====== MOBILE NAV STYLING ====== */

/* Tablet / small desktop tweaks */
@media (max-width: 1200px) {
  .hero {
    padding: 70px 18px 80px;
  }

  .hero h1 {
    font-size: 2.2rem;
    max-width: 720px;
  }

  .home-landing-page img {
    max-height: 140px;
  }
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 2rem; /* Slightly smaller on mobile */
  }

  .hero-illustration {
    flex-direction: column; /* Stack image and values on mobile */
  }

  .hero-values {
    margin-left: 0;
    margin-top: 30px;
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 0.6rem;
  }

  .value-item {
    text-align: center;
  }
  .home-landing-page img {
    max-height: 140px;
  }
  .explore-btn {
    font-size: 1.25rem;
    padding: 12px 22px;
  }
}

/* Small screens (mobile phones) */
@media (max-width: 480px) {
  .hero {
    padding: 50px 12px 60px;
  }

  .hero h1 {
    font-size: 1.6rem;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .home-landing-page img {
    max-height: 120px;
    width: auto;
  }

  .hero-values {
    margin-left: 0;
    margin-top: 20px;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.4rem;
  }

  .value-item {
    font-size: 1rem;
    letter-spacing: 3px;
  }

  .explore-btn {
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 20px;
  }

  /* Remove transform hover effect on touch devices in favor of no animation */
  .home-landing-page:hover { transform: none; }
}

/* Prefer hover styles only on devices that support hover */
@media (hover: hover) and (pointer: fine) {
  .home-landing-page:hover { transform: translateY(-16px); }
}