
:root {
  --navy: #133b63;
  --gold: #c89b4d;
  --light: #f5f3ef;
  --sand: #f1ede6;
  --text: #223043;
  --muted: #5f6f80;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

a { color: inherit; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 88vh;
  color: var(--white);
  background:
    linear-gradient(rgba(19, 59, 99, 0.50), rgba(19, 59, 99, 0.58)),
    url("aerial_2.png") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 27, 45, 0.10), rgba(8, 27, 45, 0.28));
}

.nav, .hero-content { position: relative; z-index: 1; }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 88px;
  height: auto;
  border-radius: 12px;
  background: rgba(255,255,255,0.88);
  padding: 6px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.brand-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-subtitle {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.92);
}

.nav-links {
  display: flex;
  gap: 20px;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.95);
}

.hero-content {
  padding: 90px 0 120px;
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  margin: 0 0 18px;
}

.hero-copy {
  font-size: 1.15rem;
  max-width: 680px;
  color: rgba(255,255,255,0.94);
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  background: var(--gold);
  color: #1f2937;
  text-decoration: none;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.button-ghost {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.38);
}

.section {
  padding: 74px 0;
}

.alt-section {
  background: var(--light);
  padding: 74px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 8px;
  color: var(--navy);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.card-body {
  padding: 22px;
}

.card-body h3 {
  font-size: 1.65rem;
  margin: 0 0 10px;
  color: var(--navy);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.amenities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.amenity {
  background: var(--sand);
  border-radius: 18px;
  padding: 22px;
}

.amenity h3 {
  margin-top: 0;
  color: var(--navy);
}

.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.92);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 900px) {
  .cards,
  .gallery,
  .amenities {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 60px 0 90px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .logo {
    width: 72px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .button {
    width: 100%;
    text-align: center;
  }
}


.button-sub {
  font-size: 0.88em;
  font-weight: 700;
}


.card .button {
  text-align: center;
  min-width: 170px;
  line-height: 1.15;
}

.card .button-sub {
  display: block;
  font-size: 0.72em;
  font-weight: 700;
  margin-top: 4px;
  text-align: center;
}


/* v7 branding updates */
.brand-title {
  font-size: 1.3rem;
  line-height: 1.1;
  max-width: 420px;
}

.logo {
  width: 96px;
  background: rgba(255,255,255,0.92);
}

@media (max-width: 900px) {
  .brand-title {
    font-size: 1.1rem;
    max-width: none;
  }
}


/* v8 hero and logo updates */
.logo {
  width: 124px !important;
  height: auto;
  padding: 4px;
  border-radius: 14px;
}

.brand {
  gap: 16px;
}

.brand-title {
  max-width: 520px;
}

.hero h1 {
  max-width: 900px;
}

.hero-subline {
  display: block;
  font-size: 0.88em;
  line-height: 0.95;
  text-align: center;
}

@media (max-width: 900px) {
  .logo {
    width: 108px !important;
  }
  .hero-subline {
    font-size: 0.92em;
  }
}


/* v9 booking button updates */
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-book-buttons,
.hero-book-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.brand-book-buttons {
  margin-top: 4px;
}

.brand-book-button,
.hero-book-button {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 14px;
  line-height: 1;
}

.brand-book-button {
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.35);
  font-size: 0.88rem;
}

.hero-book-buttons {
  margin-top: -4px;
  margin-bottom: 18px;
}

.hero-book-button {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.38);
  font-size: 1rem;
}

@media (max-width: 900px) {
  .brand-book-buttons,
  .hero-book-buttons {
    gap: 8px;
  }

  .brand-book-button,
  .hero-book-button {
    font-size: 0.92rem;
    padding: 8px 12px;
  }
}


/* v10 center hero booking buttons and remove top emphasis */
.hero-book-buttons-centered {
  justify-content: center;
  width: 100%;
  margin-top: 6px;
  margin-bottom: 18px;
}

.hero-book-button {
  min-width: 130px;
  text-align: center;
}

.brand-text {
  gap: 2px;
}


/* v12 hero highlight line */
.hero-highlight {
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  color: rgba(255,255,255,0.96);
  margin-top: 4px;
  margin-bottom: 14px;
}


/* v13 shorter hero so pool logo stays visible */
.hero {
  min-height: 66vh !important;
  background-position: center 38% !important;
}

.hero-content {
  padding: 48px 0 56px !important;
}

.hero h1 {
  margin-bottom: 10px !important;
}

.hero-highlight {
  margin-bottom: 10px !important;
}

.hero-book-buttons-centered {
  margin-top: 2px !important;
  margin-bottom: 12px !important;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 20px !important;
}

@media (max-width: 900px) {
  .hero {
    min-height: 58vh !important;
    background-position: center 34% !important;
  }

  .hero-content {
    padding: 34px 0 42px !important;
  }
}


/* v14 top-left transparent quick buttons */
.hero-quick-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 6px;
  margin-bottom: 8px;
}

.hero-quick-button {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 16px;
  line-height: 1;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.34);
  backdrop-filter: blur(2px);
}

.hero-actions {
  display: none !important;
}

@media (max-width: 900px) {
  .hero-quick-buttons {
    gap: 8px;
    margin-top: 0;
  }

  .hero-quick-button {
    font-size: 0.92rem;
    padding: 9px 13px;
  }
}


/* v15 top nav booking buttons only */
.nav-links {
  display: flex;
  gap: 10px;
  font-weight: 600;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
}

