/* 1. Page Hero (Smaller than Home Hero) */
.page-hero {
  /* 1. The Background Image with a Maroon/Gold Overlay */
  background:
    linear-gradient(135deg, rgba(91, 0, 0, 0.336) 0%, rgba(45, 0, 0, 0.342) 50%, rgba(196, 154, 24, 0.3) 100%),
    url("../images/inner-slider.jpg");

  /* 2. Image Positioning */
  background-size: cover;
  /* Ensures image covers the whole area */
  background-position: center;
  /* Centers the image */
  background-repeat: no-repeat;

  /* 3. Layout & Sizing */
  height: 60vh;
  /* Adjust height: 60% of the viewport height */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* Container for content */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  text-align: center;
}

/* Optional: Style the text inside */
.page-hero h1 {
  font-size: 3.5rem;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.page-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  color: #e0e0e0;
}

.page-hero .breadcrumb {
  font-size: 0.95rem;
  margin-bottom: 12px;
  opacity: 0.9;
}

.page-hero .breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.page-hero .breadcrumb a:hover {
  text-decoration: underline;
}

.page-hero .breadcrumb span {
  margin: 0 6px;
}

/* Video Container Styling */
.apara-image-wrapper.video-container {
  position: relative;
  width: 100%;
  /* Create a 16:9 Aspect Ratio */
  padding-bottom: 42.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  /* Optional: Rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.apara-image-wrapper.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  border: 0;
}

.apara-section {
  padding: 40px 8%;
  min-height: 400px;
}

.apara-main-title {
  color: #003366;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  margin-top: 20px;
  border-bottom: 2px solid #eee;
  padding-bottom: 15px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

/* Gallery Section */
.apara-gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}

.gallery-item {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .apara-gallery-grid {
    flex-direction: column;
  }
}