/* styles.css */

/* Custom styles for hamburger menu animation */

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}

.hamburger.open .line-top {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open .line-middle {
  opacity: 0;
}

.hamburger.open .line-bottom {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Header background image for the hero section */
.header-bg {
  background-image: url('./images/featured-2.jpg'); /* Adjust path if needed */
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Overlay for the header background image */
.header-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(10, 15, 45, 0.8));
  z-index: 0;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

/* Ensures content is above the overlay */
.header-content {
  position: relative;
  z-index: 2;
}
  
/* About Section Specific Styles */
.about .heading {
    /* No fixed margin-left, use Tailwind for centering */
    position: relative;
}

.about .heading .heading-underline {
    position: absolute;
    bottom: -10px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    width: 80px; /* Underline width */
    height: 4px;
    border-radius: 2px;
}

.about .image-gallery img:hover {
    transform: scale(1.03); /* Slightly enlarge on hover */
    box-shadow: 0 8px 16px rgba(0,0,0,0.2); /* Deeper shadow on hover */
}

.about .image-gallery img:active {
    transform: scale(0.98); /* Shrink slightly on click */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Lighter shadow on click */
}

