/*--------------------------------------------------------------
# Hero Section Styles
# Consolidated from main.css and existing hero.css
--------------------------------------------------------------*/

/* Main Hero Section */
.hero {
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  color: var(--contrast-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Video Background */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--contrast-color);
  font-family: var(--heading-font);
  text-shadow: 0 2px 16px rgba(14, 162, 189, 0.7), 0 1px 2px rgba(0,0,0,0.25);
}

.hero-text h2 {
  font-size: 2.0rem;
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1.3;
  color: var(--contrast-color);
  font-family: var(--heading-font);
  text-shadow: 0 2px 16px rgba(14, 162, 189, 0.7), 0 1px 2px rgba(0,0,0,0.25);
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  color: var(--contrast-color);
  font-family: var(--default-font);
  line-height: 1.5;
  max-width: 520px;
}

.hero-text .hero-btn {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
  font-size: 1.1rem;
  font-family: var(--default-font);
  box-shadow: 0 2px 8px rgba(14, 162, 189, 0.15);
}

.hero-text .hero-btn:hover {
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.hero-image {
  text-align: center;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: block;
}

/*--------------------------------------------------------------
# Responsive Hero Styles
--------------------------------------------------------------*/

/* Medium Screens (991px and below) */
@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
}

/* Small Screens (768px and below) */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
    justify-items: center;
  }
  
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .hero-text p {
    font-size: 1.1rem;
  }
}

/* Extra Small Screens (600px and below) */
@media (max-width: 600px) {
  .hero {
    padding: 60px 0;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-text p {
    font-size: 0.9rem;
  }
  
  .hero-text .hero-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .hero-image img {
    max-width: 80%;
  }
}

/* Very Small Screens (480px and below) */
@media (max-width: 480px) {
  .hero-content {
    padding: 0 15px;
  }
  
  .hero-text h1 {
    font-size: 1.6rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
} 