/* Hero Section */
.hero {
  height: 100vh;
  background: url("../img/image1.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-text {
  font-family: Garamond, serif;
  position: relative;
  z-index: 1;
  color: white;
  font-size: 44px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  max-width: 100%;
  padding: 0 20px;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

.info-card-map {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: 100%;
}

.information {
  color: black;
}

.info-card {
  background: #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.21);
  max-width: 350px;
}
.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.info-icon {
  background: #b3b3b4;
  color: #000000;
  font-size: 18px;
  padding: 12px;
  border-radius: 10%;
  margin-right: 15px;
}
.info-text h6 {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
}
.info-text p {
  margin: 0;
  font-size: 14px;
  color: Black;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icons a:hover {
  background: #ffffff;
  color: #000000;
}

.info-card-map {
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 7% !important;
  gap: 7%;
}
@media (max-width: 768px) {
  .info-card {
    margin-top: 20%;
    max-width: 100% !important;
    margin-bottom: 10%;
  }
  .info-card-map {
    flex-wrap: wrap !important;
  }
  .flex-fill {
    margin-bottom: 10%;
  }
}

@media (max-width: 576px) {
  .info-card {
    margin-top: 20%;
    max-width: 100% !important;
    margin-bottom: 10%;
  }
  .info-card-map {
    flex-wrap: wrap !important;
  }
  .flex-fill {
    margin-bottom: 10%;
  }
}
