:root {
  --blue-600: #2e4f95;
  --blue-800: #1b2e59;
  --red-600: #B00020;
  --red-800: #8D0000;
  --ink: #0f172a;
  --ink-2: #334155;
  --muted: #64748b;
  --bg: #ffffff;
  --bg-alt: #eff4fa;
  --card: #ffffff;
  --ring: rgba(31,77,216,.18);
  --radius: 16px;
  --shadow: 0 10px 30px rgba(2,6,23,.08);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 96px;
}

html {
  scroll-behavior: smooth;
}

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

a { 
  color: var(--blue-600); 
  text-decoration: none; 
}
a:hover { text-decoration: underline; }

.container { 
  width: min(1100px, 92%); 
  margin-inline: auto; 
}
.grid.two { 
  display: grid; 
  grid-template-columns: 1.1fr 0.9fr; 
  gap: 2rem; 
}
.flex.between { 
  display: flex; 
  justify-content: space-between; 
}
.flex.center { 
  align-items: center; 
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--ring);
}
.header-inner {
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 0.5rem 0;
}
.brand { 
  display: flex; 
  align-items: center; 
  gap: .75rem; 
}
.logo {
  height: 80px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
}

.site-nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.site-nav li:last-child {
  margin-left: 1rem; 
}
.site-nav a {
  display: flex;
  align-items: center;
  padding: .7rem 1rem;
  border-radius: 10px;
}
.site-nav a:hover { 
  background: var(--bg-alt); 
  text-decoration: none; 
}

.nav-toggle { 
  display: none; 
  background: none; 
  border: 0; 
  padding: .5rem; 
  cursor: pointer; 
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nav-toggle .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}
.nav-toggle .icon svg {
  width: 32px;       
  height: 32px;
  stroke: var(--blue-600); 
  stroke-width: 2;   
}
.nav-toggle .close-icon {
  display: none;
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .menu-icon {
  display: none;
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .close-icon {
  display: inline-flex;
  opacity: 1;
}

.hero { 
  position: relative; 
  height: 68vh; 
  min-height: 460px; 
  overflow: hidden; 
}
.slideshow { 
  position: absolute; 
  inset: 0; 
}
.slide {
  position: absolute; 
  inset: 0; 
  background-size: cover; 
  background-position: center;
  opacity: 0; 
  animation: fade 40s infinite; 
}
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }
.slide:nth-child(4) { animation-delay: 15s; }
.slide:nth-child(5) { animation-delay: 20s; }
.slide:nth-child(6) { animation-delay: 25s; }
.slide:nth-child(7) { animation-delay: 30s; }
.slide:nth-child(8) { animation-delay: 35s; }

@keyframes fade {
  0% { opacity: 0; }
  5% { opacity: 1; }
  12.5% { opacity: 1; }
  17.5% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-overlay {
  position: relative; 
  z-index: 2; 
  display: flex; 
  flex-direction: column; 
  gap: 1rem;
  height: 100%; 
  align-items: flex-start; 
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem); 
  margin-inline: auto; 
  width: min(1100px, 92%);
  color: #fff; 
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}
.hero::after {
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55));
  z-index: 1;
}
.hero h1 { 
  font-size: clamp(2rem, 5vw, 3rem); 
  margin: 0; 
}
.hero p { 
  max-width: 60ch; 
  margin: 0; 
}

.section { 
  padding: 4.5rem 0; 
}
.section.alt { 
  background: var(--bg-alt); 
  padding: 1.5rem 0; 
}
.card {
  background: var(--card); 
  border: 1px solid #e9eef7; 
  border-radius: var(--radius); 
  box-shadow: var(--shadow);
  padding: 1.25rem;
  border-color: var(--ring); 
}
.badge {
  display: inline-block; 
  background: linear-gradient(90deg, var(--blue-600), var(--red-600));
  -webkit-background-clip: text; 
  background-clip: text; 
  color: transparent; 
  font-weight: 800; 
  letter-spacing: .5px; 
  margin: 0 0 .5rem 0; 
}
.lead { 
  font-size: 1.05rem; 
}
.checklist { 
  list-style: none; 
  padding: 0; 
  margin: .75rem 0 0 0; 
}
.checklist li { 
  padding-left: 1.5rem; 
  position: relative; 
  margin: .35rem 0; 
}
.checklist li::before {
  content: "✓"; 
  position: absolute; 
  left: 0; 
  top: 0; 
  color: var(--blue-600); 
  font-weight: 700;
}

.cards { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 1rem; 
}
.card.stat { 
  text-align: center; 
  padding: 1.5rem; 
}
.stat-number { 
  font-size: 2rem; 
  font-weight: 800; 
}
.stat-label { 
  color: var(--muted); 
  font-weight: 600; 
  margin-top: .25rem; 
}

.hours-table { 
  width: 100%; 
  border-collapse: separate; 
  border-spacing: 0 8px; 
}
.hours-table th, 
.hours-table td { 
  padding: .6rem 1rem; 
  background: #fff; 
}
.hours-table th { 
  border-radius: 10px 0 0 10px; 
  text-align: left; 
}
.hours-table td { 
  border-radius: 0 10px 10px 0; 
}
.muted { 
  color: var(--muted); 
}
.small { 
  font-size: .9rem; 
}

