@charset "UTF-8";

/* General Typography */
h1, h2, h3 {
  text-align: center;
  color: #333;
}

/* Content Section */
.content-section {
  background-color: #fff;
  width: 90%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Navbar Styles */
.navbar-dark .navbar-nav .nav-link {
  color: #fff;
  transition: color 0.3s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: #f4a121; /* Brand yellow */
}

.navbar-dark .navbar-nav .nav-link.active {
  color: #f4a121;
  font-weight: bold;
}

.navbar-dark .dropdown-menu {
  background-color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: none; /* Ensure Bootstrap JS controls visibility */
}

.navbar-dark .dropdown-menu.show {
  display: block; /* Ensure dropdown is visible when toggled */
}

.navbar-dark .dropdown-menu .dropdown-item {
  color: #333;
  padding: 0.5rem 1rem;
}

.navbar-dark .dropdown-menu .dropdown-item:hover,
.navbar-dark .dropdown-menu .dropdown-item:focus {
  background-color: #f4a121;
  color: #fff;
}

/* Card Styles */
.card {
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

.card-img-top {
  object-fit: cover;
  height: 200px;
}

.card-body {
  text-align: center;
}

.card-title {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.list-group-item {
  border: none;
  padding: 0.5rem 0;
  text-align: center;
}

/* Footer */
footer {
  background-color: #383838;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

/* WhatsApp Floating Button */
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  transition: transform 0.2s;
}

.float:hover {
  transform: scale(1.1);
}

.float .my-float {
  margin-top: 16px;
}

/* Responsive Map */
.map-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .content-section {
    width: 95%;
    margin: 30px auto;
    padding: 15px;
  }

  .card-img-top {
    height: 150px;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .navbar-dark .dropdown-menu {
    width: 100%;
  }
}