/* ------------------
   Root & Reset
------------------- */

:root {
  --yellow: #f5c400;
  --dark: #0f172a;
  --light: #ffffff;
  --muted: rgba(255,255,255,0.75);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Inter', system-ui, sans-serif;
}

/* ------------------
   Hero Layout
------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  background: url("img/imghero.png") center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--light);
  overflow: hidden;
}

/* Dark overlay */
.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.45)
    );
  z-index: 1;
}

/* ------------------
   Header
------------------- */

.top-bar {
  position: relative;
  z-index: 2;
  padding: 32px;
}

.logo {
  max-width: 100px;
}

/* ------------------
   Content
------------------- */

.content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 32px;
}

.badge {
  display: inline-block;
  background: var(--yellow);
  color: #000;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.content h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 24px;
}

.content h1 span {
  color: var(--yellow);
}

.description {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 36px;
}

/* Divider inspired by trade routes */
.divider {
  width: 120px;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--yellow),
    transparent
  );
  margin-bottom: 36px;
}

/* ------------------
   Contact Info
------------------- */

.contact p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--muted);
}

.contact strong {
  color: var(--light);
  font-weight: 600;
}

/* ------------------
   Footer
------------------- */

.footer {
  position: relative;
  z-index: 2;
  padding: 24px 32px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ------------------
   Responsive
------------------- */

@media (max-width: 768px) {
  .top-bar {
    padding: 24px;
  }

  .content {
    padding: 0 24px;
  }

  .logo {
    max-width: 80px;
  }
}

@media (max-width: 480px) {
  .badge {
    font-size: 0.75rem;
  }

  .description {
    font-size: 0.95rem;
  }
}
