/* Escape Hershey - Modern Design
   Aligned with Adventure Sports Family Fun Center brand (adventurehershey.com) */
:root {
  --eh-primary: #0077b6;
  --eh-primary-dark: #005a8c;
  --eh-accent: #e85d04;
  --eh-accent-hover: #d34d00;
  --eh-warm-yellow: #fff3cd;
  --eh-cream: #f8f9fa;
  --eh-dark: #1a1a2e;
  --eh-muted: #5a5a6e;
  --eh-white: #ffffff;
  --eh-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --eh-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --eh-radius: 16px;
  --eh-radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(180deg, var(--eh-cream) 0%, var(--eh-warm-yellow) 100%);
  min-height: 100vh;
  color: var(--eh-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Raleway', sans-serif;
  font-weight: 700;
}

a {
  color: var(--eh-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: var(--eh-primary-dark);
}

/* Navbar */
.eh-navbar {
  background: var(--eh-white) !important;
  box-shadow: var(--eh-shadow);
  padding: 0.75rem 1rem;
  border-radius: 0;
}
.eh-navbar .navbar-brand,
.eh-navbar .nav-link {
  font-weight: 600;
  color: var(--eh-dark) !important;
}
.eh-navbar .nav-link:hover {
  color: var(--eh-primary) !important;
}
.eh-navbar .navbar-toggler {
  border-color: var(--eh-primary);
}
.eh-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230077b6' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.eh-nav-cta {
  background: var(--eh-primary) !important;
  color: var(--eh-white) !important;
  border-radius: var(--eh-radius-sm);
  padding: 0.5rem 1rem !important;
}
.eh-nav-cta:hover {
  background: var(--eh-primary-dark) !important;
  color: var(--eh-white) !important;
}

/* Hero */
.eh-hero {
  background: linear-gradient(135deg, var(--eh-primary) 0%, var(--eh-primary-dark) 100%);
  color: var(--eh-white);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 0 0 var(--eh-radius) var(--eh-radius);
  position: relative;
  overflow: hidden;
}
.eh-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.eh-hero h1 {
  color: var(--eh-white);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 0.5rem;
}
.eh-hero .eh-hero-sub {
  font-size: 1.1rem;
  opacity: 0.95;
}
.eh-hero .eh-parent-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.2);
  border-radius: var(--eh-radius-sm);
  font-size: 0.9rem;
}
.eh-hero .eh-parent-badge img {
  height: 36px;
}

/* Cards */
.eh-card {
  background: var(--eh-white);
  border-radius: var(--eh-radius);
  box-shadow: var(--eh-shadow);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
}
.eh-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--eh-shadow-lg);
}
.eh-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.eh-card .eh-card-body {
  padding: 1.5rem;
}
.eh-card h3 {
  color: var(--eh-primary-dark);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* Section headers */
.eh-section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--eh-primary-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Stats / highlights */
.eh-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.eh-highlight-pill {
  background: var(--eh-white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  color: var(--eh-primary-dark);
  box-shadow: var(--eh-shadow);
}

/* Who should try */
.eh-audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.eh-audience-card {
  background: var(--eh-white);
  border-radius: var(--eh-radius);
  padding: 1.5rem;
  box-shadow: var(--eh-shadow);
  text-align: center;
  transition: transform 0.2s ease;
}
.eh-audience-card:hover {
  transform: translateY(-2px);
}
.eh-audience-card .eh-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--eh-primary), var(--eh-primary-dark));
  color: var(--eh-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}
.eh-audience-card h4 {
  color: var(--eh-primary-dark);
  margin-bottom: 0.5rem;
}

/* Footer */
.eh-footer {
  background: var(--eh-primary-dark) !important;
  color: var(--eh-white);
  padding: 2.5rem 1.5rem !important;
  margin-top: 3rem;
}
.eh-footer a {
  color: rgba(255,255,255,0.9) !important;
}
.eh-footer a:hover {
  color: var(--eh-accent) !important;
}
.eh-footer .eh-footer-parent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.eh-footer .eh-footer-parent img {
  height: 48px;
}

/* Buttons */
.eh-btn-primary {
  background: var(--eh-primary) !important;
  color: var(--eh-white) !important;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--eh-radius-sm);
  font-weight: 600;
  transition: background 0.2s ease;
}
.eh-btn-primary:hover {
  background: var(--eh-primary-dark) !important;
  color: var(--eh-white) !important;
}
.eh-btn-accent {
  background: var(--eh-accent) !important;
  color: var(--eh-dark) !important;
}
.eh-btn-accent:hover {
  background: var(--eh-accent-hover) !important;
  color: var(--eh-dark) !important;
}

/* Content sections */
.eh-content-card {
  background: var(--eh-white);
  border-radius: var(--eh-radius);
  padding: 2rem;
  box-shadow: var(--eh-shadow);
  margin-bottom: 2rem;
}
.eh-content-card h2 {
  color: var(--eh-primary-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--eh-accent);
}

/* FAQ / About accordion style */
.eh-faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
}
.eh-faq-item:last-child {
  border-bottom: none;
}
.eh-faq-item h3 {
  font-size: 1.1rem;
  color: var(--eh-primary-dark);
}

/* Utility */
.eh-lead {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}
.padding-lg { padding: 1.5rem; }
.padding-md { padding: 1rem; }
.padding-sm { padding: 0.5rem; }

/* Map embed */
.eh-map-container {
  border-radius: var(--eh-radius);
  overflow: hidden;
  box-shadow: var(--eh-shadow);
}
