/* 
  GES Logistics - Homepage Hero Section
  Full viewport height with navy gradient background
*/

/* Hero Container */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2332 100%);
  overflow: hidden;
  padding: var(--space-24) var(--space-16);
}

/* Background Overlay Pattern (optional) */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(26, 155, 159, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Hero Content Container */
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
  text-align: center;
  color: white;
}

/* Pre-headline */
.hero__pre-headline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-teal);
  margin-bottom: var(--space-16);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* Main Headline */
.hero__headline {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: white;
  margin-bottom: var(--space-24);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* Subheadline */
.hero__subheadline {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-48);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* CTA Buttons Container */
.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  align-items: center;
  margin-bottom: var(--space-64);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

/* CTA Button */
.hero__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--cta-orange);
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.hero__cta-button:hover {
  background: #e55a2a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.hero__cta-button:active {
  transform: translateY(0);
}

/* Trust Bar */
.hero__trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-32);
  padding-top: var(--space-32);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1s forwards;
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

.hero__trust-icon {
  font-size: 24px;
  color: var(--primary-teal);
}

.hero__trust-text {
  font-size: 14px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

.hero__trust-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-32);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  cursor: pointer;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 1.2s forwards;
}

.hero__scroll-text {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(8px);
  }
}

/* Tablet Responsive (768px) */
@media (max-width: 1024px) {
  .hero__headline {
    font-size: 48px;
  }
  
  .hero__subheadline {
    font-size: 18px;
  }
  
  .hero__trust-bar {
    gap: var(--space-24);
  }
}

/* Mobile Responsive (< 768px) */
@media (max-width: 767px) {
  .hero {
    min-height: 70vh;
    padding: var(--space-80) var(--space-16) var(--space-24);
  }
  
  .hero__pre-headline {
    font-size: 11px;
    letter-spacing: 1.2px;
    margin-bottom: var(--space-12);
  }
  
  .hero__headline {
    font-size: 36px;
    margin-bottom: var(--space-16);
  }
  
  .hero__subheadline {
    font-size: 16px;
    margin-bottom: var(--space-32);
  }
  
  .hero__ctas {
    gap: var(--space-12);
    margin-bottom: var(--space-48);
  }
  
  .hero__cta-button {
    font-size: 15px;
    padding: 14px 24px;
    min-width: 100%;
    max-width: 320px;
  }
  
  .hero__trust-bar {
    flex-direction: column;
    gap: var(--space-16);
    padding-top: var(--space-24);
  }
  
  .hero__trust-item {
    flex-direction: row;
    gap: var(--space-12);
  }
  
  .hero__trust-icon {
    font-size: 20px;
  }
  
  .hero__trust-text {
    font-size: 13px;
  }
  
  .hero__trust-label {
    display: none;
  }
  
  .hero__scroll-indicator {
    bottom: var(--space-16);
  }
}

/* Small Mobile (< 414px) */
@media (max-width: 413px) {
  .hero__headline {
    font-size: 32px;
  }
  
  .hero__subheadline {
    font-size: 15px;
  }
  
  .hero__cta-button {
    font-size: 14px;
    padding: 12px 20px;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero__pre-headline,
  .hero__headline,
  .hero__subheadline,
  .hero__ctas,
  .hero__trust-bar,
  .hero__scroll-indicator {
    animation: none;
    opacity: 1;
  }
  
  .hero__scroll-arrow {
    animation: none;
  }
  
  .hero__cta-button:hover {
    transform: none;
  }
}
