/* Home Page Hero Component Styles */
.home-hero {
  background: linear-gradient(135deg, 
    #0f0f0f 0%, 
    #1a1a1a 20%, 
    #2a2a2a 40%, 
    #3a3a3a 60%, 
    #4a4a4a 80%, 
    #5a5a5a 100%
  );
  color: var(--color-white);
  padding: 6rem 2rem;
  text-align: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 70vh;
  margin-top: 0;
  top: 0;
  left: 0;
  right: 0;
  
  z-index: 1;
}

/* Hero Grid Lines Background */
.home-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-grid" width="5" height="5" patternUnits="userSpaceOnUse"><path d="M 5 0 L 0 0 0 5" fill="none" stroke="%23FFFFFF" stroke-width="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-grid)"/></svg>');
  opacity: 0.03; 
  z-index: 1;
}

/* Prevent horizontal scrolling caused by 100vw */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}


.home-hero .hero-content {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.home-hero .hero-content h1 {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 800;
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.2em;
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.home-hero .hero-content h1 .highlight-secondary {
  color: var(--color-primary);
}

.home-hero .hero-content p {
  font-size: 17px; 
  margin: 0 0 2rem 0;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Home Hero CTA Buttons */
.home-hero .hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.home-hero .hero-ctas .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.home-hero .hero-ctas .btn--primary {
  background: linear-gradient(135deg, var(--color-primary), rgba(var(--color-primary-rgb), 0.8));
  color: var(--color-black);
  border: 1px solid rgba(var(--color-primary-rgb), 0.3);
}

.home-hero .hero-ctas .btn--primary:hover {
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.9), var(--color-primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), 0.3);
}

.home-hero .hero-ctas .btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.home-hero .hero-ctas .btn--secondary:hover {
  background: rgba(var(--color-secondary),);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Responsive Home Hero Styles */
@media (max-width: 768px) {
  .home-hero {
    padding: 4rem 1.5rem;
    height: 60vh;
  }
  
  .home-hero .hero-content h1 {
    font-size: 33px;
  }
  
  .home-hero .hero-ctas {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .home-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 1.2rem 2rem;
  }
}

@media (max-width: 480px) {
  .home-hero {
    padding: 3rem 1rem;
    height: 50vh;
  }
  
  .home-hero .hero-content h1 {
    font-size: 33px;
  }
  
  .home-hero .hero-content p {
    margin: 0 0 1.5rem 0;
  }
  
  .home-hero .hero-ctas {
    margin-top: 1.5rem;
  }
}
