/* Banner Section Styles */
.banner-section {
  width: 100%;
  height: var(--banner-height, 300px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: -100px;
}

/* Reduce gap between banner and content */
.grid-inverse.wrap.content {
}


/* Optional: Add a semi-transparent overlay for better text contrast if needed */
.banner-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.banner-section:hover::after {
  opacity: 1;
}

.banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.banner-title {
  color: white;
  font-size: 6rem;
  font-weight: 700;
  margin: 0;
  margin-top: 100px;
  text-shadow:
    -2px -2px 0 rgba(0, 0, 0, 0.8),
    2px -2px 0 rgba(0, 0, 0, 0.8),
    -2px 2px 0 rgba(0, 0, 0, 0.8),
    2px 2px 0 rgba(0, 0, 0, 0.8),
    0 -2px 0 rgba(0, 0, 0, 0.8),
    0 2px 0 rgba(0, 0, 0, 0.8),
    -2px 0 0 rgba(0, 0, 0, 0.8),
    2px 0 0 rgba(0, 0, 0, 0.8),
    2px 2px 8px rgba(0, 0, 0, 0.6);
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .banner-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 1.8rem;
  }
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .banner-section {
    height: 200px;
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .banner-section {
    height: 150px;
  }
}
