/*
 * Professional Hero Section CSS
 * Modern Design with Animations
 */

.professional-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 70%, var(--accent-purple) 100%);
  overflow: hidden;
  color: var(--neutral-white);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Welcome badge */
.welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-large);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: var(--spacing-xl);
  animation: float 3s ease-in-out infinite;
}

/* Logo wrapper */
.hero-logo-wrapper {
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-logo {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
  animation: pulse 2s ease-in-out infinite;
}

/* Site title */
.hero-site-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
  color: #fff;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Description */
.hero-description {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xxl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  animation: fadeInUp 1s ease-out 0.8s both;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-xl);
  animation: fadeInUp 1s ease-out 1s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius-large);
  text-decoration: none;
  transition: all var(--transition-fast);
  min-width: 200px;
  justify-content: center;
  box-shadow: var(--shadow-light);
}

.hero-btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b7791f 100%);
  color: var(--neutral-white);
}

.hero-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-heavy);
  background: linear-gradient(135deg, #c08c24 0%, #975a16 100%);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--neutral-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.scroll-indicator-inner {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-large);
  position: relative;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.scroll-indicator-inner:hover {
  border-color: var(--accent-gold);
}

.scroll-indicator-inner:before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

/* Background elements */
.hero-background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-element {
  position: absolute;
  border-radius: var(--radius-circle);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
}

.hero-element:nth-child(1) {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 5%;
  animation: float 15s infinite ease-in-out;
}

.hero-element:nth-child(2) {
  width: 80px;
  height: 80px;
  bottom: 20%;
  right: 10%;
  animation: float 12s infinite ease-in-out reverse;
}

.hero-element:nth-child(3) {
  width: 120px;
  height: 120px;
  top: 40%;
  right: 15%;
  animation: float 18s infinite ease-in-out;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) translateX(10px) rotate(5deg);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes scrollBounce {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-site-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .professional-hero {
    padding: 80px 0 40px;
  }
  
  .hero-site-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }
  
  .hero-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .hero-site-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .welcome-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  .hero-logo {
    height: 80px;
  }
}