/* =========================
   ROOT VARIABLES
   ========================= */

:root {
  --brand-red: #dc2626;
  --brand-red-dark: #b91c1c;
  --brand-gold: #facc15;
  --brand-green: #16a34a;
  --brand-blue: #2563eb;

  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-500: #6b7280;

  --card-radius: 16px;
}

/* =========================
   BASE STYLES
   ========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gray-800);
  background-color: #ffffff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Only apply spacing if Tailwind padding is NOT used */
section:not([class*="py-"]) {
  padding-block: clamp(4rem, 8vw, 7rem);
}

/* =========================
   TYPOGRAPHY
   ========================= */

h1,
h2,
h3 {
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

h1 {
  font-size: clamp(3.2rem, 5.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 {
  font-size: clamp(2.6rem, 4.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
}

h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-red-dark));
  margin: 1.2rem auto 0;
  border-radius: 999px;
}

h3 {
  font-size: clamp(1.55rem, 2.6vw, 1.9rem);
  font-weight: 600;
}

p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--gray-700);
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   HERO OVERRIDES
   ========================= */

.hero-bg h1,
.hero-bg p {
  color: #ffffff;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* =========================
   GRADIENT WORDS
   ========================= */

.hero-bg h1 span.gradient-word {
  background: linear-gradient(135deg, #f59e0b, #facc15, #ef4444);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* =========================
   BUTTONS
   ========================= */

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: 12px;
  padding: 0.9rem 2.2rem;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.25);
}

.btn-outline {
  border: 2px solid #e5e7eb;
}

.btn-outline:hover {
  background: #f3f4f6;
}

/* =========================
   CARDS
   ========================= */

.card-hover {
  background: rgba(255,255,255,0.96);
  border-radius: var(--card-radius);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.18);
}

/* =========================
   IMAGES & GALLERY
   ========================= */

.img-zoom,
.gallery-img {
  border-radius: var(--card-radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-zoom:hover,
.gallery-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* =========================
   HERO BACKGROUND
   ========================= */

.hero-bg {
  position: relative;
  background: linear-gradient(135deg, var(--brand-red), #ef4444, var(--brand-red));
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.08) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.08) 2px, transparent 2px);
  background-size: 60px 60px;
}

.hero-bg > * {
  position: relative;
  z-index: 1;
}

/* =========================
   HIGHLIGHTS & GLOWS
   ========================= */

.highlight-red { color: var(--brand-red); font-weight: 800; }
.highlight-green { color: var(--brand-green); font-weight: 700; }
.highlight-blue { color: var(--brand-blue); font-weight: 700; }

.highlight-gold {
  background: linear-gradient(135deg, #f59e0b, #facc15);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
}

.glow-red { box-shadow: 0 0 25px rgba(220,38,38,0.55); }
.glow-gold { box-shadow: 0 0 30px rgba(250,204,21,0.6); }

/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {
  body { padding-bottom: 72px; }

  h1 {
    font-size: clamp(2.4rem, 7vw, 3rem);
    text-align: center;
  }

  .hero-bg h1,
  .hero-bg p {
    text-align: center;
  }
}

/* =========================
   ACCESSIBILITY
   ========================= */

:focus-visible {
  outline: 3px solid rgba(220,38,38,0.6);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
/* =========================
   FORCE CONTENT VISIBILITY
   ========================= */

section h1,
section h2,
section h3,
section p,
section img,
section video {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
/* =========================
   BUSINESS HOURS CARD
   ========================= */

.business-hours-card {
  background: linear-gradient(
    135deg,
    #fff7ed,
    #fff1f2
  );
  border: 1px solid rgba(220, 38, 38, 0.15);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Open state */
.store-open {
  color: #16a34a;
  text-shadow: 0 0 8px rgba(22, 163, 74, 0.45);
}

.store-open-dot {
  background: #16a34a;
  box-shadow: 0 0 12px rgba(22, 163, 74, 0.9);
}

/* Closed state */
.store-closed {
  color: #dc2626;
  text-shadow: 0 0 8px rgba(220, 38, 38, 0.4);
}

