/* ===== HOME PAGE HERO SECTION ===== */
.hero-section {
  position: relative;
  width: 100%;
  padding: 100px 0 110px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 520px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(82, 11, 8, 0.82) 0%,
    rgba(128, 22, 18, 0.85) 50%,
    rgba(61, 7, 5, 0.85) 100%
  );
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 960px;
  margin: 0 auto;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge-pill {
  display: inline-block;
  border: 1px solid rgba(255, 215, 0, 0.45);
  border-radius: 24px;
  padding: 6px 22px;
  color: #ffd700;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  margin-bottom: 24px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
}

.hero-welcome {
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}

.hero-welcome-sub {
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: #ffd700;
  margin-top: 4px;
  margin-bottom: 12px;
}

.hero-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(26px, 4.5vw, 42px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin: 0 0 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title-sub {
  display: block;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  margin-top: 10px;
}

.highlight-gold {
  color: #ffd700;
}

.hero-tagline {
  max-width: 820px;
  margin: 0 auto 36px;
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-action-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-gold {
  display: inline-block;
  background: #c2932c;
  color: var(--white);
  padding: 13px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-hero-gold:hover {
  background: #a97c21;
  transform: translateY(-1px);
}

.btn-hero-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 11px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  border: 2px solid var(--white);
  transition: background 0.25s, color 0.25s, transform 0.2s;
}

.btn-hero-outline:hover {
  background: var(--white);
  color: #801612;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 70px 0 80px;
  }
  .hero-welcome {
    font-size: 20px;
  }
  .hero-welcome-sub {
    font-size: 17px;
  }
  .hero-tagline {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .btn-hero-gold,
  .btn-hero-outline {
    padding: 11px 26px;
    font-size: 13.5px;
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
  .hero-action-btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}

/* ===== HOME PAGE ACHIEVEMENTS SECTION ===== */
.home-achievements {
  padding: 60px 0;
  background: var(--white);
}

.home-achievements-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 65px 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.home-achievements-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(82, 11, 8, 0.92) 0%,
    rgba(128, 22, 18, 0.94) 50%,
    rgba(61, 7, 5, 0.94) 100%
  );
  z-index: 1;
}

.home-achievements-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}

.home-achievements-content h2.section-title {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 8px;
  font-weight: 700;
  text-align: center;
}

.home-achievements-content p.section-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.achievements-grid-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.achievement-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: left;
  transition: transform 0.3s ease, background 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.achievement-card-icon {
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.achievement-card-icon .gold-chk {
  color: #ffd700;
  font-size: 28px;
}

.achievement-card-text {
  display: flex;
  flex-direction: column;
}

.achievement-card-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffd700;
  margin: 0 0 4px 0;
  font-family: 'Outfit', sans-serif;
}

.achievement-card-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
}

.ach-link-container {
  text-align: center;
  margin-top: 20px;
}

.achievements-more-link {
  display: inline-flex;
  align-items: center;
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  transition: color 0.2s ease;
}

.achievements-more-link:hover {
  color: #fff;
}

.achievements-more-link span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.achievements-more-link:hover span {
  transform: translateX(4px);
}

/* Responsive design */
@media (max-width: 992px) {
  .achievements-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .achievements-grid-four {
    grid-template-columns: 1fr;
  }
  .home-achievements-banner {
    padding: 50px 20px;
  }
  .achievement-card {
    padding: 16px 20px;
  }
}

/* ===== SPOTLIGHT GRID LAYOUT ===== */
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
  }
}

