/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--header-height) 0;
  background: linear-gradient(135deg, rgba(48, 49, 71, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%), 
              url('/hero-bg.jpg') no-repeat center center/cover;
  position: relative;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0;
  padding: 2rem 0;
  text-align: left;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Hero Text Box */
.hero-text-box {
  position: relative;
  background: white;
  max-width: 900px;
  margin: -100px auto 0;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 10;
}

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

.hero-text-box h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.hero-text-box p {
  font-size: 1.25rem;
  color: var(--color-text);
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-text-box .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .hero-text-box {
    margin: -60px 20px 0;
    padding: 2rem 1.5rem;
  }
  
  .hero-text-box h1 {
    font-size: 2rem;
  }
  
  .hero-text-box p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .hero-text-box {
    margin: -40px 15px 0;
    padding: 1.5rem 1rem;
  }
  
  .hero-text-box h1 {
    font-size: 1.75rem;
  }
  
  .hero-text-box p {
    font-size: 1rem;
  }
  
  .hero-text-box .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
