/* ── Portie Paradise – Main Stylesheet ─────────────────────────────────── */
/* Compatible with GoDaddy Website Builder custom HTML embeds or standalone */

:root {
  --teal:  #1a6b5c;
  --teal-light: #e1f5ee;
  --teal-dark: #0f6e56;
  --gold:  #c8973a;
  --gold-light: #faeeda;
  --cream: #faf7f0;
  --dark:  #1a2520;
  --muted: #5a6b65;
  --border: #e4ddd3;
  --bg-alt: #f5f1eb;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
}

/* ── Layout ── */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-dark {
  background: var(--dark);
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
}
.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.main-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--teal); }
.btn-nav {
  background: var(--teal) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 2px;
}

/* ── Typography ── */
.label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

h1.hero {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  margin: 2.5rem 0 0.75rem;
  line-height: 1.2;
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p { font-size: 15px; line-height: 1.75; color: #4a5a54; margin-bottom: 1rem; }

p.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 1.75rem;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0 1.75rem;
}

/* ── Badges & Pills ── */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}
.badge-teal { background: var(--teal-light); color: var(--teal-dark); }
.badge-gold { background: var(--gold-light); color: #854f0b; }
.badge-gray { background: #f0ede7; color: var(--muted); }

.price-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  background: var(--teal-light);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

/* ── Highlight Box ── */
.highlight-box {
  background: var(--teal);
  color: #fff;
  border-radius: 4px;
  padding: 1.75rem 2rem;
  margin: 2rem 0;
}
.highlight-box h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.highlight-box p { color: rgba(255,255,255,0.88); margin: 0; }

/* ── Feature List ── */
ul.feature-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}
ul.feature-list li {
  font-size: 14px;
  color: #4a5a54;
  padding: 5px 0 5px 1.2rem;
  position: relative;
  line-height: 1.55;
}
ul.feature-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── Listings ── */
.listing-block { margin-bottom: 2.5rem; }
.listing-block h2 { margin-top: 0.5rem; }
.stars { color: var(--gold); font-size: 14px; margin-bottom: 0.75rem; }
.stars-muted { font-size: 13px; color: var(--muted); margin-bottom: 0.75rem; }
.col-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.5rem;
}
.section-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

/* ── Note Box ── */
.note-box {
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1.25rem;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 1.25rem 0 1.5rem;
  background: #faf7f0;
}
.note-box strong { color: var(--dark); }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  background: var(--teal);
  color: #fff;
  padding: 10px 26px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--teal-dark); }

/* ── Contact Section ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.contact-item {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}
.contact-item strong { color: #fff; display: block; }

/* ── Footer ── */
.site-footer {
  background: #0f1a17;
  padding: 1.5rem 0;
  text-align: center;
}
.site-footer p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 680px) {
  .two-col { grid-template-columns: 1fr; }
  .main-nav { gap: 0.75rem; }
  .main-nav a:not(.btn-nav) { display: none; }
}
/* ══════════════════════════════════════════════════════════════
   SITE-WIDE HERO — full-width banner at top of page
   ══════════════════════════════════════════════════════════════ */

.site-hero {
  position: relative;
  width: 100%;
  height: 90vh;             /* 90% of viewport height — change to 600px for fixed height */
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
}

.site-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;  /* try "top" or "bottom" if your subject crops oddly */
  display: block;
  background: #1a2520;      /* shows while image loads */
}

.site-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 20, 16, 0.15) 0%,
    rgba(10, 20, 16, 0.60) 100%
  );
  display: flex;
  align-items: center;      /* change to "flex-end" to push text to bottom */
  padding-bottom: 4rem;
}

.site-hero-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c8973a;
  margin-bottom: 0.75rem;
}

.site-hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  margin-bottom: 1rem;
}

.site-hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

.site-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-secondary {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 10px 26px;
  border-radius: 2px;
  text-decoration: none;
}

.card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 3px;
  display: block;
  margin: 0.75rem 0 1rem;
}

/* ══════════════════════════════════════════════════════════════
   BOAT PHOTO COLLAGE — grid of 3 images in the Tours section
   ══════════════════════════════════════════════════════════════ */

.hero-wrap {
  position: relative;
  width: 100%;
  max-width: 35%;
  overflow: hidden;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.grid-collage {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 260px 200px;
  gap: 3px;
  width: 100%;
}

.img-cell {
  overflow: hidden;
  position: relative;
}

.img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.img-cell:hover img {
  transform: scale(1.04);
}

.img-cell.main {
  grid-row: 1 / 3;
}

.img-cell.top-right {
  grid-column: 2;
  grid-row: 1;
}

.img-cell.bottom-right {
  grid-column: 2;
  grid-row: 2;
}

.overlay-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 100%);
  padding: 32px 24px 20px;
  pointer-events: none;
}

.hero-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,151,58,0.14);
  border: 1px solid rgba(200,151,58,0.4);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 8px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 6px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.hero-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin: 0;
}

.corner-label {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.38);
  border-radius: 2px;
  padding: 2px 8px;
}

.bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--dark);
  border-radius: 0 0 4px 4px;
}

.bottom-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.bottom-tagline {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bottom-flag {
  display: flex;
  gap: 3px;
  align-items: center;
}

.flag-stripe {
  width: 6px;
  height: 16px;
  border-radius: 1px;
}
