/* Park Access Atlas — Shared Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --green: #1B4332;
  --green-light: #2D6A4F;
  --gold: #F4A300;
  --gold-light: #FFC107;
  --white: #FFFFFF;
  --gray-light: #F8F9FA;
  --gray: #6C757D;
  --gray-dark: #343A40;
  --text: #212529;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-sm: 8px;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* NAV */
nav {
  background: var(--green);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); border-radius: 4px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: white; font-size: 1.5rem; }

/* DROPDOWN NAV */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 2px; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a4a2e;
  border-radius: 6px;
  min-width: 200px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 200;
  padding: 0.4rem 0;
  list-style: none;
}
.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  white-space: nowrap;
  border-radius: 0;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }
@media (max-width: 768px) {
  .dropdown-menu { position: static; box-shadow: none; background: rgba(0,0,0,0.15); border-radius: 0; min-width: 0; padding-left: 1rem; }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-links.open .nav-dropdown .dropdown-menu { display: block; }
}

/* HERO */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin-bottom: 2rem;
}
.hero-sub {
  font-size: 0.9rem !important;
  color: rgba(255,255,255,0.7) !important;
  margin-bottom: 0.5rem !important;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-gold { background: var(--gold); color: var(--green); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }

/* SECTIONS */
.section { padding: 5rem 2rem; }
.section-alt { background: var(--gray-light); }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--green);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* CARDS */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-img-placeholder { width: 100%; height: 220px; background: linear-gradient(135deg, var(--green), var(--green-light)); }
.card-body { padding: 1.5rem; }
.card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.card-title { font-size: 1.25rem; font-weight: 700; color: var(--green); margin-bottom: 0.75rem; }
.card-text { color: var(--gray); font-size: 0.95rem; margin-bottom: 1.25rem; }
.card-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* FEATURE BOXES */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.feature {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  display: block;
}
.feature h3 { font-size: 1.2rem; font-weight: 700; color: var(--green); margin-bottom: 0.75rem; }
.feature p { color: var(--gray); font-size: 0.95rem; }

/* CONTENT LAYOUT */
.content-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.content-main h2 { font-size: 1.75rem; font-weight: 700; color: var(--green); margin: 2rem 0 1rem; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { font-size: 1.2rem; font-weight: 600; color: var(--green); margin: 1.5rem 0 0.75rem; }
.content-main p { color: var(--gray-dark); margin-bottom: 1rem; line-height: 1.7; }
.content-main ul, .content-main ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.content-main li { color: var(--gray-dark); margin-bottom: 0.5rem; line-height: 1.6; }

/* SIDEBAR */
.sidebar { position: sticky; top: 80px; }
.sidebar-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--gold);
}
.sidebar-card h3 { font-size: 1rem; font-weight: 700; color: var(--green); margin-bottom: 1rem; }
.sidebar-card p { font-size: 0.9rem; color: var(--gray); margin-bottom: 1rem; }
.sidebar-card .btn { width: 100%; text-align: center; }

/* AFFILIATE LINKS */
.affiliate-box {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2rem 0;
}
.affiliate-box h3 { font-size: 1.1rem; font-weight: 700; color: var(--green); margin-bottom: 1.25rem; }
.affiliate-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0.75rem; }
.affiliate-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--green);
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid #e0e0e0;
  transition: all 0.2s;
}
.affiliate-link:hover { border-color: var(--gold); box-shadow: 0 2px 8px rgba(244,163,0,0.2); }
.affiliate-link span { font-size: 1.25rem; }

