body {
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}

.navbar {
  background-color: #343a40;
}

.navbar-brand img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
}

.hero {
  background: linear-gradient(to bottom right, #ffc107, #fff3cd);
  padding: 60px 20px;
  text-align: center;
}

.hero img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center 70%;
}

.caption {
  width: 100%;
  text-align: center;
}

.section-yellow {
  background-color: #ffc107;
  padding: 60px 20px;
}

.image-placeholder {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  margin: 20px 0;
  border: 3px solid black;
}

.district-map {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 3px solid black;
}

.btn-primary {
  background-color: #343a40;
  border: none;
  border-radius: 20px;
  padding: 6px 16px;
}

#places-img .card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

#places-img .card:hover {
  transform: translateY(-5px);
}

#places-img .card-img-top {
  height: 200px;
  object-fit: cover;
}

#places-img h2 {
  margin-bottom: 2rem;
  text-align: center;
}

.footer {
  background-color: #343a40;
  color: #ffffff;
  padding: 30px 0;
}

.footer h5 {
  color: #ffc107;
}

.footer a {
  color: #ffc107;
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
}
body.dark-mode {
  background-color: #121212;
  color: #e0e0e0;
}

body.dark-mode .navbar {
  background-color: #1f1f1f;
}

body.dark-mode .navbar-brand,
body.dark-mode .navbar-nav .nav-link {
  color: #ffffff !important;
}

body.dark-mode .hero {
  background: linear-gradient(to bottom right, #343a40, #1c1c1c);
}

body.dark-mode .section-yellow {
  background-color: #2b2b2b;
}

body.dark-mode .card {
  background-color: #1e1e1e;
  color: #ffffff;
}

body.dark-mode .card .btn {
  background-color: #ffc107;
  color: #000;
}

body.dark-mode .footer {
  background-color: #1c1c1c;
  color: #bbb;
}

body.dark-mode .footer h5,
body.dark-mode .footer a {
  color: #ffc107;
}

body.dark-mode .table {
  color: #ddd;
}

body.dark-mode .image-placeholder,
body.dark-mode .district-map {
  border-color: #555;
}

