@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");

:root {
  --club-black: #050505;
  --club-red: #b3001b;
  --club-white: #f4f7fb;
  --ice-glow: #b8e7ff;
}

body {
  min-height: 100vh;
  color: var(--club-white);
  background:
    radial-gradient(circle at 10% 10%, rgba(179, 0, 27, 0.18), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(184, 231, 255, 0.14), transparent 35%),
    linear-gradient(145deg, #020202 0%, #111111 55%, #050505 100%);
  font-family: "Montserrat", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.site-shell {
  width: min(100% - 2.5rem, 1320px);
  margin-inline: auto;
}

.ice-nav {
  margin-top: 1rem;
  background: rgba(13, 13, 13, 0.68);
  border: 1px solid rgba(244, 247, 251, 0.12);
  backdrop-filter: blur(10px);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.5),
    inset 0 0 18px rgba(184, 231, 255, 0.09);
}

.navbar-brand {
  letter-spacing: 0.08em;
  font-weight: 700;
}

.navbar-brand .accent,
.nav-link.active,
.nav-link:hover {
  color: #ff314f !important;
}

.nav-link {
  color: var(--club-white);
  font-weight: 500;
  transition: color 0.25s ease;
}

.hero {
  padding: 7rem 0 5rem;
}

.page-section {
  padding: 5.5rem 0 4rem;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 45%,
    rgba(179, 0, 27, 0.16) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.55),
    inset 0 0 22px rgba(184, 231, 255, 0.15);
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -110px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 231, 255, 0.3), transparent 65%);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(179, 0, 27, 0.22);
  border: 1px solid rgba(255, 49, 79, 0.35);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin: 1.15rem 0 0.95rem;
  text-wrap: balance;
}

.page-title {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  line-height: 1.15;
  margin: 1rem 0 0.9rem;
}

.btn-club-red {
  background-color: var(--club-red);
  border-color: var(--club-red);
  color: #fff;
}

.btn-club-red:hover {
  background-color: #d30c2b;
  border-color: #d30c2b;
}

.btn-ice {
  border: 1px solid rgba(184, 231, 255, 0.6);
  color: var(--club-white);
  background: rgba(184, 231, 255, 0.06);
}

.btn-ice:hover {
  border-color: var(--ice-glow);
  background: rgba(184, 231, 255, 0.18);
}

.hero-stat {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 2rem;
  padding-top: 1.2rem;
}

.hero-stat strong {
  font-size: 1.25rem;
  color: #ffffff;
}

.info-card {
  height: 100%;
  padding: 1.05rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.info-card h5 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.info-card p {
  margin: 0;
  color: rgba(244, 247, 251, 0.8);
  font-size: 0.95rem;
}

@media (max-width: 991.98px) {
  .site-shell {
    width: calc(100% - 1.25rem);
  }

  .hero {
    padding-top: 5.5rem;
  }

  .page-section {
    padding-top: 4.8rem;
  }
}

/* Shared Footer */
#siteFooter {
  margin-top: clamp(2.4rem, 6vw, 4.5rem);
}

.club-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 15% -10%, rgba(179, 0, 27, 0.38), transparent 52%),
    radial-gradient(circle at 90% -15%, rgba(120, 212, 255, 0.22), transparent 45%),
    linear-gradient(180deg, rgba(4, 6, 14, 0.95) 0%, #040508 100%);
}

.club-footer-shell {
  padding-top: clamp(1.8rem, 4vw, 2.8rem);
  padding-bottom: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: clamp(1rem, 2.6vw, 2rem);
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 0.75rem;
}

.footer-brand img {
  width: clamp(130px, 18vw, 200px);
  height: auto;
}

.footer-text {
  margin: 0;
  max-width: 48ch;
  color: rgba(244, 247, 251, 0.82);
  line-height: 1.65;
}

.footer-title {
  margin: 0 0 0.7rem;
  font-size: 1.02rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.footer-links,
.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.48rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(244, 247, 251, 0.86);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact li {
  display: flex;
  gap: 0.45rem;
  align-items: baseline;
  color: rgba(244, 247, 251, 0.82);
}

.footer-contact i {
  color: rgba(255, 74, 102, 0.95);
}

.footer-socials {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.55rem;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  margin-top: 1.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  color: rgba(244, 247, 251, 0.68);
  font-size: 0.93rem;
}

@media (max-width: 991.98px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand img {
    width: 150px;
  }
}

.floating-whatsapp-btn {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.34),
    inset 0 0 12px rgba(255, 255, 255, 0.15);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.floating-whatsapp-btn i {
  font-size: 1.15rem;
  line-height: 1;
}

.floating-whatsapp-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  color: #ffffff;
}

@media (max-width: 575.98px) {
  .floating-whatsapp-btn {
    right: 10px;
    bottom: 12px;
    padding: 0.7rem;
  }

  .floating-whatsapp-btn span {
    display: none;
  }
}
