/* ============================================ */
/* Kalyan247 — LUXURY HOOKAH LOUNGE DESIGN      */
/* Premium dark aesthetic • Gold & Smoke vibes   */
/* ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* — Premium color palette — */
  --bg-deep: #08070B;
  --bg-dark: #0E0C14;
  --bg-card: #15121E;
  --bg-card-hover: #1C1828;
  --bg-glass: rgba(21, 18, 30, 0.85);

  --gold: #D4A84B;
  --gold-light: #E8C97A;
  --gold-glow: rgba(212, 168, 75, 0.15);
  --gold-gradient: linear-gradient(135deg, #D4A84B 0%, #F5DFA3 50%, #D4A84B 100%);

  --smoke: #7B6BA4;
  --smoke-light: #A494CC;
  --smoke-glow: rgba(123, 107, 164, 0.12);

  --text-primary: #EDE8F5;
  --text-secondary: #8E86A0;
  --text-muted: #5C5470;
  --border: rgba(212, 168, 75, 0.08);
  --border-hover: rgba(212, 168, 75, 0.2);

  --success: #6ECB8B;
  --danger: #E06C75;
  --warning: #E5C07B;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========================= */
/* RESET & BASE              */
/* ========================= */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ambient smoke texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(123,107,164,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212,168,75,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(123,107,164,0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

/* ========================= */
/* SKIP LINK                 */
/* ========================= */

.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--gold); color: #000;
  padding: 8px 16px; z-index: 10002;
  font-size: 14px; transition: top 0.2s; text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ========================= */
/* HEADER — Floating glass    */
/* ========================= */

.header {
  background: rgba(8, 7, 11, 0.9);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  padding: 1rem 0;
}

.header-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.3s var(--ease);
  letter-spacing: 0.5px;
}
.logo:hover { opacity: 0.85; }

.nav { display: flex; gap: 2.5rem; align-items: center; }
.nav a {
  color: var(--text-secondary); font-weight: 500; font-size: 0.95rem;
  position: relative; transition: color 0.3s var(--ease);
  letter-spacing: 0.2px;
}
.nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after { width: 100%; }

.mobile-menu-btn {
  display: none; background: none; border: none;
  color: var(--text-primary); font-size: 1.5rem; cursor: pointer;
}

@media (max-width: 768px) {
  .nav {
    display: none; position: absolute; top: 60px; left: 0; right: 0;
    flex-direction: column; background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem; gap: 1.25rem;
  }
  .nav.active { display: flex; }
  .mobile-menu-btn { display: block; }
}

/* ========================= */
/* BREADCRUMBS               */
/* ========================= */

.breadcrumbs { margin: 1.5rem 0; padding: 0; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; }
.breadcrumbs li { font-size: 0.85rem; color: var(--text-muted); }
.breadcrumbs li::after { content: '›'; margin-left: 0.5rem; color: var(--text-muted); }
.breadcrumbs li:last-child::after { content: ''; }
.breadcrumbs a { color: var(--smoke-light); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--gold); }

/* ========================= */
/* LAYOUT                    */
/* ========================= */

main { min-height: calc(100vh - 200px); padding: 2rem 0; position: relative; z-index: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========================= */
/* HERO — Cinematic premium  */
/* ========================= */

.hero {
  text-align: center;
  padding: 5rem 2.5rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,168,75,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(123,107,164,0.06) 0%, transparent 50%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}

/* Decorative gold line at top */
.hero::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.hero h1, .hero h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gold-gradient);
  background-size: 200% 100%;
  color: #0E0C14;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 24px rgba(212,168,75,0.2);
}
.hero-cta:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(212,168,75,0.3);
}

/* ========================= */
/* SECTION TITLES             */
/* ========================= */

h2 {
  font-family: var(--font-display);
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

/* ========================= */
/* FILTERS — Premium panel    */
/* ========================= */

.filters {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  align-items: flex-end;
}

.filter-group { flex: 1; min-width: 160px; }
.filter-group label {
  display: block; margin-bottom: 0.5rem;
  color: var(--text-muted); font-weight: 500;
  font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-group input,
.filter-group select {
  width: 100%; padding: 0.8rem 1rem;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  font-family: var(--font-body);
}
.filter-group input:focus,
.filter-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
  background: rgba(212,168,75,0.04);
}

.filter-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.filter-btn {
  padding: 0.8rem 2rem;
  background: var(--gold-gradient);
  background-size: 200% 100%;
  color: #0E0C14;
  border: none; border-radius: 8px;
  cursor: pointer; font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.filter-btn:hover {
  background-position: 100% 0;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212,168,75,0.25);
}

@media (max-width: 768px) {
  .filters { flex-direction: column; }
  .filter-group { width: 100%; }
  .filter-btn { width: 100%; }
}

/* ========================= */
/* BAR CARDS — Luxury glass   */
/* ========================= */

.bars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.bar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex; flex-direction: column;
  position: relative;
}

.bar-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.bar-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.4),
    0 0 40px var(--gold-glow);
}
.bar-card:hover::before { opacity: 1; }

.bar-card-link { text-decoration: none; color: inherit; display: contents; }

