
@font-face {
  font-family: 'Captain America';
  src: url('./fonts/American Captain.otf') format('opentype'),
    url('./fonts/American Captain.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

:root {
  --bright-magenta: #ef1f7d;
  --charcoal: #1e1e2a;
  --stone: #f4f0f5;
  --text-dark: #0f1020;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Oswald', 'Quattrocento', sans-serif;
  background: var(--stone);
  color: var(--charcoal);
}

.hero-header {
  background: white;
  color: var(--text-dark);
  padding: 14px 26px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 15px 35px rgba(10, 10, 20, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.brand img {
  width: clamp(180px, 24vw, 420px);
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.brand-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.primary-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.primary-nav a {
  color: var(--charcoal);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 4px;
  transition: color 200ms ease;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--bright-magenta);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(239, 31, 125, 0.08);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(239, 31, 125, 0.6);
}

.contact-pill-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-pill .label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 700;
}

.contact-pill strong {
  font-size: 1rem;
}

.contact-pill button {
  border: none;
  background: var(--bright-magenta);
  border-radius: 999px;
  color: white;
  padding: 8px 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
}

.contact-pill strong a {
  color: inherit;
  text-decoration: none;
}

.hero-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, rgba(239, 31, 125, 0.12), rgba(0, 0, 0, 0.04));
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 35px 70px rgba(15, 12, 26, 0.15);
}

.hero-banner__content h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 18px 0 12px;
  color: var(--charcoal);
}

