#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 5% 50px;
  overflow: hidden;
  position: relative;
}
#hero-canvas {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  z-index: 10;
}
.hero-content {
  position: relative;
}
.hero-content h1 {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #ffffff, #888888);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content h2 {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-content .tagline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  max-width: 600px;
}
.hero-content .subtext {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #777;
  margin-bottom: 2.5rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
}

/* Hero Image Layout */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-image-inner {
  position: relative;
  width: 100%;
  max-width: 350px;
}

.hero-portrait {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(255, 107, 43, 0.2);
  border: 2px solid rgba(255, 107, 43, 0.3);
  background-color: rgba(30, 30, 30, 0.5);
  animation: float-pulse 5s ease-in-out infinite;
}

@keyframes float-pulse {
  0% { transform: translateY(0px); box-shadow: 0 0 30px rgba(255, 107, 43, 0.15); }
  50% { transform: translateY(-10px); box-shadow: 0 0 50px rgba(255, 107, 43, 0.4); }
  100% { transform: translateY(0px); box-shadow: 0 0 30px rgba(255, 107, 43, 0.15); }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  #hero {
    height: auto;
    min-height: 100vh;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-image-wrapper {
    margin-bottom: 2rem;
  }
  .hero-image-inner {
    max-width: 250px;
  }
  .hero-content h1 { font-size: 3.5rem; }
  .hero-buttons {
    justify-content: center;
  }
}