/* TABLES */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
th { background: var(--green); color: var(--white); padding: 0.875rem 1rem; text-align: left; font-weight: 600; }
td { padding: 0.875rem 1rem; border-bottom: 1px solid #e9ecef; }
tr:nth-child(even) td { background: var(--gray-light); }
tr:hover td { background: #e8f4f0; }

/* RIDE LIST */
.ride-list { list-style: none; padding: 0; }
.ride-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border-left: 4px solid var(--gold);
}
.ride-rank { font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.ride-info h3 { font-size: 1rem; font-weight: 700; color: var(--green); margin-bottom: 0.25rem; }
.ride-info p { font-size: 0.85rem; color: var(--gray); }
.ride-meta { text-align: right; }
.thrill-badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--green);
  color: var(--white);
}
.thrill-5 { background: #dc3545; }
.thrill-4 { background: #fd7e14; }
.thrill-3 { background: var(--gold); color: var(--green); }
.thrill-2 { background: #28a745; }
.thrill-1 { background: var(--gray); }

/* DISCLAIMER BOX */
.disclaimer-box {
  background: #fff8e7;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: #7a5c00;
}
.disclaimer-box strong { display: block; margin-bottom: 0.5rem; }

/* STEPS */
.steps { list-style: none; padding: 0; counter-reset: step; }
.steps li {
  counter-increment: step;
  padding: 1.25rem 1.25rem 1.25rem 4rem;
  position: relative;
  margin-bottom: 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HOTEL CARDS */
.hotel-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.hotel-badge {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--green);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.hotel-badge.budget { background: #28a745; }
.hotel-badge.value { background: var(--gold); color: var(--green); }
.hotel-badge.family { background: #007bff; }
.hotel-badge.closest { background: #6f42c1; }
.hotel-badge.premium { background: #343a40; }
.hotel-name { font-size: 1.15rem; font-weight: 700; color: var(--green); margin-bottom: 0.25rem; }
.hotel-dist { font-size: 0.85rem; color: var(--gray); margin-bottom: 0.5rem; }
.hotel-desc { font-size: 0.9rem; color: var(--gray-dark); margin-bottom: 0; }
.hotel-price { font-size: 1.1rem; font-weight: 700; color: var(--green); white-space: nowrap; }

/* TIPS BOX */
.tips-box {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin: 2rem 0;
}
.tips-box h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--gold); }
.tips-box ul { list-style: none; padding: 0; }
.tips-box li { padding: 0.5rem 0; padding-left: 1.75rem; position: relative; font-size: 0.95rem; color: rgba(255,255,255,0.9); }
.tips-box li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* SCHEDULE */
.schedule { list-style: none; padding: 0; }
.schedule-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e9ecef;
}
.schedule-time { font-weight: 700; color: var(--gold); font-size: 0.9rem; padding-top: 0.125rem; }
.schedule-item h3 { font-size: 1rem; font-weight: 700; color: var(--green); margin-bottom: 0.375rem; }
.schedule-item p { font-size: 0.9rem; color: var(--gray); }

/* COMPARE TABLE */
.compare-table th { font-size: 0.85rem; }
.compare-table .winner { color: var(--gold); font-weight: 700; }
.compare-table .check { color: #28a745; font-size: 1.2rem; }
.compare-table .cross { color: #dc3545; font-size: 1.2rem; }

/* RIDE STATS */
.ride-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.stat-box {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-sm);
}
.stat-value { font-size: 1.75rem; font-weight: 800; color: var(--gold); display: block; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.8); margin-top: 0.25rem; }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}
.cta-banner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.cta-banner p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* BREADCRUMB */
.breadcrumb {
  background: var(--gray-light);
  padding: 0.875rem 2rem;
  border-bottom: 1px solid #e9ecef;
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--gray);
}
.breadcrumb-inner a { color: var(--green); text-decoration: none; }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-inner span { margin: 0 0.5rem; }

/* FOOTER */
footer {
  background: var(--gray-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .nav-logo { font-size: 1.1rem; display: inline-block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; }
footer h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 1rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer ul a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.85rem; }
footer ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* VERIFIED NOTE */
.verified-note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--green); padding: 1rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hotel-card { grid-template-columns: 1fr; }
  .schedule-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .hero { min-height: 400px; }
}


/* AFFILIATE GRID */
.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.affiliate-card {
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}
.affiliate-card-body {
  padding: 1rem;
}
.affiliate-card h4 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--green);
}
.affiliate-card p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0 0 0.75rem;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .affiliate-grid { grid-template-columns: 1fr; }
}

/* Compact affiliate list — low visual weight */
.affiliate-compact {
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e8e8e4;
  padding-top: 1rem;
}
.affiliate-compact li {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.4rem;
  line-height: 1.5;
}
.affiliate-compact a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px dotted var(--green);
}
.affiliate-compact a:hover { text-decoration: underline; }
.affiliate-section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}
