@import url('/base.css');

.logo-color img {
  height: 150px;
  width: auto;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 100dvh;
  background: #000;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/img/Led.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
  z-index: 2;
}

.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 60px;
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 6rem;
  font-weight: 900;
  margin-bottom: 25px;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -3px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
}

.hero-tagline {
  color: #ff9500;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-tagline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff9500, #ffaa2b);
  border-radius: 2px;
}

.hero-text p {
  line-height: 1.8;
  color: #f0f0f0;
  font-size: 1.15rem;
  font-weight: 400;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Inter', sans-serif;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-text .btn.gradient {
  margin-bottom: 35px;
  background: linear-gradient(135deg, #b83dba, #6c5ce7);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(184, 61, 186, 0.5);
  border: none;
  cursor: pointer;
}

.hero-text .btn.gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(184, 61, 186, 0.6);
  background: linear-gradient(135deg, #c44dc5, #7d6ef7);
}

.hero-text .btn.gradient:active {
  transform: translateY(-1px);
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.4s;
}

.service-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.service-pill:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}

.pill-emoji {
  font-size: 1rem;
  line-height: 1;
}

.hero-cta-wrap {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.55s;
  margin-bottom: 24px;
}

.event-types {
  display: flex;
  align-items: center;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.7s;
}

.et-item {
  padding: 0 12px;
}

.et-dot {
  color: #ff9500;
  font-size: 1.2rem;
  line-height: 1;
}

a.service-pill {
  text-decoration: none !important;
  color: #fff !important;
}

a.et-item {
  text-decoration: none !important;
  color: white !important;
}

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

@media (max-width: 768px) {
  .hero-content {
    padding: 40px 30px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-tagline {
    font-size: 1rem;
    letter-spacing: 1.5px;
  }

  .hero-text h1 {
    font-size: 3rem;
    letter-spacing: -2px;
  }

  .hero-text p {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-text .btn.gradient {
    padding: 14px 35px;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .service-pills {
    gap: 8px;
  }

  .service-pill {
    font-size: 0.82rem;
    padding: 8px 14px;
  }

  .hero-tagline {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .event-types {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
  }

  .et-item {
    padding: 0 8px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .logo-color img {
    height: 100px;
  }
}