/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 10%;
}

.hero-content {
  max-width: 600px;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 2.5rem;
  max-width: 500px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 20px;
}

/* 3D Container specific for hero interaction if needed */
.hero-3d-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-3d-wrapper {
    width: 100vw;
    opacity: 0.5;
  }
}

@media (max-width: 480px) {
  #hero {
    padding: 60px 5%;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .hero-3d-wrapper {
    height: 40vh;
  }
}