:root{
  --white: #ffffff;
  --sky: #a7daf9;
  --blue: #2d98d4;
  --navy: #245178;
  --soft: #f6fbff;
  --text: #1b2b3a;
  --shadow: 0 12px 30px rgba(36,81,120,.10);
  --radius: 18px;
}

/* -------- Layout + no sideways scroll -------- */
*,
*::before,
*::after{
  box-sizing: border-box;
}

html, body{
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; /* stop horizontal scroll */
}

/* Prefer clip when supported (cleaner than hidden) */
@supports (overflow: clip){
  body{ overflow-x: clip; }
}

/* Sticky footer: page scrolls, not <main> */
body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main{
  flex: 1 0 auto;
  min-width: 0;       /* prevents flex overflow weirdness */
  overflow: visible;  /* no inner scrollbars */
}

footer{
  margin-top: auto;
}

/* Media should never bust the viewport */
img, video, iframe{
  max-width: 100%;
  height: auto;
  display: block;
}

/* Your padding utility stays simple */
.section-pad{
  padding: 64px 0;
  height: auto;
  min-height: 0;
}


body{
  font-family: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--soft);
  letter-spacing: .2px;
}
.fw-extrabold{ font-weight: 800; }

.bg-soft{ background: var(--soft); }
.text-navy{ color: var(--navy) !important; }
.text-brand{ color: var(--blue) !important; }
.text-white-75{ color: rgba(255,255,255,.75) !important; }

.section-pad{ padding: 64px 0;}

@media (max-width: 768px){
  .section-pad{ padding: 44px 0; }
}

/* Topbar */
.topbar{
  background: var(--navy);
  color: #fff;
}
.toplink{
  color:#fff;
  text-decoration:none;
  font-weight: 800;
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  opacity:.95;
}
.toplink:hover{ opacity:1; text-decoration:underline; }
.top-hours{ opacity:.9; font-weight:700; display:inline-flex; gap:.45rem; align-items:center; }
.iconlink{
  color:#fff;
  opacity:.95;
  font-size: 1.1rem;
}
.iconlink:hover{ opacity:1; transform: translateY(-1px); }

/* Navbar */
.navglass{
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(36,81,120,.10);
}
.logo{ width: 60px; height: 60px; }
.brand-name{ font-weight: 900; color: var(--navy); letter-spacing: .3px; }

.navbar .nav-link{
  font-weight: 900;
  color: var(--navy);
  opacity: .85;
}
.navbar .nav-link:hover{ opacity: 1; }
.navbar .nav-link.active{ color: var(--blue); opacity: 1; }

.btn-brand{
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  font-weight: 900;
  border-radius: 999px;
  padding-left: 18px; padding-right: 18px;
}
.btn-brand:hover{
  background: #2389c1;
  border-color: #2389c1;
  transform: translateY(-1px);
}

.btn-outline-brand{
  border-color: rgba(45,152,212,.45);
  color: var(--navy);
  font-weight: 900;
  border-radius: 999px;
  padding-left: 16px; padding-right: 16px;
}
.btn-outline-brand:hover{
  border-color: var(--blue);
  background: rgba(167,218,249,.25);
  transform: translateY(-1px);
}

/* Hero video */
.hero{
  position: relative;
  min-height: calc(100vh - 120px);
  display:flex;
  align-items:center;
  overflow:hidden;
  background: #000;
}
.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.06);
}
.hero.hero-img{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(36,81,120,.42), rgba(255, 255, 255, 0.2));
}
.hero-content{ position: relative; z-index: 2; }
.hero-box{
  max-width: 720px;
}
.hero-scroll-hint{
  position:absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.9);
  background: rgba(0,0,0,.25);
  padding: 10px 14px;
  border-radius: 999px;
  animation: bob 1.6s ease-in-out infinite;
}
@keyframes bob{
  0%,100%{ transform: translate(-50%, 0); }
  50%{ transform: translate(-50%, -7px); }
}
@media (max-width: 768px){
  .hero-sub, .hero-icon,.top-hours{display: none;}
  .top-ctas span{ display: none;}
.hero-content, .hero-ctas, .nav-ctas{ align-items: center; text-align: center; justify-content: center;}
.hero{
  min-height: calc(100vh - 220px);
}


}

