* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #f7f1e5;
  color: #1f1f1f;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(43, 30, 22, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo {
  color: #f7f1e5;
  font-size: 22px;
  font-weight: bold;
}

.navbar nav {
  display: flex;
  gap: 25px;
}

.navbar a {
  color: #f7f1e5;
  text-decoration: none;
  font-size: 15px;
}

.navbar a:hover {
  color: #c9a227;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(43, 30, 22, 0.7), rgba(43, 30, 22, 0.8)),
    url("https://images.unsplash.com/photo-1548013146-72479768bada?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero-content {
  max-width: 700px;
  color: #fff;
}

.tagline {
  color: #c9a227;
  font-weight: bold;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: #c9a227;
  color: #2b1e16;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.btn:hover {
  background: #d8b842;
}

.map-section {
  padding: 90px 8%;
}

.section-title {
  text-align: center;
  margin-bottom: 35px;
}

.section-title p {
  color: #c9a227;
  font-weight: bold;
  margin-bottom: 8px;
}

.section-title h2 {
  font-size: 36px;
  color: #2b1e16;
}

#map {
  height: 600px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(43, 30, 22, 0.2);
}

.leaflet-popup-content h3 {
  margin-bottom: 8px;
  color: #2b1e16;
}

.leaflet-popup-content p {
  margin-bottom: 6px;
}

.risk {
  font-weight: bold;
  color: #c94c4c;
}

.popup-btn {
  display: inline-block;
  margin-top: 8px;
  background: #2b1e16;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.info-section {
  padding: 70px 8%;
  background: #2b1e16;
  color: #f7f1e5;
  text-align: center;
}

.info-section h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.info-section p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 18px;
}

footer {
  background: #1a120d;
  color: #f7f1e5;
  text-align: center;
  padding: 25px;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .navbar nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 38px;
  }

  #map {
    height: 450px;
  }
}

.map-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.map-filters select {
  padding: 12px 16px;
  border: 1px solid #d8c3a5;
  border-radius: 8px;
  background: #fff;
  color: #2b1e16;
  font-size: 15px;
  cursor: pointer;
}