/*
 * NAGELSCHUH.CLUB - Landing Page Styles
 * powered by javelin.ch
 */

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #264653 0%, #2a9d8f 100%);
}

/* Background Image */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay for better text readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(38, 70, 83, 0.85) 0%,
    rgba(42, 157, 143, 0.75) 100%
  );
  z-index: 2;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 var(--container-padding);
  animation: fadeIn 1s ease-out;
}

.hero-logo {
  width: 200px;
  height: auto;
  margin-bottom: var(--space-xl);
  animation: slideInDown 0.8s ease-out;
}

.hero h1 {
  color: var(--text-white);
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.hero h3 {
  color: var(--text-white);
  font-size: var(--font-size-2xl);
  font-weight: 400;
  margin-bottom: var(--space-xxl);
  opacity: 0.95;
  animation: slideInUp 0.8s ease-out 0.4s backwards;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: slideInUp 0.8s ease-out 0.6s backwards;
}

.hero-trust {
  margin-top: var(--space-xl);
  font-size: var(--font-size-base);
  color: var(--text-white);
  opacity: 0.9;
  animation: fadeIn 1s ease-out 1s backwards;
}

.hero-trust .stars {
  color: var(--gold);
  margin-right: var(--space-sm);
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.hero-scroll-icon {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 25px;
  position: relative;
}

.hero-scroll-dot {
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scrollDot {
  0% { opacity: 1; top: 10px; }
  100% { opacity: 0; top: 30px; }
}

/* ============================================
   PROBLEM → SOLUTION SECTION
   ============================================ */
.problem-solution {
  padding: var(--space-xxxl) 0;
  background-color: var(--bg);
}

.problem-solution h2 {
  text-align: center;
  margin-bottom: var(--space-xxl);
  color: var(--secondary);
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.problem-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.problem-emoji {
  font-size: 48px;
  margin-bottom: var(--space-md);
}

.problem-card h4 {
  color: var(--error);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-lg);
}

.problem-text {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.problem-divider {
  height: 2px;
  background: linear-gradient(90deg, var(--error) 0%, var(--success) 100%);
  margin: var(--space-lg) 0;
}

.solution-card h4 {
  color: var(--success);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-lg);
}

.solution-text {
  color: var(--text-primary);
  font-weight: 500;
}

/* ============================================
   PRODUCT SHOWCASE SECTION
   ============================================ */
.product-showcase {
  padding: var(--space-xxxl) 0;
  background-color: var(--bg-white);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxxl);
  align-items: center;
}

.product-images {
  position: relative;
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.product-content h2 {
  color: var(--secondary);
  margin-bottom: var(--space-md);
}

.product-subline {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--space-xl);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-xl);
}

.product-features li {
  padding: var(--space-sm) 0;
  font-size: var(--font-size-lg);
  color: var(--text-primary);
}

.product-features li::before {
  content: '✅ ';
  margin-right: var(--space-sm);
}

.product-testimonial {
  background-color: var(--bg);
  border-left: 4px solid var(--primary);
  padding: var(--space-lg);
  border-radius: var(--border-radius);
  margin-top: var(--space-xl);
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

.testimonial-rating {
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
  padding: var(--space-xxxl) 0;
  background-color: var(--bg);
}

.how-it-works h2 {
  text-align: center;
  color: var(--secondary);
  margin-bottom: var(--space-xxl);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--text-white);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-md);
}

.step-icon {
  font-size: 48px;
  margin-bottom: var(--space-md);
}

.step h4 {
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.step p {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}

/* Arrows between steps */
.step::after {
  content: '→';
  position: absolute;
  top: 30px;
  right: -20px;
  font-size: 30px;
  color: var(--primary);
  opacity: 0.5;
}

.step:last-child::after {
  display: none;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
  padding: var(--space-xxxl) 0;
  background-color: var(--bg-white);
}

.pricing h2 {
  text-align: center;
  color: var(--secondary);
  margin-bottom: var(--space-xxl);
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background-color: var(--bg-white);
  border: 2px solid var(--primary);
  border-radius: var(--border-radius-xl);
  padding: var(--space-xxl);
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  color: var(--text-white);
  padding: 8px 24px;
  border-radius: 20px;
  font-weight: 700;
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-md);
}

.pricing-subline {
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.pricing-amount {
  font-size: 64px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.pricing-period {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.pricing-activation {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.pricing-divider {
  height: 1px;
  background-color: var(--border-color);
  margin: var(--space-xl) 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-xl);
  text-align: left;
}

.pricing-features li {
  padding: var(--space-sm) 0;
  font-size: var(--font-size-base);
  color: var(--text-primary);
}

.pricing-features li::before {
  content: '✅ ';
  margin-right: var(--space-sm);
}

.pricing-cta {
  margin-bottom: var(--space-md);
}

.pricing-note {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

.pricing-comparison {
  text-align: center;
  margin-top: var(--space-xl);
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
  color: var(--text-white);
}

.final-cta h1 {
  color: var(--text-white);
  margin-bottom: var(--space-md);
}

.final-cta h3 {
  color: var(--text-white);
  font-weight: 400;
  opacity: 0.95;
  margin-bottom: var(--space-xl);
}

.final-cta-benefits {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
  flex-wrap: wrap;
}

.final-cta-benefits span {
  font-size: var(--font-size-lg);
}

.final-cta-contact {
  margin-top: var(--space-xl);
  font-size: var(--font-size-sm);
  opacity: 0.9;
}

/* ============================================
   RESPONSIVE LANDING PAGE
   ============================================ */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 42px;
  }

  .product-grid,
  .problem-cards {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .step::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 500px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero h3 {
    font-size: var(--font-size-lg);
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .pricing-amount {
    font-size: 48px;
  }

  .final-cta-benefits {
    flex-direction: column;
    gap: var(--space-md);
  }
}
