body {
    margin:0;
}

.top-info-bar {
  background-color: #f6c800; /* match the yellow theme */
  color: #000;
  padding: 8px 20px;
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid #e5e5e5;
}

.top-info-bar a {
  color: inherit;
  text-decoration: none;
}
.top-info-bar a:hover {
  text-decoration: underline;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9;
  padding: 1rem 4rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 200px;  /* increase from 70px */
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #f1c40f;
}

/* Dropdown Styling */
.dropdown {
  position: relative;
}

/* Remove bullets from dropdown menu */
.dropdown-menu {
  list-style: none; /* ✅ Removes the dots */
  margin: 0;
  padding: 0;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
  min-width: 180px;
  z-index: 100;
  border-radius: 6px;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1rem;
  color: #333;
  text-decoration: none;
  font-size: 1rem;
}

.dropdown-menu li a:hover {
  background-color: #f0f0f0;
  color: #f1c40f;
}

.dropdown:hover .dropdown-menu {
  display: block;
}


.social-icons {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin-left: 2rem;
  padding: 0;
}

.social-icons li a {
  color: #333;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons li a:hover {
  color: #f1c40f;
}


.contact-details a {
  color: #333;
  text-decoration: none;
}

.contact-details a:hover {
  color: #f1c40f;
  text-decoration: underline;
}


/* Mobile tweaks */
@media (max-width: 768px) {
  .social-icons {
    margin-top: 1rem;
    justify-content: center;
  }
}





.contact-page {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.contact-page h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #f1c40f;
}

.contact-page p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2.5rem;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.contact-details {
  flex: 1;
  max-width: 400px;
  font-size: 1rem;
  color: #333;
}

.contact-details i {
  color: #f1c40f;
  margin-right: 10px;
}

.contact-hours {
  margin-top: 1rem;
}

.contact-socials {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-socials a {
  text-decoration: none;
  color: #f1c40f;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-socials a:hover {
  color: #f1c40f;
}

.contact-map {
  flex: 1;
  max-width: 600px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 119, 204, 0.1);
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  border: none;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-details,
  .contact-map {
    max-width: 100%;
  }

  .contact-socials {
    align-items: center;
  }
}




/* Fix navbar responsiveness */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1rem;
  }

  .nav-links li a {
    font-size: 1rem;
  }

  .social-icons {
    margin-top: 1rem;
    justify-content: center;
  }

  .logo img {
    height: 120px;
  }
}

/* Contact Page Responsiveness */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
  }

  .contact-details {
    text-align: center;
    padding: 0 1rem;
  }

  .contact-map iframe {
    height: 300px;
  }

  .contact-page h2 {
    font-size: 1.6rem;
  }

  .contact-page p {
    font-size: 1rem;
  }

  .contact-socials {
    align-items: center;
    gap: 0.5rem;
  }

  .contact-socials a {
    font-size: 0.95rem;
  }
}