/* Cards */
.card-soft{
  border: 1px solid rgba(36,81,120,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-soft:hover{
  transform: translateY(-2px);
}

.icon-badge{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(167,218,249,.45);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--navy);
  font-size: 1.15rem;
}
.icon-pill{
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,.20);
  display:flex; align-items:center; justify-content:center;
  color:#fff;
}

/* Media card with background image */
.card-media{
  border-radius: var(--radius);
  overflow:hidden;
  border: none;
  box-shadow: var(--shadow);
  text-decoration:none;
  transition: transform .18s ease, box-shadow .18s ease;
  position: relative;
  min-height: 500px;
}
@media (max-width: 768px) {

  .card-media{
    min-height: 350px;
  }
}
.card-media-bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  transform: scale(1.02);
  transition: transform .22s ease;
}
.card-media-shade{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0, 33, 61, 0.82), rgba(45,152,212, 0.2));
  transition: opacity .2s ease;
}
.card-media .card-body{ position: relative; z-index:2; min-height: 190px; display:flex; flex-direction:column; justify-content:center; }
.card-media:hover{ transform: translateY(-4px); box-shadow: 0 18px 35px rgba(36,81,120,.18); }
.card-media:hover .card-media-bg{ transform: scale(1.08); }
.card-media:hover .card-media-shade{ opacity: .92; }

/* Membership cards (bigger, dark header, light body) */
.membership-card{
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(36,81,120,.12);
  box-shadow: 0 16px 38px rgba(36,81,120,.12);
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
}

.membership-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(36,81,120,.16);
}

/* Dark header */
.membership-head{
  background: linear-gradient(135deg, rgba(36,81,120,1), rgba(45,152,212,.92));
  color: #fff;
  padding: 22px 22px;
  display: block;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}

.membership-title{
  font-weight: 900;
  font-size: 1.55rem;  /* bigger */
  line-height: 1.1;
}



/* Light body */
.membership-body{
  padding: 26px 22px 24px 22px;
  background: linear-gradient(180deg, rgba(246,251,255,.85), #fff);
    display: block;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.membership-price{
  font-weight: 900;
  font-size: 2rem;     /* bigger */
  color: var(--blue);
  letter-spacing: .2px;
}

.membership-vibe{
  margin-top: 6px;
  font-weight: 800;
  color: rgba(36,81,120,.75);
  font-size: 1.05rem;
}

/* Make cards feel larger on desktop */
@media (min-width: 992px){
  .membership-head{ padding: 26px 26px; }
  .membership-body{ padding: 30px 26px 26px 26px; }
  .membership-title{ font-size: 1.7rem; }
  .membership-price{ font-size: 2.2rem; }
}

/* Titles */
.section-title .subtitle,
.subtitle{
  color: rgba(36,81,120,.72);
  font-weight: 800;
  margin-top: 6px;
}
.page-hero{ padding-top: 6px; }
.service-cta {
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-top:100px;
}
.book-btn {
  border: 1px solid rgba(36,81,120,.12);
  display:flex; align-items:center; justify-content:center;
  text-decoration:none;
  color: #fff;
  background: rgba(167,218,249,.90);
    border-radius: 10px;

}
.book-btn:hover {
  border: 1px solid rgba(36,81,120,.82);
    background: rgba(167,218,249,.80);
  color: #fff;
}
.toastish{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background: rgba(167,218,249,.28);
  border: 1px solid rgba(45,152,212,.25);
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.toastish-warn{
  background: rgba(255,193,7,.18);
  border-color: rgba(255,193,7,.35);
}

/* Parallax */
/* Parallax */
.parallax{
  position: relative;
  min-height: 60vh;
  padding: 0;
  display: flex;
  align-items: center;

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  overflow: hidden;              /* prevents weird edge artifacts on mobile */
  border-radius: 0;              /* ensure no rounding clips into “dome” */
}

/* Mobile: turn off fixed (prevents the “dome” / warping) */
@media (max-width: 768px){
  .parallax{
    background-attachment: scroll;
    background-position: center center !important;
    min-height: 48vh;            /* feels better on mobile */
  }
}

.parallax-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(36,81,120,.86), rgba(45,152,212,.10));
}

.parallax-overlay2{
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(36,81,120,.46), rgba(45,152,212,.10));
}

