* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #070707;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.hero {
  min-height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #090909;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.6s ease-in-out, transform 8s linear;
}

.hero-slide.visible {
  opacity: 1;
  transform: scale(1.08);
}

/* Center ~80% remains clear. */
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.92) 0%,
    rgba(0,0,0,0) 10%,
    rgba(0,0,0,0) 90%,
    rgba(0,0,0,.92) 100%
  );
}

nav,
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1050px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

nav {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.small-button {
  color: white;
  text-decoration: none;
  border: 1px solid #777;
  border-radius: 100px;
  padding: 9px 16px;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(8px);
}

.hero-content {
  margin-top: auto;
  margin-bottom: auto;
  padding: 70px 0;
}

.eyebrow {
  color: #ff63ad;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.hero-content .eyebrow {
  font-size: clamp(.88rem, 1.9vw, 1.02rem);
}

h1 {
  max-width: 900px;
  margin: 12px 0 22px;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: .95;
  letter-spacing: -.055em;
}

.glow-title {
  color: white;
  animation: glowCycle 8s linear infinite;
}

@keyframes glowCycle {
  0% { text-shadow: 0 0 5px #ff286f, 0 0 12px #ff286f, 0 0 28px #ff286f, 0 0 55px #ff286f; }
  20% { text-shadow: 0 0 5px #ff7a24, 0 0 12px #ff7a24, 0 0 28px #ff7a24, 0 0 55px #ff7a24; }
  40% { text-shadow: 0 0 5px #8b4cff, 0 0 12px #8b4cff, 0 0 28px #8b4cff, 0 0 55px #8b4cff; }
  60% { text-shadow: 0 0 5px #18c8ff, 0 0 12px #18c8ff, 0 0 28px #18c8ff, 0 0 55px #18c8ff; }
  80% { text-shadow: 0 0 5px #ff35e4, 0 0 12px #ff35e4, 0 0 28px #ff35e4, 0 0 55px #ff35e4; }
  100% { text-shadow: 0 0 5px #ff286f, 0 0 12px #ff286f, 0 0 28px #ff286f, 0 0 55px #ff286f; }
}

.hero-copy {
  max-width: 680px;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  line-height: 1.55;
  font-weight: 700;
}

/*
  Stylized supporting text.
  Readability comes from the outline + translucent backing.
  The text color itself uses a slow animated gradient.
*/

.neon-wrap {
  position: relative;
}

.neon-text,
.neon-glow {
  background-image: linear-gradient(
    90deg,
    #ffffff,
    #00eaff,
    #b84dff,
    #ff3cac,
    #00fff0,
    #ffffff
  );

  background-size: 180% 100%;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: supportingTextFlow 8s linear infinite;
}

.neon-text {
  position: relative;
  z-index: 2;

  -webkit-text-stroke: 0.25px rgba(255,255,255,.45);
}

.neon-glow {
  position: absolute;
  inset: 0;
  z-index: 1;

  filter: blur(6px);
  opacity: 0.6;

  pointer-events: none;
}

.adaptive-text {
  position: relative;
  display: inline;

  background-image: linear-gradient(
    90deg,
    #ffffff,
    #00eaff,
    #b84dff,
    #ff3cac,
    #00fff0,
    #ffffff
  );

  background-size: 180% 100%;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  -webkit-text-stroke: 0.25px rgba(255,255,255,.65);

  animation: supportingTextFlow 8s linear infinite;
}

.adaptive-text::before {
  content: attr(data-text);

  position: absolute;

  left: 0;
  top: 0;

  width: max-content;
  height: auto;

  white-space: inherit;

  background-image: linear-gradient(
    90deg,
    #ffffff,
    #00eaff,
    #b84dff,
    #ff3cac,
    #00fff0,
    #ffffff
  );

  background-size: 180% 100%;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  filter: blur(3px);
  opacity: 0.8;

  pointer-events: none;
  z-index: -1;

  animation: supportingTextFlow 8s linear infinite;
}

@keyframes supportingTextFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 250% 50%;
  }
}

/*
  A restrained transparent backing.
  It is intentionally light enough that the image still shows through.
*/
.adaptive-box {
  padding: .18em .38em;
  border-radius: .35em;
   background-color: rgba(0,0,0,.14);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hero-copy.adaptive-box {
  padding: .32em .5em;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 23px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: bold;
}

.primary {
  background: white;
  color: black;
}

.secondary {
  background: #111;
  color: white;
  border: 1px solid #444;
}

.video-section,
.booking {
  width: min(1050px, calc(100% - 32px));
  margin: auto;
  padding: 80px 0;
}

h2 {
  margin: 10px 0 35px;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.video {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  background: #111;
}

.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.booking {
  padding-top: 20px;
  padding-bottom: 100px;
}

.booking-box {
  padding: clamp(28px, 7vw, 65px);
  border: 1px solid #292929;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(255,0,110,.18), transparent 40%),
    #101010;
}

.booking-box > p:not(.eyebrow) {
  max-width: 650px;
  color: #bbb;
  line-height: 1.6;
}

.contact-email {
  margin-top: 18px;
  font-size: .92rem;
  word-break: break-word;
}

/* Muted CSS pride flag footer. */
footer {
  padding: 30px 16px;
  color: white;
  text-align: center;
  font-size: .85rem;
  font-weight: bold;
  letter-spacing: .04em;

  background: linear-gradient(
    to bottom,
    #8f4a4a 0%, #8f4a4a 16.66%,
    #a56f43 16.66%, #a56f43 33.33%,
    #aaa05b 33.33%, #aaa05b 50%,
    #477b59 50%, #477b59 66.66%,
    #4e6285 66.66%, #4e6285 83.33%,
    #75547f 83.33%, #75547f 100%
  );

  text-shadow:
    0 1px 3px rgba(0,0,0,.95),
    0 0 8px rgba(0,0,0,.75);
}

@media (max-width: 650px) {
  nav {
    padding-top: 16px;
  }

  .hero {
    min-height: 85vh;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-copy {
    font-size: 1.12rem;
  }

  .video-section,
  .booking {
    padding-top: 60px;
  }

  .buttons .button {
    width: 100%;
  }

  .video {
    border-radius: 12px;
  }
}

/* EMAIL — slow warm pulsing glow */

.email-button {
  animation: emailPulse 7.5s ease-in-out infinite;
    transition:
    transform 0.25s ease;
}

@keyframes emailPulse {
  0%, 100% {
    box-shadow:
      0 0 4px rgba(255, 255, 255, 0.35),
      0 0 10px rgba(255, 120, 80, 0.20);
  }

  50% {
    box-shadow:
      0 0 8px rgba(255, 255, 255, 0.80),
      0 0 18px rgba(255, 120, 80, 0.65),
      0 0 30px rgba(255, 70, 120, 0.30);
  }
}
.email-button:hover {
  transform: translateY(-2px);
}


/* DISCORD — steady purple/blue glow */

/* DISCORD — purple/blue pulsing glow */

.discord-button {
  border-color: #9c8cff;

  animation: discordPulse 8.2s ease-in-out infinite;

  transition:
    transform 0.25s ease;
}

@keyframes discordPulse {
  0%, 100% {
    box-shadow:
      0 0 4px rgba(140, 120, 255, 0.35),
      0 0 10px rgba(110, 90, 255, 0.20);
  }

  50% {
    box-shadow:
      0 0 9px rgba(170, 150, 255, 0.95),
      0 0 20px rgba(120, 100, 255, 0.70),
      0 0 34px rgba(130, 70, 255, 0.40);
  }
}

.discord-button:hover {
  transform: translateY(-2px);
}
