:root {
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f3f4f6;
  background: #000000;
  line-height: 1.6;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../img/headback.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.hero-content {
  position: relative;
  max-width: 900px;
  padding: 2rem;
}

.hero-logo {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a5b4fc;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy {
  margin: 1.5rem auto 0;
  max-width: 680px;
  color: #e2e8f0;
  font-size: 1.05rem;
}

.hero-button {
  display: inline-flex;
  margin-top: 2rem;
  padding: 0.95rem 1.8rem;
  background: #ff0000;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  text-shadow: 0px 2px 5px rgb(175, 126, 0);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero-button:hover {
  background: #f9aa00;
  box-shadow: 0px 0px 15px rgb(255, 196, 0);
  transform: translateY(-1px);
}

main {
  padding: 3rem 1.5rem;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.85rem;
  background: rgba(158, 90, 0, 0.113);
  color: white;
  border-radius: 999px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.news-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card {
  background: rgba(158, 90, 0, 0.113);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.news-date {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: #b9b9b9;
}

.news-card h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.news-card p {
  margin: 0 0 1.5rem;
  color: #dfdfdf;
}

.news-card a {
  color: #ffb006;
  font-weight: 600;
}

.footer {
  background: #000000;
  color: #cbd5e1;
  padding: 2.5rem 1.5rem 1.25rem;
}

.footer-content {
  margin-right: auto;
  margin-left: auto;
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content > div {
  min-width: 0;
}

.footer h2 {
  margin: 0 0 0.75rem;
  font-size: 1.8rem;
  color: #f8fafc;
}

.footer p,
.footer address,
.footer a {
  margin: 0;
  color: #cbd5e1;
}

.footer-details {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-label {
  margin-bottom: 0.35rem;
  color: #94a3b8;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-note {
  margin: 2rem auto 0;
  max-width: 1200px;
  text-align: center;
  font-size: 0.95rem;
  color: #64748b;
}

@media (max-width: 960px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 60vh;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .news-grid,
  .footer-details {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-button {
    width: 100%;
    justify-content: center;
  }

  .footer {
    padding-top: 1.5rem;
  }
}