.parallax-inner{
  position: relative;
  z-index: 2;
  padding-block: 30px;
}

.parallax-inner .h2{ letter-spacing: .2px; }

.reviews-swiper .swiper-slide{
  height: auto;
}
.stars i{ color: #f6c343; }
.clamp-6{
  display:-webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow:hidden;
}
/* Reviews */
.review-head{
  display: flex;
  flex-direction: column;
}

.reviews-swiper{
  position: relative;
  padding: 0 54px; /* space for outside buttons */
}

.reviews-nav{
  position: absolute;
  top: 50%;
  z-index: 10;

  width: 44px;
  height: 44px;
  border-radius: 14px;

  border: 1px solid rgba(36,81,120,.18);
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 30px rgba(36,81,120,.12);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--navy);
}

.reviews-prev{ left: -8px; }
.reviews-next{ right: -8px; }

.reviews-nav:hover{
  border-color: rgba(45,152,212,.45);
}

.reviews-nav.swiper-button-disabled{
  opacity: .35;
  cursor: not-allowed;
}

/* Mobile: keep buttons reachable + not covering content */
@media (max-width: 768px){
  .reviews-swiper{
    padding: 0 12px; /* remove side padding */
  }
  .reviews-nav{
    top: auto;
    bottom: 10px;
    transform: none;
    width: 42px;
    height: 42px;
  }
  .reviews-prev{ left: 0; }
  .reviews-next{ right: 0; }
  .reviews-swiper .swiper-pagination{
    margin-top: 22px;
  }
}


/* Tags */
.tagwrap{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}
.tag{
  background: rgba(167,218,249,.35);
  border: 1px solid rgba(45,152,212,.20);
  color: var(--navy);
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .9rem;
}

/* Thumb preview */
.thumb{
  position: relative;
  width: 100%;
  padding-top: 68%;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  overflow:hidden;
  border: 1px solid rgba(36,81,120,.10);
}
.thumb-cap{
  position:absolute;
  left: 10px; right: 10px; bottom: 10px;
  background: rgba(36,81,120,.65);
  color:#fff;
  border-radius: 12px;
  padding: 8px 10px;
  font-weight: 800;
  font-size: .95rem;
}

/* Bigger landing thumbs */
.thumb.thumb-lg{
  padding-top: 64%;      /* taller/bigger visual */
  border-radius: 22px;
}

/* Caption pill a bit larger */
.thumb.thumb-lg .thumb-cap{
  font-size: 1rem;
  padding: 10px 12px;
  border-radius: 14px;
}

/* Mobile: make them feel HUGE */
@media (max-width: 576px){
  .thumb.thumb-lg{
    padding-top: 78%;
  }
  .landing-gallery{
    gap: 14px;
  }
}


/* Forms */
.form-big .form-control,
.form-big .form-select{
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(36,81,120,.14);
  font-weight: 800;
}
.form-big textarea.form-control{ padding: 12px 14px; }
.form-label{
  font-weight: 900;
  color: var(--navy);
}

