/* Glamour Landing Page CSS — dark gold/crimson theme */
:root {
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dim: #8a6e1a;
  --crimson: #c0152a;
  --black: #030303;
  --deep: #0a0a0f;
  --charcoal: #111118;
  --silver: #c8c8d8;
  --white: #ffffff;
  --glow-gold:
    0 0 20px rgba(212, 175, 55, 0.6), 0 0 60px rgba(212, 175, 55, 0.2);
  --glow-red: 0 0 20px rgba(192, 21, 42, 0.7);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Heebo", sans-serif;
  background: var(--black);
  color: var(--silver);
  line-height: 1.7;
  overflow-x: hidden;
  direction: rtl;
  text-align: right;
}

/* Scanline overlay */
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0, 0, 0, 0.05) 3px,
    rgba(0, 0, 0, 0.05) 4px
  );
  mix-blend-mode: multiply;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--deep);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
  border-radius: 3px;
}

/* NAVBAR */
.lp-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 72px;
  background: linear-gradient(
    180deg,
    rgba(3, 3, 3, 0.97) 0%,
    rgba(3, 3, 3, 0.75) 100%
  );
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.lp-navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.lp-nav-logo {
  height: 52px;
}
.lp-nav-logo img {
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.35));
}

.lp-nav-links {
  list-style: none;
  display: flex;
  gap: 0.2rem;
  align-items: center;
  margin: 0;
  padding: 0;
  max-width: none;
}

.lp-nav-links li a,
.lp-nav-links li button {
  color: var(--silver);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0.85rem;
  border-radius: 2px;
  transition:
    color 0.25s,
    background 0.25s;
  font-family: "Heebo", sans-serif;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.lp-nav-links li a:hover,
.lp-nav-links li button:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

/* SECTIONS */
.lp-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem 4rem;
  position: relative;
}

.lp-section-hero {
  background: var(--black);
  padding: 7rem 2rem 5rem;
  overflow: hidden;
}

.lp-background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.lp-section-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(3, 3, 3, 0.5) 0%,
      transparent 30%,
      transparent 55%,
      rgba(3, 3, 3, 0.88) 100%
    ),
    radial-gradient(ellipse at center, transparent 35%, rgba(3, 3, 3, 0.5) 100%);
}

.lp-section-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
}

/* Typography in hero section content */
.lp-section-content h1 {
  font-family: "Frank Ruhl Libre", serif;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.8);
  animation: fadeUp 1s ease both;
}

.lp-section-content h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 0.7rem auto 1.4rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
  animation: expandLine 1.2s ease 0.3s both;
}

.lp-section-content h2,
.lp-section-content h3 {
  color: var(--white);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.lp-section-content p {
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.87);
  max-width: 680px;
  margin: 0 auto 0.9rem;
  animation: fadeUp 1s ease 0.4s both;
}

/* Section title (for non-hero sections) */
.lp-section-title {
  font-family: "Frank Ruhl Libre", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.lp-section-title:hover {
  background: linear-gradient(
    90deg,
    var(--white) 25%,
    var(--gold) 50%,
    var(--white) 75%
  );
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 1.8s linear infinite;
}

.lp-section-title-sub {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
  display: block;
}

/* Shows section */
.lp-section-shows {
  background: var(--charcoal);
}

.lp-section-shows::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--crimson) 20%,
    var(--gold) 50%,
    var(--crimson) 80%,
    transparent
  );
}

/* Register section */
.lp-section-register {
  background: var(--deep);
}

.lp-section-register::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold) 20%,
    var(--crimson) 50%,
    var(--gold) 80%,
    transparent
  );
}

/* Contact section */
.lp-section-contact {
  background: var(--deep);
}

.lp-section-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold) 20%,
    var(--crimson) 50%,
    var(--gold) 80%,
    transparent
  );
}

/* Simple section (confirmation/error) */
.lp-section-simple {
  background: var(--deep);
}

/* Scroll hint */
.lp-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  opacity: 0.5;
  animation: bounce 2.2s infinite;
}

.lp-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}