.nav-cta {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.34);
  backdrop-filter: blur(2px);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  line-height: 1;
}

.hero-quick-buttons {
  display: none !important;
}

@media (max-width: 900px) {
  .nav-links {
    gap: 8px;
  }
  .nav-cta {
    font-size: 0.92rem;
    padding: 9px 13px;
  }
}


/* v16 lower the hero paragraph and buttons so pool logo is clearer */
.hero-content {
  padding-top: 36px !important;
  padding-bottom: 82px !important;
}

.hero-book-buttons-centered {
  margin-bottom: 120px !important;
}

.hero-copy {
  margin-top: 0 !important;
  margin-bottom: 8px !important;
  max-width: 820px;
}

@media (max-width: 900px) {
  .hero-content {
    padding-bottom: 64px !important;
  }

  .hero-book-buttons-centered {
    margin-bottom: 80px !important;
  }
}


/* v17 move paragraph up near pool edge / yellow-line zone */
.hero {
  min-height: 70vh !important;
  background-size: cover !important;
  background-position: center 36% !important;
}

.hero-content {
  padding-top: 34px !important;
  padding-bottom: 72px !important;
}

.hero-book-buttons-centered {
  margin-bottom: 56px !important;
}

.hero-copy {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  transform: translateY(-34px) !important;
  max-width: 860px;
}

@media (max-width: 900px) {
  .hero {
    min-height: 62vh !important;
    background-position: center 34% !important;
  }

  .hero-book-buttons-centered {
    margin-bottom: 34px !important;
  }

  .hero-copy {
    transform: translateY(-18px) !important;
  }
}


/* v18 move transparent section buttons into top-right nav */
.nav-quick-links {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.nav-quick-button {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 16px;
  line-height: 1;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.34);
  backdrop-filter: blur(2px);
}

.hero-quick-buttons {
  display: none !important;
}

@media (max-width: 900px) {
  .nav-quick-links {
    gap: 8px;
  }

  .nav-quick-button {
    font-size: 0.92rem;
    padding: 9px 13px;
  }
}


/* v19 tighter, larger header logo */
.logo {
  width: 132px !important;
  height: auto !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.brand {
  gap: 12px !important;
}

@media (max-width: 900px) {
  .logo {
    width: 112px !important;
  }
}


/* v20 transparent logo block and bottom-centered hero paragraph */
.brand,
.brand-text,
.brand-title,
.brand-subtitle {
  background: transparent !important;
}

.logo {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  mix-blend-mode: normal;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-copy {
  text-align: center !important;
  max-width: 980px !important;
  margin-top: auto !important;
  margin-bottom: 10px !important;
  transform: none !important;
}

.hero h1,
.hero-highlight,
.hero-book-buttons,
.hero-book-buttons-centered {
  text-align: center;
}

.hero-book-buttons-centered {
  justify-content: center !important;
  margin-bottom: 18px !important;
}

@media (max-width: 900px) {
  .hero-copy {
    max-width: 92% !important;
    margin-bottom: 6px !important;
  }
}


/* v21 remove white logo tile and add subtle blur behind logo/header area */
.brand {
  position: relative;
  gap: 14px !important;
}

.brand::before {
  content: "";
  position: absolute;
  inset: -10px -14px -10px -14px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 18px;
  z-index: -1;
}

.logo {
  width: 88px !important;
  height: auto !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: block;
}

.brand-text,
.brand-title,
.brand-subtitle {
  background: transparent !important;
}

@media (max-width: 900px) {
  .logo {
    width: 76px !important;
  }
}


/* v22 lower title and pin tagline near bottom of hero image */
.hero {
  min-height: 72vh !important;
  background-position: center 34% !important;
}

.hero-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding-top: 88px !important;
  padding-bottom: 28px !important;
  min-height: calc(72vh - 90px) !important;
}

.hero h1 {
  margin-top: 24px !important;
  margin-bottom: 12px !important;
}

.hero-highlight {
  margin-bottom: 10px !important;
}

.hero-book-buttons-centered {
  margin-bottom: auto !important;
}

.hero-copy {
  text-align: center !important;
  max-width: 980px !important;
  margin-top: auto !important;
  margin-bottom: 6px !important;
  transform: none !important;
}

@media (max-width: 900px) {
  .hero {
    min-height: 64vh !important;
    background-position: center 32% !important;
  }

  .hero-content {
    padding-top: 66px !important;
    min-height: calc(64vh - 80px) !important;
  }

  .hero h1 {
    margin-top: 16px !important;
  }

  .hero-copy {
    max-width: 92% !important;
    margin-bottom: 4px !important;
  }
}


/* v24 SEO detail pages */
.page-hero {
  background: linear-gradient(rgba(19, 59, 99, 0.78), rgba(19, 59, 99, 0.72)), url("aerial_2.png") center/cover no-repeat;
  color: #fff;
  padding: 72px 0 54px;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.page-hero p {
  max-width: 860px;
  margin: 0;
  font-size: 1.08rem;
}

.breadcrumbs {
  margin-bottom: 18px;
  font-size: 0.92rem;
  opacity: 0.92;
}

.breadcrumbs a {
  color: #fff;
  text-decoration: none;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  margin-top: 32px;
}

.detail-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.detail-card h2,
.detail-card h3 {
  color: var(--navy);
  margin-top: 0;
}

.feature-list,
.quick-list {
  margin: 0;
  padding-left: 20px;
}

.inline-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .detail-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
