/* Color Variables */
:root {
  --military-primary: #17633e;
  --military-secondary: #ff5100;
  --military-gold: #ffd600;
  --card-bg: #ffffff;
  --card-foreground: #1f2937;
  --primary-foreground: #ffffff;
  --body-bg: #f8fafc;
  --text-gray-700: #4b5563;
  --secondary-bg-opacity: rgba(255, 81, 0, 0.1);
  --gold-bg-opacity: rgba(255, 214, 0, 0.1);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --border-color: #e5e7eb;
}

/* Base Styles */
body {
  background-color: var(--body-bg);
  color: #374151; /* text-slate-800 equivalent */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.main-container {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 4rem 1rem; /* px-4 py-16 */
}

.content-wrapper {
  max-width: 72rem; /* max-w-6xl equivalent */
  margin-left: auto;
  margin-right: auto;
}

/* Headings */
.main-heading {
  font-size: 2.25rem; /* text-4xl */
  font-weight: 700; /* font-bold */
  color: var(--military-primary);
  margin-bottom: 2rem; /* mb-8 */
  text-align: center;
}

/* Info Card (Intro/Highlights Container) */
.info-card {
  border-radius: 0.5rem; /* rounded-lg */
  border: 1px solid var(--border-color);
  background-color: var(--card-bg);
  color: var(--card-foreground);
  box-shadow: var(--shadow-sm);
}

.card-body {
  padding: 1.5rem; /* p-6 */
}

.card-body.pt-6 {
  padding-top: 1.5rem;
}

.intro-text {
  font-size: 1.125rem; /* text-lg */
  text-align: center;
  line-height: 1.625; /* leading-relaxed */
  margin: 0;
  color: var(--text-gray-700);
}

.card-header {
  padding: 1.5rem; /* p-6 */
}

.card-title-center {
  font-weight: 600; /* font-semibold */
  letter-spacing: -0.025em; /* tracking-tight */
  font-size: 1.5rem; /* text-2xl */
  color: var(--military-primary);
  text-align: center;
  margin: 0;
}

.card-body.pt-0 {
  padding-top: 0;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  gap: 1.5rem; /* gap-6 */
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr); /* lg:grid-cols-3 */
  }
}

/* Individual Event Card */
.event-card {
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
  background-color: var(--card-bg);
  color: var(--card-foreground);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.event-card:hover {
  box-shadow: var(--shadow-lg);
}

.card-content-wrapper {
  display: flex;
  flex-direction: column;
  padding: 1.5rem; /* p-6 */
  padding-bottom: 0;
}

.image-wrapper {
  width: 100%;
  height: 12rem; /* h-48 */
  border-radius: 0.5rem;
  margin-bottom: 1rem; /* mb-4 */
  overflow: hidden;
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.event-card:hover .event-image {
  transform: scale(1.05); /* hover:scale-105 */
}

.card-title {
  font-weight: 600; /* font-semibold */
  letter-spacing: -0.025em; /* tracking-tight */
  font-size: 1.25rem; /* text-xl */
  color: var(--military-primary);
  margin-top: 0;
  margin-bottom: 0.25rem; /* space-y-1.5 equivalent */
}

.card-date {
  color: var(--military-secondary);
  font-weight: 600; /* font-semibold */
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.card-description-wrapper {
  padding: 1.5rem; /* p-6 */
  padding-top: 0; /* pt-0 */
}

.card-description {
  color: var(--text-gray-700);
  margin: 0;
}

/* Annual Highlights Section */
.info-card.mt-12 {
  margin-top: 3rem; /* mt-12 */
}

.highlights-grid {
  display: grid;
  gap: 2rem; /* gap-8 */
  padding: 0 1.5rem 1.5rem 1.5rem; /* Adjust padding for inner grid */
}

@media (min-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
  }
}

.highlight-sub-title {
  font-size: 1.25rem; /* text-xl */
  font-weight: 600; /* font-semibold */
  color: var(--military-primary);
  margin-bottom: 1rem; /* mb-4 */
  margin-top: 0;
}

.highlight-list {
  list-style-type: none; /* Removed default list style */
  padding-left: 0;
  margin: 0;
}

.highlight-list li {
  margin-bottom: 0.5rem; /* space-y-2 */
  color: var(--text-gray-700);
  line-height: 1.5;
}

/* Participation Stats Section */
.info-card.mt-8 {
  margin-top: 2rem; /* mt-8 */
}

.stats-grid {
  display: grid;
  gap: 1.5rem; /* gap-6 */
  text-align: center;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr); /* md:grid-cols-4 */
  }
}

.stat-box {
  padding: 1.5rem; /* p-6 */
  border-radius: 0.5rem;
}

.secondary-bg-box {
  background-color: var(--secondary-bg-opacity);
}

.gold-bg-box {
  background-color: var(--gold-bg-opacity);
}

.stat-number {
  font-weight: 700; /* font-bold */
  font-size: 1.5rem; /* text-2xl */
  color: var(--military-secondary);
  margin-bottom: 0.5rem; /* mb-2 */
  margin-top: 0;
}

.stat-label {
  color: var(--military-primary);
  font-weight: 600; /* font-semibold */
  margin: 0;
}