/* CohoSTR Landing Pages — Global Styles */
:root {
  --navy: #051e33;
  --blue: #337ab7;
  --teal: #0e8c8c;
  --teal-light: rgba(14,140,140,0.12);
  --blue-light: #f0f5fa;
  --text: #0d1b2a;
  --muted: #5a6a7a;
  --white: #fff;
  --border: rgba(51,122,183,0.18);
  --radius: 10px;
  --shadow: 0 4px 24px rgba(5,30,51,0.10);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

/* HEADER */
.site-header {
  background: var(--navy);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .logo {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.site-header .logo span { color: var(--teal); }
.site-header .book-now-small {
  background: var(--teal);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.site-header .book-now-small:hover { background: #0a7070; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0a3252 100%);
  color: var(--white);
  padding: 70px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="rgba(14,140,140,0.06)"/><circle cx="80" cy="80" r="60" fill="rgba(51,122,183,0.05)"/></svg>');
  background-size: cover;
}
.hero-badge {
  display: inline-block;
  background: rgba(14,140,140,0.2);
  border: 1px solid rgba(14,140,140,0.5);
  color: #5dd8d8;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  position: relative;
}
.hero h1 {
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
}
.hero h1 span { color: #5dd8d8; }
.hero p {
  font-size: clamp(16px, 2.5vw, 20px);
  opacity: 0.85;
  max-width: 580px;
  margin: 0 auto 32px;
  position: relative;
}
.cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(14,140,140,0.4);
}
.btn-primary:hover { background: #0a7070; transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: #5dd8d8; color: #5dd8d8; }

/* SAVINGS BAR */
.savings-bar {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
}
.savings-bar strong { color: #b2f0f0; }

/* SECTION */
.section { padding: 60px 24px; max-width: 960px; margin: 0 auto; }
.section-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.section-sub { color: var(--muted); font-size: 16px; margin-bottom: 36px; }

/* PROPERTY CARDS */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(5,30,51,0.15); }
.card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), #0a3252);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal);
}
.card-body { padding: 20px; }
.card-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; color: var(--navy); }
.card-meta { font-size: 13px; color: var(--teal); font-weight: 600; margin-bottom: 8px; }
.card-body p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.card-body .card-cta {
  display: block;
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}
.card-body .card-cta:hover { background: var(--navy); }

/* WHY BOOK DIRECT */
.why-section {
  background: var(--blue-light);
  padding: 60px 24px;
}
.why-section .section { padding: 0; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.why-item { text-align: center; padding: 28px 20px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); }
.why-icon { font-size: 36px; margin-bottom: 12px; }
.why-item h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.why-item p { font-size: 14px; color: var(--muted); }

/* EVENT INFO */
.event-info {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  margin-bottom: 32px;
  border-left: 5px solid var(--blue);
}
.event-info h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.event-info ul { list-style: none; padding: 0; }
.event-info ul li { padding: 6px 0; font-size: 15px; border-bottom: 1px solid #e8f0f8; }
.event-info ul li:last-child { border-bottom: none; }
.event-info ul li::before { content: '✓ '; color: var(--teal); font-weight: 700; }

/* URGENCY */
.urgency {
  background: linear-gradient(135deg, var(--navy), #0a3252);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin: 40px auto;
  max-width: 640px;
  border: 1px solid rgba(14,140,140,0.3);
}
.urgency h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.urgency p { opacity: 0.85; margin-bottom: 20px; }

/* FAQ */
.faq { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e0eaf4; padding: 18px 0; }
.faq-item h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.faq-item p { font-size: 14px; color: var(--muted); }

/* BENEFIT COMPARISON */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}
.compare-col {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 2px solid var(--border);
}
.compare-col.direct { border-color: var(--teal); }
.compare-col-header {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--muted);
}
.compare-col.direct .compare-col-header { color: var(--teal); }
.compare-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid #e8f0f8;
}
.compare-row:last-child { border-bottom: none; }
.compare-check { font-size: 16px; flex-shrink: 0; }
.compare-x { color: #e53e3e; font-size: 16px; flex-shrink: 0; }
@media (max-width: 500px) {
  .compare-grid { grid-template-columns: 1fr; }
}

/* TRUST BAR */
.trust-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 16px 24px;
  font-size: 14px;
  letter-spacing: 0.3px;
}
.trust-bar strong { color: var(--white); }

/* FOOTER */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 28px 24px;
  font-size: 14px;
}
footer a { color: #5dd8d8; text-decoration: none; }
footer strong { color: var(--white); }

/* RESPONSIVE */
@media (max-width: 600px) {
  .hero { padding: 50px 20px 40px; }
  .section { padding: 40px 20px; }
  .event-info { padding: 24px 20px; }
  .why-section { padding: 40px 20px; }
}
