/* contact.css - Custom styles for contact.php */

/* General Body Styles */
body {
  font-family: 'Nunito', sans-serif;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease-in-out;
}

.navbar-brand {
  font-weight: bold;
}

/* Sticky Navbar Effect */
.navbar.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Image in Intro Section */
.square-image {
    width: 100%;      /* Ensure it fills the column */
    height: auto;     /* Maintain aspect ratio */
    object-fit: cover; /* Cover the area, potentially cropping */
}
/* Map Styling */
#map {
     border-radius: 0.75rem; /* Tailwind's rounded-xl */
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* Tailwind's shadow-lg */
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .square-image {
        height: auto; /* Let height adjust naturally on smaller screens */
        width: 100%;
    }
}

/* Additional Styles for Consistency */
.rounded-xl {
    border-radius: 0.75rem;
}

.shadow-lg {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.shadow-md {
   box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.shadow-sm {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}