/* ========== Hero Section ========== */
/* Full-screen section with centered content */
#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

/* Background pattern container */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

/* Decorative radial gradient pattern */
.hero-pattern {
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(108, 99, 255, 0.05) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(79, 195, 247, 0.05) 0%,
      transparent 20%
    ),
    repeating-linear-gradient(
      45deg,
      rgba(30, 30, 30, 0.8) 0px,
      rgba(30, 30, 30, 0.8) 1px,
      transparent 1px,
      transparent 11px
    ),
    repeating-linear-gradient(
      135deg,
      rgba(30, 30, 30, 0.8) 0px,
      rgba(30, 30, 30, 0.8) 1px,
      transparent 1px,
      transparent 11px
    );
  background-size: 200px 200px;
  transform: rotate(15deg);
  opacity: 0.7;
}

/* Two-column content layout */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Text content with fade-in animation */
.hero-content {
  animation: fadeInUp 1s ease-out;
}

/* Main heading with gradient name */
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero-name {
  color: var(--primary-color);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Supporting description text */
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 90%;
}

/* Call-to-action button group */
.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Profile image container with slide-in animation */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeInRight 1s ease-out 0.3s both;
}

/* Circular profile image with gradient border */
.profile-img-container {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  background: linear-gradient(
      45deg,
      var(--primary-color),
      var(--secondary-color)
    )
    border-box;
  mask-composite: exclude;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Animated floating gradient shapes */
.hero-shape {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  filter: blur(40px);
  opacity: 0.3;
  z-index: -1;
}

.shape-1 {
  top: 10%;
  left: 15%;
  animation: float 8s infinite ease-in-out;
}

.shape-2 {
  bottom: 20%;
  right: 15%;
  animation: float 12s infinite ease-in-out reverse;
}
