/* Modern Hero with Background Image */

.professional-hero {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(0, 59, 66, 0.85) 0%,
    rgba(76, 91, 92, 0.75) 50%,
    rgba(227, 124, 39, 0.65) 100%
  ),
  url('/michelle-1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Content styling */
.professional-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

.professional-hero .hero-text {
  flex: 1;
  color: white;
}

.professional-hero .hero-title {
  position: relative;
  z-index: 1;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.9);
}

.professional-hero .hero-subtitle {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  margin-bottom: 2rem;
}

.professional-hero .hero-cta {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.professional-hero .cta-button {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.professional-hero .cta-primary {
  background: linear-gradient(45deg, #E37C27, #F4A261);
  color: white;
  box-shadow: 0 4px 15px rgba(227, 124, 39, 0.3);
}

.professional-hero .cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 124, 39, 0.4);
}

.professional-hero .cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.professional-hero .cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Watermark overlay - simplified version */
.professional-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
}

/* Subtle animation overlay */
.professional-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 80%,
    rgba(227, 124, 39, 0.1) 0%,
    transparent 50%
  ),
  radial-gradient(
    circle at 80% 20%,
    rgba(0, 59, 66, 0.1) 0%,
    transparent 50%
  );
  animation: subtleMove 20s ease-in-out infinite;
  z-index: 1;
}

@keyframes subtleMove {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .professional-hero {
    min-height: 100vh;
    background-attachment: scroll;
  }
  
  .professional-hero .hero-content {
    padding: 1.5rem;
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
  }

  .professional-hero .hero-content h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .professional-hero .hero-content p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .professional-hero .hero-content .flex-row {
    justify-content: center;
  }
}

/* Alternative: Subtle geometric pattern overlay */
.professional-hero.geometric::after {
  background-image: 
    linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
  animation: geometricMove 10s linear infinite;
}

@keyframes geometricMove {
  0% {
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
  }
  100% {
    background-position: 60px 60px, 60px 90px, 90px 30px, 30px 60px;
  }
}

/* Professional color scheme variant */
.professional-hero.corporate {
  background: linear-gradient(
    135deg,
    #1e3c72 0%,
    #2a5298 25%,
    #667eea 50%,
    #764ba2 75%,
    #f093fb 100%
  );
}

/* Therapy-focused warm variant */
.professional-hero.therapy {
  background: linear-gradient(
    135deg,
    #ffecd2 0%,
    #fcb69f 25%,
    #ff9a9e 50%,
    #fecfef 75%,
    #fecfef 100%
  );
}

.professional-hero.therapy::before {
  background: rgba(0, 0, 0, 0.1);
}

.professional-hero.therapy .hero-content {
  color: #2d3748;
}

.professional-hero.therapy .hero-title,
.professional-hero.therapy .hero-subtitle {
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.professional-hero.therapy .hero-cta {
  background: rgba(227, 124, 39, 0.2);
  border-color: rgba(227, 124, 39, 0.4);
  color: #2d3748;
}

.professional-hero.therapy .hero-cta:hover {
  background: rgba(227, 124, 39, 0.3);
  border-color: rgba(227, 124, 39, 0.6);
}