/* Header Section */
.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 40px 60px;
  min-height: auto;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  max-width: 1400px;
  margin: 0 auto;
}

.header-text {
  flex: 1;
  max-width: 600px;
  padding-left: 40px;
}

.header-greeting {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
  animation: fadeInUp 0.6s ease-out;
}

.header-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.2;
  animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.subtitle {
  font-family: 'Sour Gummy', sans-serif;
  color: var(--primary-color);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.header-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.header-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.header-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 40px;
  animation: fadeInRight 0.8s ease-out 0.2s backwards;
}

.header-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(109, 76, 188, 0.15));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Section Styling */
section {
  padding: 80px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}
