@import url('https://fonts.googleapis.com/css2?family=Sacramento&family=Quicksand:wght@400;500;600&display=swap');

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:     #2e3199;
  --nav-link: #7577c9;
  --white:    #ffffff;
  --text:     #000000;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Quicksand', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ── Hero wrapper — full viewport height ─────────────── */
.hero {
  position: relative;           /* nav inside is absolute to this */
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
    url('images/hero-entrance.jpg') center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
}

/* ── Navigation — overlaid at top of hero ────────────── */
nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
}

.nav-logo img {
  height: 70px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links li + li::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.4);
  margin: 0 .75rem;
  vertical-align: middle;
}

.nav-links a {
  font-family: 'Quicksand', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nav-link);
  transition: color .15s;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--white);
}

/* ── Hero content ─────────────────────────────────────── */
.hero-content {
  max-width: 700px;
}

.hero-content h1 {
  font-family: 'Sacramento', serif;
  font-size: 54px;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.35);
}

.hero-content p {
  color: rgba(255,255,255,.93);
  font-size: 1.5rem;
  max-width: 620px;
  margin: 0 auto .75rem;
}

.hero-content .phone {
  display: block;
  color: var(--white);
  font-size: 1.5rem;
  margin-top: .5rem;
}

/* ── Common section styles ───────────────────────────── */
section {
  padding: 3.5rem 2rem;
  background: var(--white);
}

.container {
  max-width: 980px;
  margin: 0 auto;
}

.section-heading {
  font-family: 'Sacramento', serif;
  font-size: 54px;
  color: var(--navy);
  text-align: center;
  line-height: 1.1;
  margin-bottom: .4rem;
}

.heading-rule {
  width: 80px;
  height: 1px;
  background: #ccc;
  margin: 0 auto 2.5rem;
}

/* ── About circles ────────────────────────────────────── */
.about-circles {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: nowrap;
}

.about-circle {
  flex: 1 1 0;
  min-width: 0;
  max-width: 379px;
  text-align: center;
}

.about-circle img {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 379px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto .75rem;
}

.about-circle-label {
  font-size: 1.5rem;
  color: #333;
}

/* ── About 3-col text ─────────────────────────────────── */
.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  text-align: center;
}

.about-cols p {
  font-size: 1rem;
  color: #333;
  margin-bottom: .5rem;
}

.about-cols ul {
  list-style: disc;
  padding-left: 1.25rem;
  text-align: left;
  display: inline-block;
  font-size: .95rem;
  color: #333;
}

.about-cols ul li {
  margin-bottom: .2rem;
}

/* ── Suite description grid ───────────────────────────── */
.suites-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.suite-col img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  margin-bottom: .75rem;
}

.suite-col-name {
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  margin-bottom: .5rem;
}

.suite-col ul {
  list-style: disc;
  padding-left: 1.5rem;
  font-size: .95rem;
  color: #333;
}

.suite-col ul li { margin-bottom: .2rem; }

/* ── Contact ──────────────────────────────────────────── */
.contact { text-align: center; }

.contact h4 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: .4rem;
}

.contact p {
  font-size: .95rem;
  margin-bottom: .35rem;
  color: #222;
}

.contact a { color: #000; }

.contact-map {
  margin: 1.5rem auto 0;
  max-width: 700px;
  height: 300px;
  border: 1px solid #ccc;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Footer link strip ────────────────────────────────── */
.footer-suites-link {
  text-align: center;
  padding: .6rem;
  border-top: 1px solid #e0e0e0;
}

.footer-suites-link a {
  font-family: 'Quicksand', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--nav-link);
}

/* ── Footer ───────────────────────────────────────────── */
footer {
  text-align: center;
  padding: 1rem 1.5rem;
  border-top: 1px solid #e0e0e0;
  font-size: .8rem;
  color: #555;
}

/* ── Sub-page nav (dark bar) ──────────────────────────── */
.page-nav {
  background: rgb(22, 22, 22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
}

.page-nav .nav-links a      { color: var(--nav-link); }
.page-nav .nav-links a.active,
.page-nav .nav-links a:hover { color: var(--white); }
.page-nav .nav-logo img      { height: 70px; }

/* ── Tour page suite sections ─────────────────────────── */
.suite-section {
  padding: 3.5rem 2rem;
  border-bottom: 1px solid #eee;
}

.suite-section h1,
.suite-section h2 {
  font-family: 'Sacramento', serif;
  font-size: 54px;
  color: var(--navy);
  text-align: center;
  margin-bottom: .4rem;
}

.suite-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.suite-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ── Laurens page ─────────────────────────────────────── */
.laurens-intro {
  padding: 3rem 2rem;
  text-align: center;
}

.laurens-intro p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  color: #333;
}

.laurens-banner {
  height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ── Mobile ───────────────────────────────────────────── */
@media (max-width: 768px) {
  nav, .page-nav {
    padding: .75rem 1rem;
    flex-wrap: wrap;
    gap: .4rem;
  }

  .hero { min-height: 100svh; }

  .nav-links li + li::before { display: none; }
  .nav-links a { font-size: .75rem; }

  .about-circles { flex-direction: column; align-items: center; gap: 1.5rem; }
  .about-circle,
  .about-circle img { width: 220px; height: 220px; }

  .about-cols      { grid-template-columns: 1fr; }
  .suites-grid     { grid-template-columns: 1fr; }
  .suite-gallery   { grid-template-columns: 1fr 1fr; }
  .laurens-banner  { height: 220px; }
}
