/* Teaser Page Styles */
.teaser-page {
  background: #000;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.teaser-container {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.background-overlay {
  position: absolute;
  inset: 0;
  background: url("img/hero.jpg") center/cover no-repeat;
  animation: kenBurns 40s infinite alternate ease-in-out;
  z-index: -1;
  filter: brightness(0.6) contrast(1.1);
}

.background-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Deep vignette and center focus */
  background: radial-gradient(circle at center, rgba(13, 15, 18, 0.2) 0%, rgba(7, 8, 10, 0.8) 50%, rgba(0, 0, 0, 0.95) 100%);
}

.content {
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.logo-wrapper {
  position: relative;
  animation: float 4s infinite ease-in-out;
}

.main-logo {
  max-width: 480px;
  width: 95%;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 40px rgba(241, 210, 138, 0.2));
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(241, 210, 138, 0.15) 0%, transparent 70%);
  filter: blur(50px);
  animation: pulseGlow 4s infinite alternate ease-in-out;
  pointer-events: none;
}

.text-content {
  color: #fff;
  margin-bottom: 20px;
}

.reveal-text {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  letter-spacing: 5px;
  background: linear-gradient(180deg, #f1d28a 0%, #d6b36a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 1.2s forwards cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-text.delay-1 {
  animation-delay: 0.6s;
  font-size: 1.4rem;
  opacity: 0;
  -webkit-text-fill-color: #f1d28a;
  opacity: 0.7;
  letter-spacing: 15px;
  margin-top: 15px;
  text-transform: uppercase;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 25px;
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 1.2s forwards cubic-bezier(0.23, 1, 0.32, 1);
  animation-delay: 1s;
}

.social-item {
  color: #f1d28a;
  font-size: 1.5rem;
  text-decoration: none;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(241, 210, 138, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
}

.social-item:hover {
  background: #f1d28a;
  color: #000;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 0 20px rgba(241, 210, 138, 0.4);
  border-color: #f1d28a;
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #f1d28a;
  border-radius: 50%;
  opacity: 0.3;
  animation: rise 15s infinite linear;
}

.particle:nth-child(1) {
  left: 15%;
  bottom: -5%;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  left: 35%;
  bottom: -5%;
  animation-duration: 18s;
  animation-delay: 3s;
}

.particle:nth-child(3) {
  left: 55%;
  bottom: -5%;
  animation-duration: 14s;
  animation-delay: 6s;
}

.particle:nth-child(4) {
  left: 75%;
  bottom: -5%;
  animation-duration: 22s;
  animation-delay: 2s;
}

.particle:nth-child(5) {
  left: 95%;
  bottom: -5%;
  animation-duration: 16s;
  animation-delay: 5s;
}

.teaser-footer {
  padding: 30px;
  text-align: center;
  color: #555;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

/* Animations */
@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.15) translate(-2%, -2%);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}

@keyframes pulseGlow {
  from {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(0.8);
  }

  to {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

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

@keyframes rise {
  from {
    transform: translateY(110vh) translateX(0);
    opacity: 0;
  }

  20% {
    opacity: 0.4;
  }

  80% {
    opacity: 0.4;
  }

  to {
    transform: translateY(-10vh) translateX(50px);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .reveal-text {
    font-size: 2.2rem;
    letter-spacing: 3px;
  }

  .reveal-text.delay-1 {
    font-size: 1rem;
    letter-spacing: 8px;
  }

  .main-logo {
    max-width: 320px;
  }

  .social-links {
    gap: 15px;
  }

  .social-item {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}