/* Lottie Animation */
.lottie-container .animation {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  z-index: -1;
  filter: saturate(2);
}

.animation:after {
  content: "";
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/7/76/1k_Dissolve_Noise_Texture.png");
  width: 200%;
  height: 200%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.1;
  animation: animationGrain 8s step(10) infinite;
}

.gradient {
  width: 100vw;
  height: 200vh;
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    var(--neutral-dark) 100% /* Changed from pure black */
  );
  z-index: 1;
}

.end-lottie {
  position: absolute;
  top: 100vh;
  width: 100%;
  height: 1px;
}

@keyframes animationGrain {
  0%,
  10% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-5%, -10%);
  }
  30% {
    transform: translate(-15%, -20%);
  }
  40% {
    transform: translate(-5%, -20%);
  }
  50% {
    transform: translate(-5%, -10%);
  }
  60% {
    transform: translate(-15%, -20%);
  }
  70% {
    transform: translate(-5%, -10%);
  }
  80% {
    transform: translate(-15%, -20%);
  }
  90% {
    transform: translate(-5%, -10%);
  }
  100% {
    transform: translate(-15%, -20%);
  }
}

/* Styling Hero Content */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 2rem;
  background: var(--neutral-dark);
  color: var(--neutral-light);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-img-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(244, 172, 183, 0.3);
  border: 4px solid var(--primary);
  animation: float 3s ease-in-out infinite;
}

.hero-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-section h1 {
  color: var(--neutral-light);
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: var(--fs-h1);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
  font-size: var(--fs-h5);
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.flavor-preview {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.flavor-tag {
  background: rgba(255, 202, 212, 0.2);
  color: var(--neutral-light);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  border: 1px solid var(--support);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.flavor-tag:hover {
  background: var(--support);
  color: var(--neutral-dark);
  transform: translateY(-2px);
}

.button-container {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-button {
  background: var(--primary);
  color: var(--neutral-dark);
  border: none;
  padding: 1rem 2rem;
  font-size: var(--fs-h6);
  font-weight: var(--fw-semibold);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(244, 172, 183, 0.4);
}

.cta-button:hover {
  background: var(--support);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 172, 183, 0.6);
}

.secondary-button {
  background: transparent;
  color: var(--neutral-light);
  border: 2px solid var(--accent);
}

.secondary-button:hover {
  background: var(--accent);
  color: var(--neutral-dark);
}

.hero-info {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-base);
  color: var(--accent);
}

.info-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

.hours {
  font-size: var(--fs-base);
  color: var(--accent);
  text-align: center;
  background: rgba(216, 226, 220, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(216, 226, 220, 0.2);
}

.special-offer {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: linear-gradient(45deg, var(--primary), var(--support));
  color: var(--neutral-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: var(--fw-semibold);
  font-size: 0.9rem;
  animation: pulse 2s infinite;
  box-shadow: 0 4px 15px rgba(244, 172, 183, 0.4);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.social-links {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--accent);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.social-link:hover {
  color: var(--primary);
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 820px) {
  .hero-section {
    height: 120vh;
    padding: 1rem;
  }

  .hero-img-container {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .hero-section h1 {
    font-size: var(--fs-h2);
  }

  .flavor-preview {
    gap: 0.5rem;
  }

  .flavor-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .button-container {
    flex-direction: column;
    align-items: center;
  }

  .hero-info {
    flex-direction: column;
    gap: 1rem;
  }

  .special-offer {
    position: static;
    margin-bottom: 1rem;
    text-align: center;
  }

  .social-links {
    position: static;
    justify-content: center;
    margin-top: 1rem;
  }
}

@media (max-width: 600px) {
  .hero-section {
    height: 150vh;
  }

  .hero-img-container {
    display: none;
  }
}
