
/* css/styles.css */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2933;
  line-height: 1.6;
  background: #f5f7fa;
}

a {
  color: #0b7285;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background: #14532d;
  color: #f9fafb;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text span {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  opacity: 0.9;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav a {
  color: #f9fafb;
  font-size: 0.9rem;
  font-weight: 500;
}

nav a.active {
  border-bottom: 2px solid #facc15;
  padding-bottom: 0.15rem;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}

.hero {
  background: #ecfdf5;
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  margin-bottom: 1.75rem;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 1.5rem;
  align-items: center;
}

.hero h1 {
  margin-top: 0;
  font-size: 2rem;
  line-height: 1.2;
}

.hero p {
  margin-bottom: 0.5rem;
}

.hero-tag {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #047857;
  margin-bottom: 0.5rem;
}

.hero-location {
  font-size: 0.9rem;
  font-weight: 500;
  color: #065f46;
}

.hero-img {
  width: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
  max-height: 260px;
}

section {
  margin-bottom: 2rem;
}

section h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.05rem;
  max-width: 60ch;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.card {
  background: #ffffff;
  border-radius: 0.85rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.card small {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.chip {
  font-size: 0.75rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: #ecfdf5;
  color: #14532d;
  border: 1px solid #bbf7d0;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.aside-box {
  background: #ffffff;
  border-radius: 0.85rem;
  border: 1px solid #e5e7eb;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
}

.aside-box h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

ul.inline-list {
  padding-left: 1.1rem;
}

ul.inline-list li {
  margin-bottom: 0.2rem;
}

.timeline {
  border-left: 3px solid #d1d5db;
  padding-left: 1rem;
  margin-top: 1rem;
}

.timeline-item {
  margin-bottom: 0.8rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #14532d;
  border-radius: 999px;
  position: absolute;
  left: -1.6rem;
  top: 0.2rem;
}

footer {
  border-top: 1px solid #e5e7eb;
  padding: 1rem;
  font-size: 0.8rem;
  text-align: center;
  color: #6b7280;
  background: #f1f5f9;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #d1fae5;
  background: #ecfdf5;
  font-size: 0.8rem;
  font-weight: 500;
}

.btn-link span {
  margin-left: 0.25rem;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
  .brand-logo {
    height: 44px;
  }
}
