/* =========================================
   Stay Awhile Rentals — v2 Light & Airy
   Accent: Warm Terracotta #C4785A
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --white: #FFFFFF;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --charcoal: #2D2D2D;
  --charcoal-light: #555555;
  --muted: #888888;
  --border: #E8E3DC;
  --accent: #C4785A;
  --accent-hover: #B06A4E;
  --accent-light: #F5EDE8;
  --footer-bg: #2D2D2D;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.75;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; color: var(--charcoal); line-height: 1.3; }

.container { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

/* ---- HEADER ---- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-brand {
  font-family: var(--font-heading);
  font-size: 1.2em;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.3px;
}
.header-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.header-nav a {
  color: var(--charcoal-light);
  font-size: 0.9em;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}
.header-nav a:hover,
.header-nav a.active { color: var(--charcoal); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--charcoal);
  font-size: 1.5em;
  cursor: pointer;
}

/* ---- HERO ---- */
.hero {
  padding: 0 24px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-image-placeholder {
  width: 100%;
  height: 480px;
  background: var(--cream);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}
.hero-image-placeholder .placeholder-icon {
  font-size: 3em;
  color: var(--border);
  margin-bottom: 12px;
}
.hero-image-placeholder .placeholder-text {
  color: var(--muted);
  font-size: 0.95em;
}
.hero-content {
  text-align: center;
  padding: 48px 0 0;
  max-width: 680px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.8em;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
}
.hero .subtitle {
  font-size: 1.1em;
  color: var(--charcoal-light);
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.7;
}
.hero .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95em;
  font-family: var(--font-body);
  text-align: center;
  transition: all 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196,120,90,0.25);
}
.btn-secondary {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--white);
}
.btn-outline-accent {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: var(--white);
}

/* ---- SECTIONS ---- */
.section { padding: 72px 0; }
.section-cream { background: var(--cream); }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: 2em; margin-bottom: 10px; }
.section-title p { color: var(--charcoal-light); max-width: 560px; margin: 0 auto; font-weight: 300; }

/* ---- STATS ROW ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  padding: 48px 0;
}
.stat-item {
  padding: 28px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
}
.stat-icon { font-size: 1.6em; margin-bottom: 8px; color: var(--muted); }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2em;
  font-weight: 600;
  color: var(--charcoal);
}
.stat-label {
  color: var(--muted);
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  font-weight: 500;
}

/* ---- CARDS ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.card .card-icon { font-size: 1.8em; margin-bottom: 14px; }
.card h3 { font-size: 1.15em; margin-bottom: 8px; }
.card p { color: var(--charcoal-light); font-size: 0.95em; }

/* On cream background */
.section-cream .card { background: var(--white); }

/* ---- AMENITIES ---- */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 0.95em;
}
.amenity-item .check {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1em;
  flex-shrink: 0;
}
.section-cream .amenity-item { background: var(--white); border: 1px solid var(--border); }

/* ---- WIDGET CONTAINER ---- */
.widget-container {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}
.widget-container iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  border-radius: 8px;
}

/* ---- POLICY BLOCKS ---- */
.policy-block {
  background: var(--cream);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 28px;
  margin: 20px 0;
}
.policy-block h3 { margin-bottom: 12px; font-size: 1.1em; }
.policy-block ul { list-style: none; padding: 0; }
.policy-block li {
  padding: 5px 0 5px 20px;
  position: relative;
  color: var(--charcoal-light);
}
.policy-block li::before {
  content: "\2022";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.warning-block { border-left-color: #D4654A; }

/* ---- FEE TABLE ---- */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.95em;
}
.fee-table th {
  background: var(--cream);
  color: var(--charcoal);
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--border);
}
.fee-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal-light);
}
.fee-table tr:hover td { background: var(--cream); }

/* ---- ATTRACTIONS ---- */
.attraction-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.attraction-card .distance {
  background: var(--accent-light);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.attraction-card h3 { margin-bottom: 4px; }
.attraction-card p { color: var(--charcoal-light); font-size: 0.95em; }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.contact-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}
.contact-card .icon { font-size: 2em; margin-bottom: 12px; }
.contact-card h3 { margin-bottom: 8px; }
.contact-card p { color: var(--charcoal-light); }

/* ---- PAGE HEADER (subpages) ---- */
.page-header {
  text-align: center;
  padding: 56px 24px 40px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-size: 2.4em;
  margin-bottom: 10px;
}
.page-header p {
  color: var(--charcoal-light);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  text-align: center;
  padding: 60px 24px;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.cta-banner h2 {
  font-size: 1.8em;
  margin-bottom: 12px;
}
.cta-banner p {
  color: var(--charcoal-light);
  max-width: 480px;
  margin: 0 auto 24px;
  font-weight: 300;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--footer-bg);
  padding: 48px 24px;
  text-align: center;
  color: #BBBBBB;
}
.site-footer a { color: #DDDDDD; }
.site-footer a:hover { color: var(--white); }
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.2em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-links a { font-size: 0.9em; }
.footer-bottom {
  font-size: 0.85em;
  color: #888888;
  border-top: 1px solid #444;
  padding-top: 20px;
  margin-top: 8px;
}

/* ---- INFO ROW (property page) ---- */
.info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.info-box {
  background: var(--cream);
  border-radius: 10px;
  padding: 24px;
}
.info-box h3 { margin-bottom: 6px; font-size: 1.05em; }
.info-box p { color: var(--charcoal-light); font-size: 0.95em; }

/* ---- SECTION HEADING WITH LINE ---- */
.heading-with-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0 24px;
}
.heading-with-line h2 { white-space: nowrap; }
.heading-with-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .menu-toggle { display: block; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .hero h1 { font-size: 2em; }
  .hero-image-placeholder { height: 280px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .attraction-card { flex-direction: column; }
  .page-header h1 { font-size: 1.8em; }
}
