/* Footer styles for Lucky Night Event */

.lne-footer {
  background: radial-gradient(circle at top, #18040f, #050308 55%);
  color: rgba(255, 255, 255, 0.86);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2.5rem;
  padding-bottom: 3.25rem;
  position: relative;
  z-index: 10;
}

.lne-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem 2.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2.25rem;
}

.lne-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.lne-footer__logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0, #ffd700, #b8860b 60%, #4b0108 100%);
  color: #0b0509;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 10px 30px rgba(0, 0, 0, 0.85);
}

.lne-footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.lne-footer__logo-main {
  font-family: "Playfair Display", "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 1.1rem;
  color: #ffffff;
}

.lne-footer__logo-sub {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.6);
}

.lne-footer__description {
  max-width: 360px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.lne-footer__heading {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffd700;
  margin: 0 0 0.85rem;
}

.lne-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.lne-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  position: relative;
  padding: 0.15rem 0;
}

.lne-footer__link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.0);
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.lne-footer__link::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.8), transparent);
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: left;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.lne-footer__link:hover,
.lne-footer__link:focus-visible {
  color: #ffffff;
  outline: none;
}

.lne-footer__link:hover::before,
.lne-footer__link:focus-visible::before {
  background: rgba(255, 215, 0, 0.9);
  transform: scale(1.1);
}

.lne-footer__link:hover::after,
.lne-footer__link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.lne-footer__contact-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.9rem;
}

.lne-footer__contact-details {
  display: grid;
  gap: 0.5rem;
}

.lne-footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.lne-footer__contact-link i {
  color: #ffd700;
}

.lne-footer__contact-link:hover,
.lne-footer__contact-link:focus-visible {
  color: #ffffff;
  outline: none;
}

.lne-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  margin: 0 1.25rem;
}

.lne-footer__copy {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.lne-footer__age-note {
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Cookie banner */

.lne-cookie-banner {
  position: fixed;
  inset-inline: 0.75rem;
  bottom: 0.75rem;
  z-index: 60;
  max-width: 1160px;
  margin: 0 auto;
}

.lne-cookie-banner[hidden] {
  display: none !important;
}

.lne-cookie-banner__inner {
  background: radial-gradient(circle at top, rgba(255, 215, 0, 0.15), #14040f 60%);
  border-radius: 1rem;
  border: 1px solid rgba(255, 215, 0, 0.55);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.9);
  padding: 1rem 1.2rem 1.1rem;
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 1.4fr);
  gap: 1rem;
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.lne-cookie-banner--visible .lne-cookie-banner__inner {
  transform: translateY(0);
  opacity: 1;
}

.lne-cookie-banner--hidden .lne-cookie-banner__inner {
  transform: translateY(140%);
  opacity: 0;
}

.lne-cookie-banner__title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.lne-cookie-banner__description {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.lne-cookie-banner__actions {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.lne-cookie-banner__button {
  cursor: pointer;
  border-radius: 999px;
  border: none;
  padding: 0.55rem 1.1rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lne-cookie-banner__button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.lne-cookie-banner__button--secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.lne-cookie-banner__button--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.lne-cookie-banner__button--primary {
  background: linear-gradient(120deg, #ffd700, #ff9f1c);
  color: #1a0b02;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.9);
}

.lne-cookie-banner__button--primary:hover {
  background: linear-gradient(120deg, #ffe37a, #ffb347);
}

@media (max-width: 900px) {
  .lne-footer__inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }

  .lne-footer__contact {
    grid-column: 1 / -1;
  }

  .lne-cookie-banner__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .lne-cookie-banner__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .lne-footer {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .lne-footer__inner {
    padding-inline: 1rem;
    grid-template-columns: minmax(0, 1fr);
  }

  .lne-footer__bottom {
    margin-inline: 1rem;
  }

  .lne-cookie-banner {
    inset-inline: 0.5rem;
    bottom: 0.5rem;
  }

  .lne-cookie-banner__inner {
    padding: 0.85rem 0.95rem 0.95rem;
  }

  .lne-cookie-banner__actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .lne-cookie-banner__button {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lne-footer,
  .lne-footer * {
    transition: none !important;
    animation: none !important;
  }
}
