/* ============================================================
   Root Variables & Global Resets
============================================================ */
:root {
  --bg: #fafafa;
  --text: #111;
  --muted: #666;
  --card: #fff;
  --border: #e5e5e5;
  --accent: #0056b3;       /* deep blue from logo */
  --highlight: #0091ff;    /* yellow from banner text */
  --action: #d60000;       /* bold red from SHURR */
  --hover-accent: #007bff; /* hover blue */
  --hover-action: #ff4444; /* hover red */
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--hover-accent);
}

img {
  max-width: 100%;
  display: block;
}

/* ============================================================
   Layout Containers
============================================================ */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ============================================================
   Header & Navigation
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(1.2) blur(6px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.nav .brand {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.2px;
  color: var(--action);
}

.nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a:hover {
  opacity: 0.8;
  color: var(--hover-accent);
}

.call-btn {
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--highlight);
  color: #000;
  font-weight: 600;
  transition: background 0.3s ease;
}

.call-btn:hover {
  background: var(--hover-action);
  color: #fff;
}

/* ============================================================
   Hero Section
============================================================ */
.hero {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 45%, rgba(255,255,255,0) 100%);
  z-index: 1;
}

.hero .content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 30px 0;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 56px);
  margin: 0 0 8px 0;
  font-weight: 700;
 
}

.hero p {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  margin: 0 0 16px 0;
}

.hero .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

/* ============================================================
   Buttons
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 12px 16px;
  gap: 8px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--accent);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--hover-accent);
  color: #fff;
}

.btn.primary {
  background: var(--action);
  color: #fff;
}

.btn.primary:hover {
  background: var(--hover-action);
}

/* ============================================================
   Hero Video Banner
============================================================ */
.hero-video,
.banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.banner {
  margin-top: 10px;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* ============================================================
   Sections & Cards
============================================================ */
.section {
  padding: 64px 0;
}

.section h2 {
  font-size: clamp(22px, 3.5vw, 32px);
  margin: 0 0 10px 0;
  color: var(--accent);
}

.grid {
  display: grid;
  gap: 16px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card .pad {
  padding: 16px;
}

.subtle {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ============================================================
   Badges & Gallery
============================================================ */
.badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.badge {
  background: var(--highlight);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  color: #000;
}

.gallery {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   Hours & Footer
============================================================ */
.hours {
  display: grid;
  gap: 8px;
}

.hours .row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hours .row .day {
  min-width: 88px;
  font-weight: 600;
  color: var(--accent);
}

.footer {
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer .cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 800px) {
  .footer .cols {
    grid-template-columns: 1fr;
  }
}

.footer .legal {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 10px 0;
  color: #777;
  font-size: 0.85rem;
}
