/**
 * @file
 * Hero Section Styles
 * Full viewport dark background with particles/gradient animation
 */

.dobig-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f0f0f 100%);
}

/* Animated Background Particles */
.dobig-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.05) 0%, transparent 40%);
  animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* Grid Pattern Overlay */
.dobig-hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(249, 115, 22, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.dobig-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

.dobig-hero-logo {
  margin-bottom: 2rem;
  animation: fade-in-down 1s ease-out;
}

.dobig-hero-logo img {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(249, 115, 22, 0.3));
}

.dobig-hero-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  animation: fade-in-up 1s ease-out 0.2s both;
}

.dobig-hero-headline .highlight {
  background: linear-gradient(135deg, #F97316, #FB923C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dobig-hero-subheadline {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fade-in-up 1s ease-out 0.4s both;
}

.dobig-hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-in-up 1s ease-out 0.6s both;
}

.dobig-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
}

.dobig-hero-scroll i {
  font-size: 1.25rem;
}

/* Floating Elements */
.dobig-hero-float {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.2), transparent);
  animation: float 6s ease-in-out infinite;
}

.dobig-hero-float-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.dobig-hero-float-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

.dobig-hero-float-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 20%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-20px) scale(1.05);
    opacity: 0.8;
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Small Hero for Inner Pages */
.dobig-hero-small {
  min-height: 50vh;
  padding-top: 80px;
}

.dobig-hero-small .dobig-hero-content {
  padding-top: 2rem;
}

.dobig-hero-small .dobig-hero-headline {
  font-size: clamp(2rem, 4vw, 3rem);
}

.dobig-hero-small .dobig-hero-scroll {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .dobig-hero {
    min-height: 90vh;
  }

  .dobig-hero-small {
    min-height: 40vh;
  }

  .dobig-hero-headline {
    font-size: 2rem;
  }

  .dobig-hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .dobig-hero-ctas .dobig-btn {
    width: 100%;
    max-width: 300px;
  }

  .dobig-hero-float {
    display: none;
  }
}