.lp-scroll-hint::after {
  content: "▾";
  color: var(--gold);
  font-size: 1.1rem;
}

/* Active landing pages grid */
.lp-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 1rem;
  width: 100%;
}

.lp-show-item-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: 140px;
  text-decoration: none;
  color: inherit;
}

.lp-show-item {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-dim);
  box-shadow:
    0 0 0 4px rgba(212, 175, 55, 0.07),
    0 4px 20px rgba(0, 0, 0, 0.6);
  transition:
    transform 0.35s cubic-bezier(0.2, 1, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.35s;
  cursor: pointer;
}

.lp-show-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.88) saturate(1.1);
}

.lp-show-item-container:hover .lp-show-item {
  transform: scale(1.1) translateY(-5px);
  border-color: var(--gold);
  box-shadow:
    var(--glow-gold),
    0 8px 32px rgba(0, 0, 0, 0.7);
}

.lp-show-item-container:hover .lp-show-item img {
  transform: scale(1.08);
  filter: brightness(1.05) saturate(1.2);
}

.lp-show-registration {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.2s;
}

.lp-show-item-container:hover .lp-show-registration {
  color: var(--gold-light);
}

.lp-show-title {
  font-size: 0.85rem;
  color: var(--silver);
  text-align: center;
  font-weight: 600;
}

.lp-show-min-age {
  font-size: 0.88rem;
  color: var(--silver);
  text-align: center;
  opacity: 0.85;
}

.lp-show-item-closed {
  cursor: default;
  opacity: 0.45;
  filter: grayscale(0.6);
}

.lp-show-item-closed:hover .lp-show-item {
  transform: none;
}

.lp-show-item-closed:hover .lp-show-item img {
  transform: none;
}

.lp-show-closed-label {
  font-size: 0.88rem;
  color: var(--silver);
  text-align: center;
  font-style: italic;
  opacity: 0.8;
}

.lp-no-pages {
  color: rgba(200, 200, 216, 0.5);
  padding: 2rem 0;
}

/* Forms (registration + contact) */
.lp-form {
  width: 100%;
  max-width: 520px;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.lp-form > div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.lp-form label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-align: right;
}

.lp-form input,
.lp-form select,
.lp-form textarea {
  padding: 0.72rem 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 3px;
  color: var(--white);
  font-family: "Heebo", sans-serif;
  font-size: 0.97rem;
  direction: rtl;
  outline: none;
  transition:
    border-color 0.25s,
    background 0.25s,
    box-shadow 0.25s;
  width: 100%;
}

.lp-form input:focus,
.lp-form select:focus,
.lp-form textarea:focus {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.lp-form input::placeholder,
.lp-form textarea::placeholder {
  color: rgba(200, 200, 216, 0.28);
}

.lp-form input[type="number"] {
  color-scheme: dark;
}

.lp-form select option {
  background: var(--charcoal);
  color: var(--white);
}

.lp-form select:disabled {
  opacity: 0.5;
}

.lp-form .emt_error {
  color: var(--crimson);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

.lp-form div:has(> .emt_error) input,
.lp-form div:has(> .emt_error) select,
.lp-form div:has(> .emt_error) textarea {
  border-color: var(--crimson);
}

.lp-form div:has(> .emt_error) input:focus,
.lp-form div:has(> .emt_error) select:focus,
.lp-form div:has(> .emt_error) textarea:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(192, 21, 42, 0.15);
}

.lp-form .event-full {
  color: rgba(200, 200, 216, 0.4);
}

.lp-form input[type="submit"] {
  margin-top: 0.4rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--black);
  border: none;
  font-family: "Heebo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  width: 100%;
}

.lp-form input[type="submit"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.14),
    transparent
  );
  transition: left 0.4s;
}

.lp-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

.lp-form input[type="submit"]:hover::before {
  left: 100%;
}

/* Success message */
.lp-success-message {
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 520px;
  margin: 1rem auto;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 3px;
  background: rgba(212, 175, 55, 0.06);
}

