*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: sans-serif;
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  width: 100%;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
}

.logo img {
  width: 250px;
  height: auto;
  display: block;
}

.hero {
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.25) 25%,
      rgba(0, 0, 0, 0.10) 50%,
      rgba(0, 0, 0, 0.00) 75%
    ),
    url("/assets/img/hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn--primary {
  background: #2f5d50;
  color: #ffffff;
}

.btn--secondary {
  color: #ffffff;
  border-color: #e0b84c;
}

.map-page {
  width: 100%;
  min-height: 100vh;
}

.project-map {
  width: 100%;
  height: 100vh;
}

.map-label {
  position: absolute;
  transform: translate(12px, -50%);
  z-index: 900;
  pointer-events: auto;

  color: #111827;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);

  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 600;
  white-space: nowrap;

  padding: 3px 8px;
}

.map-label a {
  color: #111827;
  text-decoration: none;
}

.map-label a:hover {
  text-decoration: underline;
}

.partners__logos {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.partner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px; /* Adjust as required */
  padding: 1rem;
}

.partner img {
  display: block;
  max-width: 100%;
  max-height: 80px; /* Keeps all logos visually consistent */
  width: auto;
  height: auto;
  object-fit: contain;
}