/* ============================================================
   OMON SCHOOL — Global Styles
   ============================================================ */

/* Base */
body {
  font-family: 'Inter', sans-serif;
  color: #1f2937;
}

/* Section divider */
.section-divider {
  width: 3rem;
  height: 2px;
  background-color: #16a34a;
  margin: 0.75rem auto;
}

/* Check list item */
.check-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.check-item i {
  color: #0B8F3A;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Hero sections */
.hero {
  min-height: 420px;
  display: flex;
  align-items: center;
}

/* Card hover effect */
.card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Responsive images */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

/* Smooth transitions */
a, button {
  transition: all 0.2s ease;
}

/* Nav link active underline */
.nav-link {
  position: relative;
}

/* Green underline accent */
.green-underline {
  display: block;
  width: 3rem;
  height: 3px;
  background: #0B8F3A;
  border-radius: 2px;
  margin-top: 0.5rem;
}

/* Alternating section blocks */
.alt-block img {
  border-radius: 1rem;
  object-fit: cover;
  width: 100%;
  height: 320px;
}

/* Video card play button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
}

/* Form inputs */
.form-input {
  width: 100%;
  border: 1.5px solid #d1fae5;
  border-radius: 0.625rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.form-input:focus {
  border-color: #0B8F3A;
  box-shadow: 0 0 0 3px rgba(11, 143, 58, 0.12);
}

/* Icon circle */
.icon-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Step number circle */
.step-circle {
  width: 3rem;
  height: 3rem;
  background: #0B8F3A;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}

/* Responsive utility */
@media (max-width: 640px) {
  .hero {
    min-height: 340px;
  }
  .alt-block img {
    height: 220px;
  }
}
