/* Global reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Map Section */
.map-section {
  padding: 40px 8%;
  background-color: #f8f9f5;
}

.map-section h2 {
  font-weight: 600;
  color: #2c3e50;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* Footer Section */
.footer {
  /*background-color: #447c4d;*/
    background-color: #cae9a2;
  color: #4d3f2b;
  padding: 30px 20px;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
}

.footer-logo img {
  width: 60px;
  height: auto;
  object-fit: contain;
  border-radius: 50%;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer-link {
 color: #4d3f2b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #1abc9c;
}
.footer-n {
  font-size: 14px;
  opacity: 0.8;
  color: #4d3f2b;
  text-decoration: none;
}
.footer-n:hover {
  color: #1abc9c;
}

.footer-text {
  font-size: 14px;
  opacity: 0.8;
}

/* New styles for Social Media Icons */

.footer-links.social-icons {
  /* This ensures the icons are visible and spaced nicely */
  display: flex;
  justify-content: center;
  gap: 20px; /* Space between icons */
  font-size: 1.8rem; /* Set the size of the icons */
}

.social-icon {
  /* Reset link styles */
  color: #4d3f2b; /* Icon color (matches the footer text) */
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 5px; /* Add some padding for better hit area */
}

.social-icon:hover {
  /* Hover effect for the icons */
  color: #1abc9c; /* Lighter color on hover */
  transform: scale(1.1); /* Slight zoom on hover */
}

/* Ensure the icon element itself takes the color */
.social-icon i {
  display: block;
}

/* Responsive Footer for small screens */
@media (max-width: 576px) {
  .footer {
    padding: 20px 10px; /* reduced top/bottom padding */
  }

  .footer-logo img {
    width: 50px; /* smaller logo */
  }

  .footer-links {
    gap: 10px; /* reduce spacing between links */
  }

  .footer-link {
    font-size: 12px; /* smaller link text */
  }

  .footer-n {
    font-size: 12px; /* smaller Privacy Notice text */
  }

  .footer-text {
    font-size: 12px; /* smaller copyright text */
  }
}

