#flash-message {
    bottom: 20px;
    position: absolute;
    right: 20px;
    z-index: 10;
    animation: flash-message 8s forwards;
}

@keyframes flash-message {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        display: none;
    }
}

/* .container {
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius:5px;
}

.dropbtn {
    color: white;
    font-size: 16px;
    border: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.nav-link{
    font-size: 1.1em;
} */

    :root {
      --sa-blue: #0b4aa2;
      --sa-blue-dark: #083b82;
      --sa-red: #ef1f3d;
      --sa-red-dark: #cf1733;
      --sa-bg: #f3f5f8;
      --sa-text: #103d7a;
      --sa-card-shadow: 0 5px 16px rgba(0, 0, 0, 0.08);
      --sa-radius: 18px;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--sa-bg);
      color: #1f2937;
      margin: 0;
      padding: 0;
    }

    .sa-navbar {
      background: var(--sa-blue);
      padding-top: 14px;
      padding-bottom: 14px;
    }

    .sa-brand {
      font-size: 2rem;
      font-weight: 800;
      font-style: italic;
      line-height: 1;
      letter-spacing: -0.03em;
      text-decoration: none;
    }

    .brand-swim {
      color: #ef1f3d;
      text-transform: uppercase;
    }

    .brand-atlanta {
      color: #ffffff;
      text-transform: uppercase;
    }

    .sa-menu-btn {
      border: 1px solid rgba(255,255,255,0.35);
      border-radius: 12px;
      padding: 8px 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .sa-menu-btn:focus {
      box-shadow: none;
    }

    .sa-menu-text {
      color: #fff;
      font-weight: 700;
      font-size: 1rem;
    }

    .navbar-dark .navbar-nav .nav-link {
      color: rgba(255,255,255,0.9);
      font-weight: 600;
    }

    .hero-section {
      position: relative;
      min-height: 310px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      z-index: 1;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(5, 28, 61, 0.68), rgba(5, 28, 61, 0.18));
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      text-align: center;
      padding-bottom: 18px;
    }

    .hero-content h1 {
      color: #fff;
      font-size: 2rem;
      font-weight: 800;
      line-height: 1.12;
      margin-bottom: 16px;
      text-shadow: 0 2px 8px rgba(0,0,0,0.25);
    }

    .hero-buttons {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-hero {
      min-width: 220px;
      border-radius: 12px;
      padding: 13px 18px;
      font-size: 1.1rem;
      font-weight: 800;
      box-shadow: 0 6px 14px rgba(0,0,0,0.18);
    }

    .btn-primary {
      background: linear-gradient(180deg, var(--sa-blue), var(--sa-blue-dark));
      border: none;
    }

    .btn-primary:hover {
      background: linear-gradient(180deg, var(--sa-blue-dark), var(--sa-blue-dark));
    }

    .btn-danger {
      background: linear-gradient(180deg, var(--sa-red), var(--sa-red-dark));
      border: none;
    }

    .btn-danger:hover {
      background: linear-gradient(180deg, var(--sa-red-dark), var(--sa-red-dark));
    }

    .quick-actions-section {
      padding: 16px 0 10px;
    }

    .card {
      border: none;
      border-radius: var(--sa-radius);
      box-shadow: var(--sa-card-shadow);
      overflow: hidden;
    }

    .quick-card {
      min-height: 118px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 18px 16px;
      background: #fff;
      color: var(--sa-text);
      transition: transform 0.18s ease;
      text-decoration: none;
    }

    .quick-card:hover {
      transform: translateY(-2px);
      color: var(--sa-text);
    }

    .quick-icon {
      font-size: 2.25rem;
      line-height: 1;
    }

    .quick-title {
      font-size: 1.05rem;
      font-weight: 800;
      line-height: 1.15;
    }

    .section-space {
      padding: 18px 0 24px;
    }

    .section-heading {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
    }

    .section-heading h2 {
      margin: 0;
      color: var(--sa-text);
      font-size: 1.9rem;
      font-weight: 800;
      white-space: nowrap;
    }

    .heading-line {
      height: 2px;
      background: #d7dee8;
      flex: 1;
    }

    .swipe-note {
      font-size: 0.95rem;
      color: #6b7280;
      margin-bottom: 12px;
      text-align: center;
    }

    .locations-slider {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      padding: 2px 2px 10px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .locations-slider::-webkit-scrollbar {
      display: none;
    }

    .location-card {
      background: #fff;
      min-width: 245px;
      flex: 0 0 auto;
      scroll-snap-align: start;
    }

    .location-card img {
      width: 100%;
      height: 135px;
      object-fit: cover;
      display: block;
    }

    .location-card .card-body {
      text-align: center;
      padding: 14px 12px 16px;
    }

    .location-card h3 {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--sa-text);
      margin-bottom: 10px;
    }

    .location-btn {
      min-width: 132px;
      border-radius: 10px;
      font-weight: 700;
      padding: 8px 14px;
    }

    .why-row {
      text-align: center;
    }

    .why-item {
      padding: 10px 8px;
    }

    .why-icon {
      font-size: 2.6rem;
      line-height: 1;
      margin-bottom: 8px;
    }

    .why-title {
      color: var(--sa-text);
      font-weight: 800;
      font-size: 1.15rem;
      line-height: 1.2;
    }

    .update-card {
      background: #fff;
    }

    .update-header {
      color: #fff;
      font-size: 1.5rem;
      font-weight: 800;
      padding: 16px 18px;
    }

    .blue-header {
      background: linear-gradient(180deg, var(--sa-blue), var(--sa-blue-dark));
    }

    .red-header {
      background: linear-gradient(180deg, var(--sa-red), var(--sa-red-dark));
    }

    .update-body {
      padding: 22px 20px 24px;
    }

    .update-body h3 {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--sa-text);
      line-height: 1.25;
      margin-bottom: 18px;
    }

    .update-btn {
      min-width: 150px;
      border-radius: 10px;
      font-weight: 700;
      padding: 9px 16px;
    }

    .sponsor-section {
      padding: 8px 0 24px;
    }

    .sponsor-row {
      display: flex;
      justify-content: center;
      gap: 26px;
      flex-wrap: wrap;
      color: #6b7280;
      font-size: 1.2rem;
      font-weight: 800;
      padding: 8px 0 0;
    }

    .site-footer {
      padding: 12px 0 34px;
    }

    .social-row {
      display: flex;
      justify-content: center;
      gap: 18px;
    }

    .social-row a {
      font-size: 2.2rem;
      text-decoration: none;
    }

    @media (min-width: 768px) {
      .hero-section {
        min-height: 460px;
        align-items: center;
      }

      .hero-content {
        padding-bottom: 0;
      }

      .hero-content h1 {
        font-size: 3.3rem;
        max-width: 820px;
        margin-left: auto;
        margin-right: auto;
      }

      .location-card {
        min-width: 300px;
      }

      .location-card img {
        height: 180px;
      }

      .section-heading h2 {
        font-size: 2.1rem;
      }
    }

    @media (max-width: 767.98px) {
      .container {
        max-width: 440px;
      }

      .sa-brand {
        font-size: 1.65rem;
      }

      .hero-section {
        min-height: 290px;
      }

      .hero-content h1 {
        font-size: 1.7rem;
      }

      .btn-hero {
        min-width: 0;
        width: calc(50% - 6px);
        font-size: 1rem;
        padding: 12px 10px;
      }

      .quick-card {
        min-height: 96px;
        gap: 10px;
      }

      .quick-icon {
        font-size: 1.8rem;
      }

      .quick-title {
        font-size: 0.95rem;
      }

      .section-heading {
        gap: 10px;
      }

      .section-heading h2 {
        font-size: 1.45rem;
      }

      .location-card {
        min-width: 215px;
      }

      .location-card img {
        height: 115px;
      }

      .location-card h3 {
        font-size: 1.1rem;
      }

      .why-icon {
        font-size: 2rem;
      }

      .why-title {
        font-size: 0.95rem;
      }

      .update-header {
        font-size: 1.2rem;
      }

      .update-body h3 {
        font-size: 1.1rem;
      }

      .sponsor-row {
        gap: 16px;
        font-size: 1rem;
      }

      .social-row a {
        font-size: 1.9rem;
      }
    }