/* Garden Indian Restaurant - Page Hero Styles
   Author: [Your Name]
   Student ID: [Your ID]
*/

/* Common Page Hero Styles */
.page-hero {
  position: relative;
  height: 40vh;
  min-height: 300px;
  max-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background-color: var(--secondary);
  margin-bottom: var(--space-xl);
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: brightness(0.7);
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.page-hero h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  color: white;
}

.page-hero .hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 25px;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

/* Specific Page Hero Variations */
.menu-hero {
  background-color: var(--secondary-dark);
}

.booking-hero {
  background-color: var(--primary-dark);
}

.about-hero {
  background-color: var(--accent-dark);
}

.gallery-hero {
  background-color: var(--secondary);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .page-hero {
    height: 35vh;
  }
  
  .page-hero h2 {
    font-size: 2.5rem;
  }
  
  .page-hero .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .page-hero {
    height: 30vh;
    min-height: 250px;
  }
  
  .page-hero h2 {
    font-size: 2rem;
  }
  
  .page-hero .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    height: 25vh;
    min-height: 200px;
  }
  
  .page-hero h2 {
    font-size: 1.8rem;
  }
  
  .page-hero .hero-subtitle {
    font-size: 1rem;
  }
} 