/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #111 0%, #000 100%);
  overflow: hidden;
  padding: 2rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(197, 165, 114, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(197, 165, 114, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.founder-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

.founder-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, rgba(197, 165, 114, 0.2), rgba(197, 165, 114, 0.1));
  border-radius: 20px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .image-accent {
  opacity: 1;
}

.hero-content {
  text-align: left;
  max-width: 600px;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, hsl(44 96% 70%), hsl(44 96% 60%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-cta .cta-button {
  min-width: 180px;
  text-align: center;
}

.hero-cta .cta-button.secondary {
  background: transparent;
  color: #C5A572;
  border: 2px solid #C5A572;
}

.hero-cta .cta-button.secondary:hover {
  background: #C5A572;
  color: #111111;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-section {
    min-height: 60vh;
    padding: 1rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    order: 1;
  }

  .hero-image {
    order: 2;
  }

  .image-container {
    max-width: 300px;
  }

  /* Show accent background by default on mobile */
  .image-accent {
    opacity: 1;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
  }

  .hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-cta {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .cta-button {
    min-width: 200px;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .image-container {
    max-width: 250px;
  }
}
