/* =========================
   01) Theme + Base
   ========================= */
:root {
  --primary-color: #005494;
  --secondary-color: #ffffff;
  --accent-color: #ffcc00;
  --shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Verdana, Arial, sans-serif;
  margin: 0;
  background: linear-gradient(to bottom, var(--secondary-color), #ffffffc0);
  min-width: 320px;

  /* space for sticky CTA bar */
  padding-bottom: 64px;
}

/* =========================
     02) Wrapper
     ========================= */
#wrapper {
  background-color: var(--secondary-color);
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
  min-width: 320px;
}

/* =========================
     03) Navigation
     ========================= */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: linear-gradient(to bottom, #054482, #2964a4);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);

  position: sticky;
  top: 0;
  z-index: 1000;
}

nav .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

nav .logo img {
  width: 120px;
  height: auto;
  border-radius: 50%;
  display: block;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 10px 20px;
  background: linear-gradient(to bottom, #054482, #2964a4);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.main-nav {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease-in-out, transform 0.15s ease-in-out;
}

.main-nav a i {
  font-size: 1.05rem;
}

.main-nav a:hover {
  color: var(--accent-color);
  transform: translateY(-1px);
}

/* Desktop CTA buttons (top-right) */
.desktop-cta {
  display: flex;
  gap: 0.5rem;
}

.cta-btn {
  color: #0a0a0a;
  background: var(--accent-color);
  text-decoration: none;
  padding: 0.37rem 0.62rem;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.95rem;
}

.cta-btn:hover {
  filter: brightness(0.95);
}

/* Hamburger button hidden on desktop */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 3px;
  margin: 4px 0;
  background: #fff;
  border-radius: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================
     04) Sections + Hero
     ========================= */
section {
  padding: 50px;
  scroll-margin-top: 110px; /* sticky nav offset */
}

#home {
  padding: 60px 20px;
  text-align: center;
}

.exterior-view img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 20px auto;
  display: block;
  box-shadow: var(--shadow);
}

/* =========================
     05) Cards / Columns
     ========================= */
.columns-container,
.two-column-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}

.column {
  flex: 1 1 280px;
  max-width: 360px;
  padding: 20px;
  margin: 0;
  background-color: #f9f9f9;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.column h3 {
  font-size: 22px;
  color: #333;
  margin-top: 0;
}

.column p {
  font-size: 16px;
  color: #555;
}

/* =========================
     06) Amenities Icon List
     ========================= */
.fa-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fa-li {
  margin-right: 10px;
}

.fa-ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.fa-wifi {
  color: #007bff;
}
.fa-check {
  color: #ff00bf;
}
.fa-box {
  color: #6f42c1;
}
.fa-parking {
  color: #ffc107;
}
.fa-money-bill {
  color: #1f8b36;
}

/* =========================
   07) Hours List (FIXED)
   ========================= */
.hours-list {
  font-size: 17px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  max-width: 400px;
}

/* Normal rows */
.hours-list li {
  display: contents;
}

.day {
  text-align: left;
  white-space: nowrap;
}

.time {
  text-align: right;
  white-space: nowrap;
}

/* Holiday / special hours row */
.hours-list li.holiday {
  display: grid; /* use grid for the holiday row */
  grid-template-columns: 1fr auto;
  grid-column: 1 / -1;
  gap: 12px;
  align-items: baseline;
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 1px solid #ddd;
  margin-bottom: 6px;
}

.hours-list li.holiday .day {
  white-space: normal; /* allow wrapping for the long holiday text */
}

/* =========================
     08) Review Logos
     ========================= */
.review-links {
  margin-top: 25px;
}

.logo-link {
  text-decoration: none;
  display: inline-block;
}

.logo-link img {
  width: 100px;
  margin-right: 15px;
  transition: transform 0.2s;
}

.logo-link img:hover {
  transform: scale(1.1);
}

/* =========================
     09) Section Backgrounds
     ========================= */
#services {
  background-color: #f2f4f7;
}
.equip-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden; /* keeps rounded corners */
}

.equip-table th,
.equip-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 10px;
  vertical-align: top;
}

.equip-table th {
  text-align: left;
  font-weight: 700;
  color: #222;
  width: 55%;
}

.equip-table td {
  text-align: right;
  color: #555;
  white-space: nowrap;
}

.equip-table tr:last-child th,
.equip-table tr:last-child td {
  border-bottom: none;
}

#contact {
  background-color: #e7ebf0;
}
#gallery {
  background-color: #d7dee6;
}

/* =========================
     10) Map
     ========================= */
#map {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background-color: #e7ebf0;
  border-radius: var(--radius);
}

#map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================
     11) Gallery
     ========================= */
.gallery-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-images img {
  width: min(360px, 90vw);
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  margin: 15px;
  border: 2px solid #ccc;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}

/* =========================
     12) Footer
     ========================= */
footer {
  font-style: italic;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 10px 5px;
  width: 100%;
}

/* =========================
     13) Sticky CTA Bar
     ========================= */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  justify-content: space-evenly;
  align-items: center;
  background: var(--primary-color);
  padding: 0.75rem 0;
  z-index: 999;
  border-top: 1px solid #222;
}

.sticky-cta a {
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.sticky-cta a:hover {
  transform: scale(1.2);
  color: var(--accent-color);
}

/* =========================
     14) Mobile
     ========================= */
@media (max-width: 700px) {
  /* Desktop CTA hidden; mobile uses bottom sticky bar */
  .desktop-cta {
    display: none;
  }

  /* Mobile header layout: logo left, hamburger right */
  .site-nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;

    /* keep sticky behavior on mobile */
    position: sticky;
    top: 0;
    z-index: 1000;

    /* needed so the dropdown positions under the header */
    position: sticky;
  }

  /* Logo size on mobile */
  .site-nav .logo img,
  .site-nav .logo-link img {
    width: 70px;
    height: auto;
  }

  /* Show hamburger */
  .nav-toggle {
    display: block;
  }

  /* Dropdown menu (closed by default) */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    background: #054482;
    flex-direction: column;
    padding: 0.5rem 0;
    margin: 0;
    gap: 0;

    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 1rem;
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-color);
  }

  /* Open state */
  .site-nav.open .main-nav {
    display: flex;
  }

  /* Anchor offset for sticky nav */
  section {
    scroll-margin-top: 120px;
  }

  /* Show CTA bar on mobile only */
  .sticky-cta {
    display: flex;
  }

  /* Stack columns */
  .columns-container {
    flex-direction: column;
    align-items: center;
  }

  .column {
    width: 90%;
    max-width: 500px;
  }
}
