/* ==========================================================================
   COUNTRYMAN TRAVELS — MODERN EDITORIAL DESIGN SYSTEM
   Palette: Soft Off-White (#F9FAFB), Pure White (#FFFFFF), Deep Charcoal (#111827)
   Accents: Vegas Gold (#D4AF37), Deep Navy (#0F172A), Terracotta (#E11D48)
   ========================================================================== */

* { box-sizing: border-box; }

:root {
  --bg: #F9FAFB;
  --bg-card: #FFFFFF;
  --line: #E5E7EB;
  --line-strong: #D1D5DB;
  
  --navy: #0F172A;
  --navy-light: #1E293B;
  --text: #111827;
  --text-dim: #4B5563;
  --text-muted: #6B7280;
  
  --gold: #D4AF37;
  --gold-hover: #B59329;
  --terracotta: #E11D48;
  --emerald: #059669;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08);
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand {
  font-family: "Poppins", "Inter", sans-serif;
  color: var(--text);
  letter-spacing: -0.3px;
}

a { color: var(--navy); text-decoration: none; font-weight: 600; }
a:hover { text-decoration: underline; color: var(--gold-hover); }
img { max-width: 100%; height: auto; display: block; border-radius: 8px; }

/* ============ TOP NAV WITH DROPDOWN ============ */
.global-bar {
  background: var(--navy); color: #F9FAFB;
  height: 38px; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; font-weight: 500;
}
.global-bar a { color: #F9FAFB; text-decoration: none; }
.global-bar a:hover { color: var(--gold); }
.global-bar .g-brand { font-weight: 700; display: flex; align-items: center; gap: 6px; }

.breadcrumb-bar {
  background: #F3F4F6; border-bottom: 1px solid var(--line);
  padding: 8px 1.5rem; font-size: 12.5px; font-weight: 600; color: var(--text-muted);
}
.breadcrumb-bar a { color: var(--text-dim); text-decoration: none; }
.breadcrumb-bar a:hover { color: var(--gold-hover); }
.breadcrumb-bar .sep { margin: 0 6px; color: var(--line-strong); }

.site-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 0 1.5rem; height: 68px; box-shadow: var(--shadow-sm);
}
.site-nav .brand {
  font-size: 19px; font-weight: 800; color: var(--navy); text-decoration: none;
  display: flex; align-items: center; gap: 8px; letter-spacing: -0.5px;
}
.site-nav .brand .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }

.site-nav .links {
  display: flex; gap: 6px; align-items: center;
}
.site-nav a.nav-link, .nav-dropdown-trigger {
  font-size: 14px; font-weight: 600; color: var(--text-dim); padding: 8px 14px;
  border-radius: 6px; white-space: nowrap; transition: all 0.15s ease; cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px;
}
.site-nav a.nav-link:hover, .nav-dropdown-trigger:hover {
  color: var(--navy); background: #F3F4F6; text-decoration: none;
}

/* NAV DROPDOWN MENU */
.nav-dropdown {
  position: relative; display: inline-block;
}
.nav-dropdown-content {
  display: none; position: absolute; top: 100%; left: 0; min-width: 260px;
  background: #FFFFFF; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: var(--shadow-lg); padding: 8px 0; z-index: 200; margin-top: 4px;
}
.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}
.nav-dropdown-content a {
  display: flex; align-items: center; gap: 8px; padding: 10px 16px;
  color: var(--text); font-size: 13.5px; font-weight: 600; text-decoration: none;
  transition: background 0.12s ease;
}
.nav-dropdown-content a:hover {
  background: #F3F4F6; color: var(--navy); text-decoration: none;
}

.site-nav .nav-cta {
  background: var(--gold); color: var(--navy) !important; font-weight: 700; font-size: 14px;
  padding: 10px 20px; border-radius: 8px; text-decoration: none !important;
  white-space: nowrap; margin-left: 10px; box-shadow: 0 2px 8px rgba(212,175,55,0.3);
  transition: background 0.15s ease;
}
.site-nav .nav-cta:hover { background: var(--gold-hover); }

/* ============ HERO SECTIONS ============ */
.hero-split {
  max-width: 1140px; margin: 0 auto; padding: 4rem 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 868px) {
  .hero-split { grid-template-columns: 1fr; text-align: center; gap: 2rem; padding: 2.5rem 1.5rem; }
}

.hero-text h1 {
  font-size: 42px; font-weight: 800; line-height: 1.15; color: var(--navy); margin: 0 0 16px;
}
.hero-text p.sub {
  font-size: 17px; color: var(--text-dim); line-height: 1.6; margin: 0 0 24px;
}
.hero-cta-group {
  display: flex; gap: 14px; flex-wrap: wrap;
}
@media (max-width: 868px) {
  .hero-cta-group { justify-content: center; }
}

.btn-primary {
  background: var(--gold); color: var(--navy) !important; font-weight: 800; font-size: 15px;
  padding: 13px 28px; border-radius: 8px; text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(212,175,55,0.35); display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.15s ease;
}
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-1px); }

.btn-secondary {
  background: #FFFFFF; border: 1px solid var(--line-strong); color: var(--navy) !important;
  font-weight: 700; font-size: 15px; padding: 13px 28px; border-radius: 8px; text-decoration: none !important;
  display: inline-flex; align-items: center; gap: 8px; transition: all 0.15s ease;
}
.btn-secondary:hover { background: #F3F4F6; }

/* ============ CARDS & GRIDS ============ */
.content-wrap {
  max-width: 1140px; margin: 0 auto; padding: 3rem 1.5rem;
}

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

.card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 12px;
  padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--line-strong);
}

.hotel-stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 1.5rem 0;
}
@media (max-width: 768px) {
  .hotel-stats-strip { grid-template-columns: repeat(2, 1fr); }
}

.stat-badge {
  background: var(--navy); border: 1px solid #334155; border-radius: 10px; padding: 14px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 4px;
}
.stat-badge .label { font-size: 11px; font-weight: 800; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-badge .value { font-size: 17px; font-weight: 800; color: #FFFFFF !important; }
.stat-badge .sub { font-size: 12px; color: #CBD5E1; }

.hotel-info-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin: 1.5rem 0;
}
.info-card {
  background: #FFFFFF; border: 1px solid var(--line); border-radius: 12px; padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.info-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 0 0 8px; }
.info-card p { font-size: 14px; color: var(--text-dim); margin: 0; line-height: 1.55; }

/* INLINE SPEC PILLS */
.spec-pill-container {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px;
}
.spec-pill {
  background: #F3F4F6; color: var(--text); border: 1px solid var(--line);
  font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 6px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy); color: #94A3B8; padding: 4rem 1.5rem 2rem; margin-top: 5rem;
}
.site-footer a { color: #CBD5E1; text-decoration: none; }
.site-footer a:hover { color: var(--gold); text-decoration: underline; }
.site-footer h3, .site-footer h4 { color: #FFFFFF !important; font-size: 15px; margin: 0 0 14px; }
.footer-grid {
  max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem;
}
.footer-bottom {
  max-width: 1140px; margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid #334155;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px;
}