.hero-banner__content p {
  max-width: 520px;
  line-height: 1.6;
  color: #3c2c3a;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .pill {
  background: var(--bright-magenta);
  color: white;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero-actions .ghost {
  background: transparent;
  border: 2px solid var(--bright-magenta);
  color: var(--bright-magenta);
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero-actions .text {
  background: transparent;
  border: none;
  color: var(--charcoal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 8px;
}

.hero-badges {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges span {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.85rem;
}

.departments-section {
  margin: 56px auto 120px;
  max-width: 1180px;
  background: linear-gradient(155deg, rgba(239, 31, 125, 0.08), rgba(15, 15, 23, 0.05));
  border-radius: 36px;
  padding: 48px;
  box-shadow: 0 35px 80px rgba(15, 12, 26, 0.18);
}

.eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #4d4050;
}

.section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.section-top h2 {
  margin: 8px 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--charcoal);
}

.section-top .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  background: var(--bright-magenta);
  color: white;
  box-shadow: 0 20px 40px rgba(239, 31, 125, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-top .pill.ghost {
  background: transparent;
  color: var(--bright-magenta);
  border: 1px solid rgba(239, 31, 125, 0.6);
  box-shadow: none;
}

.section-top .pill:hover {
  transform: translateY(-2px);
}

.section-top p {
  max-width: 520px;
  line-height: 1.7;
  color: #3c2c3a;
}

.departments-panels {
  margin-top: 36px;
  position: relative;
  min-height: 300px;
}

.departments-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.departments-panel.active {
  opacity: 1;
  pointer-events: auto;
}

.department-card {
  background: white;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 25px 60px rgba(15, 12, 26, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.department-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(15, 12, 26, 0.22);
}

.department-icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: var(--bright-magenta);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.4em;
  font-size: 0.75rem;
}

.department-card h3 {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.department-card p {
  flex-grow: 1;
  line-height: 1.6;
  color: #4b434f;
}

.department-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--bright-magenta);
  font-weight: 700;
}

.department-link::after {
  content: '\2192';
  font-size: 1rem;
}

.departments-dots {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.departments-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: none;
  background: rgba(30, 30, 42, 0.25);
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.departments-dot.active {
  background: var(--bright-magenta);
  transform: scale(1.1);
  box-shadow: 0 0 0 4px rgba(239, 31, 125, 0.25);
}

.departments-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 31, 125, 0.4) 0%, rgba(239, 31, 125, 0) 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.departments-dot.active::after {
  opacity: 1;
  transform: scale(1.5);
  animation: dotPulse 0.6s ease;
}

@keyframes dotPulse {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.cashless-section {
  margin: 0 auto 100px;
  max-width: 1180px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 36px;
  padding: 48px;
  box-shadow: 0 35px 80px rgba(15, 12, 26, 0.15);
}

.cashless-section__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cashless-section__top h2 {
  margin: 8px 0;
  font-size: clamp(2rem, 3vw, 2.4rem);
  color: var(--charcoal);
}

.cashless-section__top p {
  max-width: 520px;
  line-height: 1.7;
  color: #3c2c3a;
}

.cashless-track-wrapper {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(15, 15, 23, 0.04);
  border: 1px solid rgba(15, 15, 23, 0.1);
  padding: 18px 0;
}

.cashless-track {
  display: flex;
  gap: 48px;
  align-items: center;
  padding: 0 48px;
  animation: slideLogos 28s linear infinite;
}

.cashless-track img {
  height: 70px;
  filter: grayscale(0.1);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.cashless-track img:hover {
  opacity: 1;
}

@keyframes slideLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.site-footer {
  position: relative;
  background: linear-gradient(125deg, #120b1e, #1b0f28 40%, #331a41 80%);
  color: #f6efe8;
  padding: 80px 24px 42px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-gems {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% -10%, rgba(255, 214, 124, 0.25), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(239, 31, 125, 0.25), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(92, 7, 130, 0.35), transparent 60%);
  opacity: 0.45;
  pointer-events: none;
}

.footer-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-brand {
  flex: 1 1 340px;
  max-width: 420px;
}

.footer-brand h3 {
  margin: 12px 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: 0.2em;
  font-family: 'Captain America', 'Oswald', sans-serif;
  font-weight: 400;
}

.footer-brand p {
  line-height: 1.8;
  color: rgba(246, 239, 232, 0.9);
}

.footer-contact {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a {
  color: #f9f3e8;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.footer-info-grid {
  flex: 1 1 520px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.footer-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  backdrop-filter: blur(6px);
}

.footer-card h4 {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: #f4c861;
}

.footer-card-title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.85rem;
}

.footer-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.footer-location-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-location-link {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #f4c861;
  text-decoration: none;
}

.footer-location-actions span {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f6efe8;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(246, 239, 232, 0.25);
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.footer-socials img,
.footer-socials svg {
  width: 22px;
  height: 22px;
  filter: none;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: #f6efe8;
}

.footer-meta-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-meta-links a {
  color: #f2e8d7;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  text-decoration: none;
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  margin-top: 58px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-footer__bottom a {
  color: #f4c861;
  text-decoration: none;

  letter-spacing: 0.3em;
}

@media (max-width: 960px) {
  .footer-top {
    flex-direction: column;
  }

  .footer-contact a {
    letter-spacing: 0.05em;
  }

  .site-footer__bottom p {
    white-space: normal;
    letter-spacing: 0.15em;
  }

  .cashless-section {
    padding: 36px;
  }

  .hero-banner__image {
    height: 280px;
  }

  .departments-section {
    padding: 32px;
  }

  .section-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .departments-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hero-banner__image {
  height: 360px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.hero-banner__layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.2s ease;
  opacity: 0;
}

.hero-banner__layer.visible {
  opacity: 1;
}

@media (max-width: 960px) {
  .hero-banner {
    padding: 36px;
  }

  .hero-banner__image {
    height: 280px;
  }

  .departments-section {
    padding: 32px;
  }

  .section-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .departments-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media (max-width: 1100px) {
  .primary-nav {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 860px) {
  .hero-header {
    padding: 10px 18px;
  }

  .header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-nav {
    justify-content: center;
    gap: 16px;
  }
  .menu-toggle {
    display: flex;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 0 18px;
  }

  .hero-actions .pill,
  .hero-actions .ghost,
  .hero-actions .text {
    width: 100%;
    text-align: center;
  }

  .contact-pill {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-pill-content {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .contact-pill button {
    width: 100%;
  }

  .brand img {
    width: 220px;
  }

  .primary-nav a {
    font-size: 0.78rem;
  }

  .departments-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .departments-section {
    padding: 28px 18px 32px;
  }

  .section-top a.pill {
    align-self: stretch;
    text-align: center;
  }

  .department-card {
    min-height: auto;
  }

  .section-top h2 {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
  }
}
