/* ===========================
   Hero Section
=========================== */
.hero {
  background: url('/static/images/pexels-pixabay.jpg') no-repeat center center / cover;
  height: 85vh;
  min-height: 500px;
  color: white;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.hero-text {
  text-align: center;
  max-width: 720px;
  padding: 1rem;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.25rem;
  line-height: 1.6;
}

.section-icon {
  font-size: 2.5rem;
  color: #e83e8c;
  margin-bottom: 1rem;
}


/* ===========================
   Event Detail Page
=========================== */
.event-detail h1,
.event-detail h3 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.event-image,
.event-card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.event-image {
  height: 350px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.event-card {
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.event-detail .btn {
  font-size: 1rem;
  padding: 10px 20px;
}

.event-section {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 40px;
}


/* ===========================
   Small Embedded Map
=========================== */
.small-map-container {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.small-map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* ===========================
   Venue Detail Page
=========================== */
.venue-image-container {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.venue-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.venue-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}



.offcanvas-body .nav-link {
    font-size: 1rem;
    padding: 10px;
    border-radius: 4px;
}
.offcanvas-body .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}






/* ===========================
   Modal Overrides
=========================== */
.modal-content {
  color: #212529 !important;
}


/* ===========================
   Utility & Responsive Helpers
=========================== */
@media (max-width: 576px) {
  .hero {
    height: 70vh;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .event-section {
    padding: 1.5rem 1rem;
  }

  .event-card {
    padding: 1rem;
  }

  .venue-image-container {
    height: 280px;
  }
}