.lp-success-message h2 {
  font-family: "Frank Ruhl Libre", serif;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.lp-success-message p {
  color: var(--silver);
  font-size: 1rem;
}

/* Error message (capacity etc.) */
.lp-error-message {
  text-align: center;
  padding: 1rem 1.5rem;
  max-width: 520px;
  margin: 0 auto 1rem;
  border: 1px solid rgba(192, 21, 42, 0.35);
  border-radius: 3px;
  background: rgba(192, 21, 42, 0.08);
}

.lp-error-message p {
  color: var(--crimson);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Registration note */
.lp-registration-note {
  margin-top: 1.2rem;
  color: rgba(200, 200, 216, 0.7);
  max-width: 480px;
  text-align: center;
  margin-inline: auto;
}

/* Logo in hero */
.lp-logo-container {
  text-align: center;
  margin-bottom: 2rem;
}

.lp-logo-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
}

/* Box container */
.lp-box {
  padding: 1.5rem;
  margin: 1rem 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.18);
  width: 100%;
}

/* Confirmation & error pages */
.lp-confirmation,
.lp-error {
  text-align: center;
  padding: 2rem 0;
}

.lp-confirmation .lp-logo-img,
.lp-error .lp-logo-img {
  margin: 0 auto 1.5rem;
}

.lp-confirmation h1 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.lp-error h1 {
  color: var(--crimson);
  margin-bottom: 1rem;
}

.lp-error .back-link {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--black);
  text-decoration: none;
  border-radius: 3px;
  font-weight: 700;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.lp-error .back-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Footer */
.lp-footer {
  padding: 1.5rem;
  text-align: center;
  background: var(--black);
  color: rgba(200, 200, 216, 0.28);
  font-size: 0.78rem;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  letter-spacing: 0.05em;
}

/* Terms modal */
.lp-terms-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 600;
  backdrop-filter: blur(8px);
}

.lp-terms-modal.show {
  display: flex;
}

.lp-terms-content {
  background: var(--charcoal);
  color: var(--silver);
  max-width: 800px;
  width: 100%;
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  position: relative;
  text-align: right;
  direction: rtl;
  max-height: 88vh;
  overflow-y: auto;
}

.lp-terms-content h2 {
  font-family: "Frank Ruhl Libre", serif;
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.lp-terms-content h3 {
  color: var(--gold-light);
  font-size: 0.95rem;
  margin: 1.4rem 0 0.4rem;
  letter-spacing: 0.04em;
}

.lp-terms-content p {
  font-size: 0.86rem;
  line-height: 1.8;
  color: rgba(200, 200, 216, 0.7);
  margin-bottom: 0.5rem;
}

ol,
ul {
  line-height: 1.8;
  padding-right: 1.5rem;
  list-style-position: inside;
  color: rgba(255, 255, 255, 0.87);
  max-width: 680px;
  margin: 0 auto 0.9rem;
}

li {
  margin-bottom: 0.35rem;
}

.lp-terms-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--silver);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-terms-close:hover {
  background: rgba(192, 21, 42, 0.35);
  color: #fff;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandLine {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 120px;
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .lp-navbar {
    padding: 0 1rem;
    height: 60px;
  }
  .lp-nav-logo {
    height: 42px;
  }
  .lp-nav-links li a,
  .lp-nav-links li button {
    font-size: 0.8rem;
    padding: 0.4rem 0.55rem;
  }
  .lp-show-item {
    width: 100px;
    height: 100px;
  }
  .lp-show-item-container {
    width: 110px;
  }
  .lp-terms-modal {
    padding: 0;
  }
  .lp-terms-content {
    max-height: 100vh;
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .lp-nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .lp-nav-links li a,
  .lp-nav-links li button {
    font-size: 0.75rem;
    padding: 0.35rem 0.5rem;
  }
  .lp-show-item {
    width: 80px;
    height: 80px;
  }
  .lp-show-item-container {
    width: 90px;
    gap: 0.4rem;
  }
  .lp-grid {
    gap: 1.4rem;
  }
}

.text-left {
  text-align: left;
}
