/* ============================================================
   Wings'N'Pies — Locations Hub (wingsnpies.com)
   Design: Warm Cream & Red (matches Willimantic brand)
   ============================================================ */

:root {
  --bg:       #FAF8F5;
  --white:    #FFFFFF;
  --red:      #C41010;
  --red-dark: #A00D0D;
  --yellow:   #D4960A;
  --dark:     #1A1A1A;
  --gray:     #6B6B6B;
  --border:   #E8E0D5;
  --shadow:   0 4px 20px rgba(0,0,0,0.08);
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--dark);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Header ── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.header-logo img { height: 64px; width: auto; }
.header-tagline {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2b2b2b 100%);
  color: var(--white);
  text-align: center;
  padding: 64px 24px;
}
.hero-inner { max-width: 700px; margin: 0 auto; }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}
.hero h1 .hero-locations {
  display: block;
  font-size: 0.5em;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--yellow);
  margin-top: 10px;
}
.hero p {
  margin-top: 14px;
  font-size: 1.1rem;
  color: #ddd;
}

/* ── Locations grid ── */
.locations { padding: 56px 24px 72px; }
.locations-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.location-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-badge {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 20px;
  text-align: center;
}
.card-badge-muted { background: var(--gray); }

.card-body { padding: 28px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.card-body h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-info { margin-bottom: 18px; }
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.info-icon { flex-shrink: 0; }

.card-map { border-radius: 8px; overflow: hidden; margin-bottom: 20px; border: 1px solid var(--border); }

.card-note { color: var(--gray); font-size: 0.9rem; margin-bottom: 24px; }

.card-btns { margin-top: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.card-btns-single { grid-template-columns: 1fr; }

.btn-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 12px;
  border-radius: 6px;
  transition: background 0.2s, opacity 0.2s;
}
.btn-location:hover { opacity: 0.88; }
.btn-en { background: var(--red); color: var(--white); }
.btn-en:hover { background: var(--red-dark); }
.btn-es { background: var(--dark); color: var(--white); }
.btn-es:hover { background: #333; }
.btn-visit { background: var(--yellow); color: var(--dark); }
.btn-visit:hover { background: #b97f08; }

.btn-coming {
  background: #ECE7DE;
  color: var(--gray);
  cursor: default;
  opacity: 1;
}
.btn-coming:hover { opacity: 1; }

/* ── Footer ── */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-logo { height: 56px; width: auto; }
.footer-copy { font-size: 0.85rem; color: #ccc; }
.footer-los { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: #ccc; margin-top: 8px; }
.footer-los img { height: 20px; width: auto; }

@media (max-width: 640px) {
  .header-inner { flex-direction: column; text-align: center; }
}