/* Chips */
.chipgrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
@media (min-width: 992px){
  .chipgrid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
.chip{
  display:flex;
  align-items:center;
  gap: 10px;
  border: 1px solid rgba(36,81,120,.14);
  border-radius: 16px;
  padding: 12px 12px;
  cursor:pointer;
  background: #fff;
  font-weight: 900;
  color: var(--navy);
  box-shadow: 0 8px 18px rgba(36,81,120,.06);
  user-select:none;
}
.chip input{ display:none; }
.chip:hover{ transform: translateY(-1px); }
.chip input:checked + span{
  color: var(--navy);
}
.chip:has(input:checked){
  border-color: rgba(45,152,212,.55);
  background: rgba(167,218,249,.22);
}

/* Modal */
.modal-card{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(36,81,120,.12);
}
.modal-header{
  background: rgba(167,218,249,.28);
}
.modal-footer{
  background: rgba(246,251,255,.8);
}

/* Contact */
.contact-list{
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.contact-item{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(36,81,120,.12);
  background:#fff;
  text-decoration:none;
  color: var(--navy);
  font-weight: 900;
}
.contact-item i{
  width: 40px; height: 40px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(167,218,249,.35);
}
.contact-item:hover{ transform: translateY(-1px); }

/* About owner photo */
.owner-photo{
  width: 100%;
  min-height: 520px;
  background-size: cover;
  background-position: center;
}
.mini.feature{
  display:flex;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(36,81,120,.12);
  background:#fff;
}
.mini.feature i{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(167,218,249,.35);
  color: var(--navy);
  font-size: 1.1rem;
}

/* Bullets */
.bullets{
  list-style:none;
  padding-left:0;
  margin: 14px 0 0 0;
  display:flex;
  flex-direction:column;
  gap: 8px;
  font-weight: 800;
  color: rgba(27,43,58,.92);
}
.bullets li{ display:flex; align-items:flex-start; gap: 10px; }

/* Callout */
.callout{
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(90deg, rgba(167,218,249,.35), rgba(45,152,212,.06));
  border: 1px solid rgba(36,81,120,.10);
  box-shadow: var(--shadow);
}

/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
@media (min-width: 768px){
  .gallery-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
.gallery-item{
  text-decoration:none;
  color: var(--navy);
}
.gallery-thumb{
  width: 100%;
  padding-top: 76%;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(36,81,120,.10);
  box-shadow: var(--shadow);
  position: relative;
  overflow:hidden;
}
.gallery-cap{
  margin-top: 8px;
  font-weight: 900;
  color: rgba(36,81,120,.90);
}
.gallery-badge{
  position:absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(36,81,120,.7);
  color:#fff;
  border-radius: 999px;
  padding: 10px 12px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Footer */
/* Footer */
.footer{
  background: var(--text);
  border-top: 1px solid rgba(36,81,120,.10);
}

.footer-brand-name{
  color: #fff;
  font-weight: 900;
}

.footer-title{
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.footer-muted{
  color: #ffffffd0;
  font-weight: 800;
}

.footer-links a{
  color: #ffffffd0;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.footer-links a:hover{
  text-decoration: underline;
  color: #fff;
}

.footer-hr{
  border-color: rgba(255,255,255,.14);
  opacity: 1;
}

.iconbtn{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color: #fff;
  background: rgba(167,218,249,.20);
}
.iconbtn:hover{
  transform: translateY(-1px);
  background: rgba(45,152,212,.25);
  border-color: rgba(167,218,249,.35);
}

/* Mobile: single column, centered */
@media (max-width: 768px){
  .footer-grid{
    text-align: center;
    justify-content: center;
  }

  .footer-grid .footer-col{
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer-brand{
    justify-content: center;
  }

  .footer-links{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-icons{
    justify-content: center;
  }

  .footer-bottom{
    flex-direction: column;
    justify-content: center !important;
    text-align: center;
    gap: 10px;
  }
}

/* Policy */
.policy h2{
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  margin-top: 18px;
}
.policy ul{
  margin: 10px 0 0 0;
  padding-left: 18px;
  font-weight: 800;
  color: rgba(27,43,58,.92);
}


/* GLightbox caption theme */
.glightbox-container{
  font-family: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Make the caption area look like your cards */
.gslide-description{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(36,81,120,.14);
  box-shadow: 0 12px 30px rgba(36,81,120,.12);
  padding: 14px 16px;
  backdrop-filter: blur(10px);
}

/* Caption text */
.gslide-description .gdesc-inner{
  color: var(--navy);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: .2px;
  line-height: 1.2;
}

/* If GLightbox renders title as h4/p */
.gslide-description h4,
.gslide-description p{
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

/* Cute accent bar at the top of the caption box */
.gslide-description{
  position: relative;
  overflow: hidden;
}
.gslide-description::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height: 6px;
  background: linear-gradient(90deg, var(--sky), var(--blue));
}

/* Match controls to theme */
.glightbox-container .gprev,
.glightbox-container .gnext,
.glightbox-container .gclose{
  background: rgba(36,81,120,.55) !important;
  border-radius: 14px !important;
}
.glightbox-container .gprev:hover,
.glightbox-container .gnext:hover,
.glightbox-container .gclose:hover{
  background: rgba(45,152,212,.75) !important;
}

/* Mobile spacing */
@media (max-width: 768px){
  .gslide-description{
    margin: 0 10px 10px 10px;
    padding: 12px 14px;
  }
  .gslide-description .gdesc-inner{
    font-size: 1.02rem;
  }
}


