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

/* Modern Hero Section */
.modern-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

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

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.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.3));
  z-index: 1;
}

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

.modern-hero .hero-content {
  max-width: 700px;
}

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

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

.btn-lg {
  padding: 12px 28px;
  font-size: 1.1rem;
}

/* Light colored titles for dark backgrounds */
.light-title {
  color: white;
}

.light-title::after {
  background-color: rgba(255, 255, 255, 0.8);
}

/* Testimonials Section */
.testimonials {
  background-color: var(--background-alt);
  padding: 80px 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .modern-hero h2 {
    font-size: 2.8rem;
  }
  
  .modern-hero .hero-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .modern-hero {
    height: 80vh;
  }
  
  .modern-hero h2 {
    font-size: 2.3rem;
  }
  
  .modern-hero .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

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