.bar-card-image {
  position: relative;
  width: 100%; padding-bottom: 56.25%;
  background: linear-gradient(135deg, #1a1524 0%, #0E0C14 100%);
  overflow: hidden;
}

.bar-placeholder {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.bar-placeholder svg { width: 100%; height: 100%; object-fit: cover; }

.bar-featured-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold-gradient); color: #0E0C14;
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(212,168,75,0.3);
}

.bar-card-content {
  padding: 1.75rem;
  display: flex; flex-direction: column; flex: 1;
}

.bar-header {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 1rem; margin-bottom: 0.75rem;
}

.bar-name {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 700;
  color: var(--text-primary); margin: 0; flex: 1;
  letter-spacing: -0.2px;
}

.bar-rating { display: flex; align-items: center; gap: 0.4rem; white-space: nowrap; }
.stars { color: var(--gold); font-size: 0.9rem; }
.rating-number { color: var(--gold); font-weight: 700; font-size: 1.05rem; }
.reviews-count { color: var(--text-muted); font-size: 0.85rem; }

.bar-meta {
  display: flex; gap: 1.25rem; margin-bottom: 1rem;
  flex-wrap: wrap; font-size: 0.9rem;
}
.bar-district { color: var(--smoke-light); font-weight: 500; }
.bar-price { color: var(--gold-light); font-weight: 600; }

.bar-description {
  color: var(--text-secondary); font-size: 0.93rem;
  margin-bottom: 1.25rem; flex: 1; line-height: 1.6;
}

.bar-features { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }

.feature-tag {
  background: var(--smoke-glow);
  color: var(--smoke-light);
  padding: 5px 12px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 500;
  border: 1px solid rgba(123,107,164,0.15);
  letter-spacing: 0.2px;
}

.bar-footer {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
}

.bar-check {
  background: var(--gold-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.3px;
}

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

.districts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem; margin-bottom: 3rem;
}

.district-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem;
  transition: all 0.35s var(--ease);
  cursor: pointer; position: relative;
  overflow: hidden;
  text-decoration: none;
}
.district-card::after {
  content: '→';
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  color: var(--gold); font-size: 1.25rem;
  opacity: 0; transform: translateX(-8px);
  transition: all 0.3s var(--ease);
}
.district-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.district-card:hover::after { opacity: 1; transform: translateX(0); }

.district-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 0.5rem;
}
.district-card-desc {
  color: var(--text-secondary); font-size: 0.88rem;
  margin-bottom: 1rem; line-height: 1.5;
}
.district-bar-count {
  color: var(--gold); font-weight: 600; font-size: 0.9rem;
}

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

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem; margin-bottom: 3rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}

.blog-card-link { text-decoration: none; color: inherit; display: contents; }

.blog-card-image {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--smoke) 0%, rgba(212,168,75,0.3) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 3rem;
}

.blog-card-content {
  padding: 1.75rem;
  display: flex; flex-direction: column; flex: 1;
}

.blog-card-date {
  color: var(--text-muted); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 1rem; line-height: 1.3;
}

.blog-card-excerpt {
  color: var(--text-secondary); font-size: 0.93rem;
  margin-bottom: 1.5rem; flex: 1; line-height: 1.6;
}

.blog-card-cta {
  color: var(--gold); font-weight: 600;
  transition: all 0.3s var(--ease);
  display: inline-flex; align-items: center; gap: 6px;
}
.blog-card-cta::after { content: '→'; transition: transform 0.3s var(--ease); }
.blog-card-cta:hover { color: var(--gold-light); }
.blog-card-cta:hover::after { transform: translateX(4px); }

/* ========================= */
/* FOOTER — Refined           */
/* ========================= */

.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 4rem 0 1rem;
  margin-top: 5rem;
  position: relative;
}

/* Gold separator line */
.footer::before {
  content: '';
  position: absolute; top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 2px;
  background: var(--gold-gradient);
}

.footer-content {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem; margin-bottom: 3rem;
}

.footer-section h3 {
  font-family: var(--font-display);
  color: var(--text-primary); margin-bottom: 1.25rem;
  font-size: 1.1rem; font-weight: 600;
}

.footer-section a {
  display: block; color: var(--text-secondary);
  margin-bottom: 0.6rem; font-size: 0.93rem;
  transition: all 0.2s var(--ease);
}
.footer-section a:hover { color: var(--gold); transform: translateX(3px); }

.footer-brand p { margin-bottom: 1rem; font-size: 0.93rem; line-height: 1.6; }
.footer-social { display: flex; gap: 1.25rem; font-size: 1.4rem; }
.footer-social a { display: inline-block; margin: 0; }
.footer-note { font-size: 0.85rem; color: var(--text-muted); }

.footer-disclaimers {
  max-width: 1200px; margin: 0 auto; padding: 2rem 24px;
  border-top: 1px solid var(--border);
  font-size: 0.83rem; color: var(--text-muted);
}
.footer-disclaimers p { margin-bottom: 0.75rem; line-height: 1.6; }

.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 1.5rem 24px;
  text-align: center; border-top: 1px solid var(--border);
  font-size: 0.83rem; color: var(--text-muted);
}

