/* Hero Section Styles */
.hero-section {
  padding: 3rem 1rem;
  background-color: var(--background-color);
  min-height: auto;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-container {
  max-width: 809.333px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  width: 100%;
  padding: 0 1rem;
}

/* When hero-container hits max width, limit hero-section height */
@media (min-width: 841px) { /* 809.333px + 32px padding */
  .hero-section {
    max-height: 580px;
    padding: 80px 1rem;
  }
}

.hero-content {
  max-width: 500px;
}

.hero-name {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  color: var(--text-color);
}

.hero-subtitle {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-image {
  position: relative;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}

.hero-image img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px var(--shadow-medium);
}

/* Social icons in hero */
.hero-section .social-icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.social-link span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    max-width: 600px;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-image {
    display: flex;
    justify-content: center;
  }
  
  .hero-image img {
    width: 200px;
    height: 200px;
  }
  
  .hero-section .social-icons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 2rem 1rem;
  }
  
  .hero-container {
    padding: 0;
  }
  
  .hero-name {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 0.75rem;
  }
  
  .hero-tagline {
    font-size: 1rem;
  }
}