/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  line-height: 1.6;
}

/* HERO */
.hero-republic {
  min-height: 85vh;
  background-image: url('/assets/img/republic-day-run-dehradun-hero-desktop.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
}

.hero-overlay {
  background: rgba(0,0,0,0.55);
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1100px;
  padding: 0 24px;
  margin: auto;
  color: #fff;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg,#ff9933,#ffffff,#138808);
  color: #000;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 14px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-sub {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.hero-tagline {
  font-size: 1.05rem;
  margin-bottom: 24px;
  opacity: 0.9;
}

.btn-primary {
  background: #ff6a00;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #e65c00;
}

/* SECTIONS */
.section {
  padding: 70px 20px;
}

.intro {
  padding-top: 50px;
}

.soft-bg {
  background: #f9fafb;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.narrow {
  max-width: 720px;
}

.center {
  text-align: center;
}

.lead {
  font-size: 1.15rem;
  margin-top: 16px;
}

.subtle {
  color: #666;
  margin-top: 10px;
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* HIGHLIGHT */
.highlight-box {
  background: #fff;
  padding: 26px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.highlight-box h4 {
  margin-bottom: 14px;
}

.highlight-box ul {
  list-style: none;
}

.highlight-box li {
  margin-bottom: 10px;
}

/* CARDS */
.cards {
  display: flex;
  gap: 24px;
  margin-top: 30px;
}

.card {
  flex: 1;
  padding: 26px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.accent-saffron {
  border-top: 6px solid #ff9933;
}

.accent-green {
  border-top: 6px solid #138808;
}

/* ICON LIST */
.icon-list {
  list-style: none;
  margin-top: 20px;
}

.icon-list li {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}

/* EVENT BOX */
.event-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* FINAL CTA */
.final-cta {
  background: #0b1c2d;
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.final-cta p {
  margin-top: 12px;
}

.urgent {
  color: #ffcc00;
  font-weight: 600;
  margin-top: 16px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-republic {
    background-image: url('/assets/img/republic-day-run-dehradun-hero-mobile.jpg');
    background-position: center top;
    min-height: 75vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .grid-2,
  .event-box,
  .cards {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}