.footer-legal-links { margin: 0.75rem 0; }
.footer-legal-links a {
  color: var(--smoke-light); margin: 0 0.6rem;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--gold); }

/* ========================= */
/* STICKY MOBILE CTA          */
/* ========================= */

.sticky-mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(8, 7, 11, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 1rem; text-align: center;
  display: none; z-index: 90;
}
.sticky-mobile-cta.active { display: block; }

.cta-button {
  display: inline-block; padding: 14px 28px;
  background: var(--gold-gradient); background-size: 200% 100%;
  color: #0E0C14; border-radius: 8px;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  width: 100%; max-width: 400px;
}
.cta-button:hover {
  background-position: 100% 0;
  box-shadow: 0 4px 20px rgba(212,168,75,0.3);
}

@media (max-width: 768px) {
  .sticky-mobile-cta.active {
    display: block; padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }
  body { padding-bottom: 70px; }
}

/* ========================= */
/* TABLES                     */
/* ========================= */

table {
  width: 100%; border-collapse: collapse;
  background: var(--bg-card); border-radius: 12px;
  overflow: hidden; margin: 2rem 0;
  border: 1px solid var(--border);
}

thead { background: var(--bg-deep); border-bottom: 1px solid var(--border); }
th {
  padding: 1.1rem 1.25rem; text-align: left;
  color: var(--gold); font-weight: 600;
  font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 1px;
}
td { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); }
tbody tr { transition: background 0.2s; }
tbody tr:hover { background: var(--gold-glow); }

/* ========================= */
/* BLOG POST / PAGE CONTENT   */
/* ========================= */

.post-header { margin-bottom: 2.5rem; }

.post-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--text-primary);
  margin-bottom: 1rem; line-height: 1.15;
  letter-spacing: -0.5px;
}

.post-meta {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  color: var(--text-muted); font-size: 0.9rem; align-items: center;
}
.post-meta span { display: flex; align-items: center; gap: 0.4rem; }

.post-content {
  line-height: 1.85; color: var(--text-primary); max-width: 800px;
}

.post-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem; margin: 2.5rem 0 1.25rem;
  color: var(--text-primary); letter-spacing: -0.3px;
}

.post-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem; margin: 2rem 0 0.75rem;
  color: var(--gold);
}

.post-content p { margin-bottom: 1.5rem; }

.post-content a {
  color: var(--gold); transition: all 0.2s;
  border-bottom: 1px solid rgba(212,168,75,0.3);
}
.post-content a:hover {
  color: var(--gold-light); border-bottom-color: var(--gold-light);
}

.post-content ul, .post-content ol {
  margin: 1.5rem 0; padding-left: 2rem;
}
.post-content li { margin-bottom: 0.6rem; }

.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem; margin: 2rem 0;
  background: var(--gold-glow);
  border-radius: 0 8px 8px 0;
  color: var(--text-secondary); font-style: italic;
}

.post-content code {
  background: var(--bg-card); padding: 2px 8px;
  border-radius: 4px; color: var(--gold);
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.88rem;
}

.post-content pre {
  background: var(--bg-card); padding: 1.75rem;
  border-radius: 10px; overflow-x: auto;
  margin: 2rem 0; border: 1px solid var(--border);
}
.post-content pre code { background: none; padding: 0; color: var(--gold); }

/* ========================= */
/* UTILITIES                  */
/* ========================= */

.text-center { text-align: center; }
.text-secondary { color: var(--text-secondary); }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

.no-results {
  text-align: center; padding: 4rem 1.5rem;
  color: var(--text-muted);
}
.no-results p { font-size: 1.1rem; margin-bottom: 1rem; }

/* ========================= */
/* ANIMATIONS                 */
/* ========================= */

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.bar-card { animation: fadeInUp 0.5s var(--ease) backwards; }
.bar-card:nth-child(1) { animation-delay: 0s; }
.bar-card:nth-child(2) { animation-delay: 0.05s; }
.bar-card:nth-child(3) { animation-delay: 0.1s; }
.bar-card:nth-child(4) { animation-delay: 0.15s; }
.bar-card:nth-child(5) { animation-delay: 0.2s; }
.bar-card:nth-child(6) { animation-delay: 0.25s; }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ========================= */
/* RESPONSIVE                 */
/* ========================= */

@media (max-width: 1024px) {
  .bars-grid, .blog-grid, .districts-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .hero { padding: 3rem 1.5rem; border-radius: 12px; }
  .bars-grid, .blog-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .districts-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .filters { flex-direction: column; padding: 1.5rem; }
  .footer-content { grid-template-columns: 1fr; }
  table { font-size: 0.9rem; }
  th, td { padding: 0.75rem; }
}

@media (max-width: 480px) {
  .hero h1, .hero h2 { font-size: 1.7rem; }
  .post-title { font-size: 1.5rem; }
  .bar-header { flex-direction: column; }
  .bar-meta { flex-direction: column; gap: 0.4rem; }
  .bar-card-content { padding: 1.25rem; }
}

/* ========================= */
/* CUSTOM SCROLLBAR            */
/* ========================= */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb {
  background: var(--text-muted); border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
