/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
}


/* ===== DESKTOP NAVIGATION ===== */
.site-header {
  background-color: #1a5a96;
  padding: 1rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a5a96; /* UNCOMMENT AND FIX THIS */
  /* background-color: #1a5a96; ADD THIS LINE */
}
.navbar .logo a {
  color: white;
  text-decoration: none;
  font-size: 4rem !important;
  font-weight: 800 !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.logo a {
  color: white;
  text-decoration: none;
  font-size: 4rem;        /* Increased from 1.5rem */
  font-weight: 800;       /* Made bolder (800 is extra-bold) */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Horizontal navigation for desktop */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links li a {
  color: white; /* ADD THIS BACK */
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  font-weight: 500;
}

.nav-links li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.nav-links li a.active {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Main content */
main {
  padding: 0 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.content h1 {
  margin-bottom: 20px;
  color: #1a5a96;
}

.content h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #1a5a96;
}

.content p {
  margin-bottom: 15px;
  font-size: 1.1rem;
    margin-bottom: 1em; /* adjust the value as needed */
}
.content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

#map {
  width: 100%;
  height: 800px;
  display: block;
}

/* Footer */
.site-footer {
  background-color: #222;
  color: #eee;
  text-align: center;
  padding: 1em 0;
  margin-top: 3rem;
}

.site-footer a {
  color: #66ccff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* ===== MOBILE LAYOUT ===== */

/* Hamburger menu icon - hidden on desktop */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
/* Contact Form Styles */
#contact-info, #contact-form {
  margin: 2rem 0;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #1a5a96;
}

#contact-info h2, #contact-form h2 {
  color: #1a5a96;
  margin-bottom: 1rem;
}

#contact-info ul {
  margin-left: 2rem;
  margin-top: 1rem;
}

#contact-info li {
  margin-bottom: 0.5rem;
}

#contact-info a, #contact-form a {
  color: #1a5a96;
  text-decoration: none;
}

#contact-info a:hover, #contact-form a:hover {
  text-decoration: underline;
}

/* Form Styles */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
}

input, textarea {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #1a5a96;
  box-shadow: 0 0 0 2px rgba(26, 90, 150, 0.1);
}

button {
  background-color: #1a5a96;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

button:hover {
  background-color: #16487d;
}

#contact-form p em {
  color: #666;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: block;
}
@media (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: relative;
  }
  
  .logo {
    font-size: 2rem !important; /* Smaller logo on mobile */
  }
  
  .nav-links {
    position: absolute;
    top: 100%; /* Position below the navbar */
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    z-index: 1000;
    padding: 10px 0;
  }
  
  .nav-links li {
    margin: 0;
    text-align: center;
  }
  
  .nav-links li a {
    padding: 12px 20px;
    display: block;
  }

  body {
    padding: 0 10px 40px;
    max-width: 100%;
  }

  .navbar {
    padding: 0 10px;
  }

  .nav-links {
    flex-direction: column;
    background-color: #1a5a96;
    position: absolute;
    top: 60px;
    right: 10px;
    width: 180px;
    border-radius: 6px;
    display: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links li a {
    padding: 10px 15px;
    display: block;
  }

  .menu-toggle {
    display: flex;
  }

  #contact-info, #contact-form {
    margin: 1rem 0;
    padding: 1.5rem;
  }
  
  form {
    gap: 0.75rem;
  }
}

/* Hamburger animation */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}