/* banner.css - Hero Banner Styles */

.hero-banner {
  background: linear-gradient(
    -45deg,
    #945732,
    #B2744D,
    #CD906A,
    #C49273,
    #B2744D,
    #945732
  );
  background-size: 300% 300%;
  animation: heroGradientShift 12s ease infinite;
  color: var(--color-white);
  padding: var(--space-8) var(--space-4) var(--space-12);
  position: relative;
  overflow: hidden;
  text-align: center;
}

@keyframes heroGradientShift {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 25%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 0% 75%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.profile-img-container {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 3px;
  margin-bottom: var(--space-4);
  background-color: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.profile-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.hero-title {
  color: var(--color-white);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

/* Tablet and up */
@media (min-width: 768px) {
  .hero-banner {
    padding: var(--space-16) 0 var(--space-24);
  }

  .hero-content {
    padding: 0;
  }

  .profile-img-container {
    width: 260px;
    height: 260px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 3px;
    margin-bottom: var(--space-6);
  }

  .hero-title {
    font-size: var(--text-4xl);
  }

  .hero-subtitle {
    font-size: var(--text-lg);
    letter-spacing: 1px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .hero-banner {
    padding: var(--space-24) 0;
  }

  .profile-img-container {
    width: 300px;
    height: 300px;
  }

  .hero-title {
    font-size: var(--text-5xl);
  }
}