.map-wrap { 
  border-radius: var(--radius); 
  overflow: hidden; 
  box-shadow: var(--shadow); 
  border: 1px solid #e9eef7; 
  border-color: var(--ring); 
}
.map-wrap iframe { 
  width: 100%; 
  height: 320px; 
  border: 0; 
  display: block; 
}

.site-footer { 
  border-top: 1px solid var(--ring); 
  background: #fff; 
}
.footer-inner { 
  display: grid; 
  grid-template-columns: 1fr auto; 
  gap: 0.1rem; 
  align-items: center; 
  padding: 1rem 0; 
}
.footer-inner nav a { 
  margin-right: .85rem; 
}
.footer-brand { 
  display: flex; 
  align-items: center; 
  gap: .5rem; 
}
.footer-brand img {
  height: 60px;
  width: auto;
  max-width: 200px;
}

.btn {
  display: inline-block;
  padding: .7rem 1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  box-shadow: none;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.btn:hover { 
  text-decoration: none; 
}
.btn-blue {
  background-color: var(--blue-600);
  color: #fff;
}
.btn-blue:hover {
  background-color: var(--blue-800);
}
.btn-red {
  background-color: var(--red-600);
  color: #fff;
  border: none;
}
.btn-red:hover {
  background-color: var(--red-800);
}
.btn.large { 
  padding: .9rem 1.2rem; 
  font-weight: 600; 
}

.site-nav .btn-blue {
  background-color: var(--blue-600);
  color: #fff;
}
.site-nav .btn-blue:hover {
  background-color: var(--blue-800);
}

.btn:focus, 
a:focus, 
button:focus {
  outline: none;
}

#hours .grid.two {
  align-items: stretch; 
}

#hours .grid.two > div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

#hours .card {
  flex-grow: 1; 
  display: flex;
  flex-direction: column;
}

#hours .card .btn {
  margin-top: auto; 
  align-self: flex-start; 
}

#amenities .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100% - 7rem); 
}

#amenities .cards {
  margin: 1.5rem 0;
}

#facebook .container {
  min-height: 140px; 
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#about,
#amenities {
  scroll-margin-top: 96px; 
}

@media (min-width: 721px) and (max-width: 980px) {
  #hours .hours-container {
    width: 80%;
    margin: 0 auto;
  }
  
  .hours-table {
    border-spacing: 0 8px;
  }
  
  .hours-table th {
    text-align: left;
    padding-right: 10rem;
  }
  
  .hours-table td {
    text-align: right;
  }
}

@media (max-width: 980px) {
  .grid.two { 
    grid-template-columns: 1fr; 
    gap: 1.25rem; 
  }
  .cards { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  #hours .grid.two > div:nth-child(2) {
    display: block;
  }
  
  #hours .card {
    display: block;
  }
  
  #hours .card .btn {
    margin-top: 1rem;
  }

  #amenities .cards {
    margin: 1rem 0;
  }
}
@media (max-width: 720px) {
  body {
    padding-top: 66px;
  }
  .site-nav { 
    position: absolute; 
    right: 0; 
    top: 100%; 
    background: #fff; 
    width: 40vw; 
    max-width: 320px; 
    border-left: 1px solid #e6eaf2; 
    border-bottom: 1px solid #e6eaf2;
    transform: translateY(-10px); 
    opacity: 0; 
    visibility: hidden; 
    transition: .25s; 
    border-bottom-left-radius: 14px; 
  }
  .site-nav.open { 
    transform: translateY(0); 
    opacity: 1; 
    visibility: visible; 
  }
  .site-nav ul { 
    flex-direction: column; 
    padding: 1rem; 
    align-items: stretch; 
  }
  .site-nav li { 
    width: 100%; 
  }
  .site-nav li:last-child {
    margin-left: 0; 
  }
  .site-nav a {
    justify-content: center; 
    text-align: center; 
    padding: 1rem;
  }
  .nav-toggle { 
    display: inline-flex; 
  }
  .logo {
    height: 50px;
  }
  .footer-brand img {
    height: 40px;
  }

  #facebook .container {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 1.5rem 0;
  }

  #facebook .container > div {
    margin-bottom: 1.5rem;
  }

  #about,
  #amenities {
    scroll-margin-top: 66px; 
  }
  
  #hours .hours-container {
    width: 100%;
  }
  
  .hours-table th {
    padding-right: 1rem;
    text-align: left;
  }
  
  .hours-table td {
    text-align: right;
  }
}
@media (max-width: 520px) {
  .cards { 
    grid-template-columns: 1fr; 
  }
  .hero { 
    min-height: 420px; 
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .footer-inner nav {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  #amenities .cards {
    margin: 0.5rem 0;
  }
  
  .site-nav {
    width: 100%;
    max-width: 100%;
    border-left: none;
    border-bottom-left-radius: 0;
  }
}
