/* DuckBurger Landing Styles with Background Image */
:root {
  --bg: #0b1220;
  --panel: rgba(255,255,255,0.06);
  --muted: #d9dee8;
  --text: #ffffff;
  --brand: #22d3ee;
  --brand-2: #8b5cf6;
  --ring: rgba(34,211,238,.5);
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; padding: 0; }

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

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header { position:sticky;top:0;z-index:40;background:rgba(0,0,0,0.8);backdrop-filter:blur(6px);border-bottom:1px solid rgba(255,255,255,0.1); }
.header-inner { display:flex;align-items:center;justify-content:center; padding:4px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.logo { font-size: 28px; line-height: 1; }
.brand-title { font-weight: 800; display:block; }
.brand-sub { font-size: 12px; color: var(--muted); display:block; margin-top:-2px; }
.nav a {
  color: var(--text); text-decoration: none; margin-left: 16px; font-weight: 600;
  opacity: .9;
}
.nav a:hover { opacity: 1; }

.hero {
  position: relative;
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: url('assets/background.jpg') center/cover no-repeat;
  color: white;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}
.hero-inner h1 { font-size: clamp(32px, 5vw, 56px); margin: 0 0 12px; }
.hero-inner p { color: var(--muted); margin: 0 0 20px; }

.cta-group { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.btn {
  appearance: none; border: 0; cursor: pointer; text-decoration: none;
  padding: 12px 20px; border-radius: 12px; font-weight: 700; transition: all .15s ease;
}
.btn-primary {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #fff; box-shadow: 0 10px 20px rgba(0,0,0,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 28px rgba(0,0,0,.35); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

.locations, .about, .contact { padding: 60px 0; background: #0b1220; }
.locations h2, .about h2, .contact h2 { font-size: clamp(22px, 3.4vw, 32px); margin: 0 0 20px; }

.grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: var(--panel); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}
.card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,.7); border: 1px solid rgba(255,255,255,.2);
  padding: 6px 10px; border-radius: 999px; font-size: 12px;
}
.card-body { padding: 16px; }
.card-body h3 { margin: 0 0 6px; }
.card-body p { color: var(--muted); margin: 0 0 12px; }

.site-footer { border-top: 1px solid rgba(255,255,255,0.1); background: #000; }
.footer-inner { padding: 14px 0; display: flex; align-items: center; justify-content: space-between; color: var(--muted); }
.footer-link { color: var(--muted); text-decoration: none; }
.footer-link:hover { color: var(--text); }

@media (max-width: 860px) {
  .cta-group { flex-direction: column; }
}

.logo-center {
  display: flex;
  justify-content: center;
  padding: 20px 0 10px;
}
.logo-img {
  max-height: 120px;
  width: auto;
}
.nav-center {
  display: flex;
  justify-content: center;
  background: #000;
}
.nav-center .nav a {
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
}

/* Background images on cards */
.card-media.bg {
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  position: relative;
}
.card-media.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.55));
}
.media-title {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: clamp(18px, 2.6vw, 24px);
  z-index: 1;
}
.card .tag { z-index: 2; }

/* Thin header layout */
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 6px 12px;
  min-height: 48px;
}
.header-left { justify-self: start; }
.header-center { justify-self: center; }
.header-right { justify-self: end; text-align: right; }
.logo-img { max-height: 36px; width: auto; }
.nav a { margin: 0 12px; font-weight: 600; color: #fff; text-decoration: none; }
.nav a:hover { text-decoration: underline; }
.tagline-title { font-weight: 700; color: #fff; }
.tagline-sub { font-size: 12px; color: #ccc; }
.site-header { background: rgba(0,0,0,0.85); }

/* Minimal thin nav bar */
.site-header {
  background: rgba(0,0,0,0.9);
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-inner {
  padding: 0;
}
.nav a {
  margin: 0 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 42px;
}
.nav a:hover {
  text-decoration: underline;
}

/* High-contrast nav for readability */
.site-header {
  background: rgba(0, 0, 0, 0.96) !important;
  box-shadow: 0 2px 0 rgba(255,255,255,0.06), 0 8px 24px rgba(0,0,0,0.35);
  z-index: 9999;
}
.nav a {
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,.7);
  line-height: 42px;
}
.nav a:hover, .nav a:focus {
  text-decoration: none;
  border-bottom: 2px solid #fff;
}

.nav-center {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
.site-header {
  background: rgba(0,0,0,0.95);
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav a {
  margin: 0;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none;
  font-size: 15px;
  line-height: 46px;
}
.nav a:hover { text-decoration: underline; }
