/* Footer styles for NorthSeaClubBar */

.nscb-footer {
  background: radial-gradient(circle at top, #222633 0, #090b10 55%, #05060a 100%);
  color: rgba(255, 255, 255, 0.9);
  padding-top: 2.75rem;
  padding-bottom: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.nscb-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) repeat(2, minmax(0, 1.2fr)) minmax(0, 1.5fr);
  gap: 2rem;
}

.nscb-footer__title {
  font-family: "Rajdhani", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 0.75rem;
}

.nscb-footer__tagline {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.nscb-footer__nav-heading {
  font-family: "Rajdhani", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 0.75rem;
  color: #ffd166;
}

.nscb-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nscb-footer__nav-list li + li {
  margin-top: 0.4rem;
}

.nscb-footer__nav-list a {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.05rem;
}

.nscb-footer__nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff4136, #ffd166);
  transition: width 0.18s ease-out;
}

.nscb-footer__nav-list a:hover::after {
  width: 100%;
}

.nscb-footer__nav-list a:focus-visible {
  outline: 2px solid #ffd166;
  outline-offset: 2px;
}

.nscb-footer__meta-text {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.nscb-footer__social {
  display: flex;
  gap: 0.65rem;
}

.nscb-footer__social-link {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: background-color 0.18s ease-out, color 0.18s ease-out, transform 0.12s ease-out, box-shadow 0.18s ease-out;
}

.nscb-footer__social-link:hover {
  background: linear-gradient(135deg, #ff4136, #ffd166);
  color: #111217;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.55);
}

.nscb-footer__social-link:focus-visible {
  outline: 2px solid #ffd166;
  outline-offset: 2px;
}

.nscb-footer__bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 0 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 1rem;
}

.nscb-footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Cookie banner */

.nscb-cookie-banner {
  position: fixed;
  inset-inline: 0.75rem;
  bottom: 0.75rem;
  z-index: 60;
  max-width: 1120px;
  margin-inline: auto;
  background: rgba(9, 11, 16, 0.98);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
  color: #ffffff;
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out, visibility 0.25s ease-out;
}

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

.nscb-cookie-banner--hidden {
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
}

.nscb-cookie-banner__inner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 1.2rem;
}

.nscb-cookie-banner__title {
  margin: 0 0 0.4rem;
  font-family: "Rajdhani", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nscb-cookie-banner__description {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.87);
}

.nscb-cookie-banner__link {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: #ffd166;
  text-decoration: underline;
}

.nscb-cookie-banner__link:focus-visible {
  outline: 2px solid #ffd166;
  outline-offset: 2px;
}

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

.nscb-cookie-banner__btn {
  min-width: 120px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.nscb-cookie-banner__btn:focus-visible {
  outline: 2px solid #ffd166;
  outline-offset: 2px;
}

.nscb-cookie-banner__btn--secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.32);
}

.nscb-cookie-banner__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nscb-cookie-banner__btn--primary {
  background: linear-gradient(135deg, #ff4136, #ffd166);
  color: #111217;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.8);
}

.nscb-cookie-banner__btn--primary:hover {
  background: linear-gradient(135deg, #ffd166, #ff4136);
}

/* Responsive */

@media (max-width: 960px) {
  .nscb-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .nscb-footer__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .nscb-cookie-banner {
    inset-inline: 0.5rem;
    bottom: 0.5rem;
    border-radius: 16px;
  }

  .nscb-cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

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

  .nscb-cookie-banner__btn {
    flex: 1 1 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nscb-cookie-banner {
    transition: none !important;
  }
}
