/* ===================================================================
   Ohio Beer Path - Design System Variables
   Craft Beer Aesthetic with Multi-Tenant Foundation
   =================================================================== */

:root {
  /* ===== Neutrals (Universal) ===== */
  --color-background: #ffffff;
  --color-surface: #f9fafb;
  --color-surface-dark: #f3f4f6;
  --color-text-primary: #1f2937;
  --color-text-secondary: #6b7280;
  --color-text-muted: #6b7280; /* WCAG AA compliant contrast */
  --color-border: #e5e7eb;
  --color-border-dark: #d1d5db;

  /* ===== Ohio Theme Colors ===== */
  --color-primary: #d97706;        /* Amber beer */
  --color-primary-light: #fbbf24;  /* Light amber/gold */
  --color-primary-dark: #b45309;   /* Dark amber */
  --color-primary-rgb: 217, 119, 6; /* For rgba() usage */

  --color-accent: #16a34a;         /* Hops green */
  --color-accent-light: #22c55e;   /* Light green */
  --color-accent-dark: #15803d;    /* Dark green */

  /* ===== Semantic Colors ===== */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;

  /* ===== Shadows ===== */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15);

  /* ===== Typography ===== */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Fluid Typography (responsive sizing) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
  --text-3xl: clamp(2rem, 1.7rem + 1.2vw, 2.5rem);
  --text-4xl: clamp(2.5rem, 2rem + 2vw, 3.5rem);

  /* ===== Spacing ===== */
  --spacing-xs: 0.25rem;   /* 4px */
  --spacing-sm: 0.5rem;    /* 8px */
  --spacing-md: 1rem;      /* 16px */
  --spacing-lg: 1.5rem;    /* 24px */
  --spacing-xl: 2rem;      /* 32px */
  --spacing-2xl: 3rem;     /* 48px */
  --spacing-3xl: 4rem;     /* 64px */

  /* ===== Border Radius ===== */
  --radius-sm: 0.375rem;   /* 6px */
  --radius-md: 0.5rem;     /* 8px */
  --radius-lg: 0.75rem;    /* 12px */
  --radius-xl: 1rem;       /* 16px */
  --radius-2xl: 1.5rem;    /* 24px */
  --radius-full: 9999px;   /* Pill shape */

  /* ===== Transitions ===== */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Base Typography ===== */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-background);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-primary);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

/* ===== Button System ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 0.625rem 1.25rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
  min-height: 44px; /* Touch-friendly */
}

.btn:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn:active {
  transform: scale(0.98);
}

/* Primary Button (Amber) */
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Secondary Button (Outlined) */
.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

/* Accent Button (Green) */
.btn-accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: white;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Ghost Button (Subtle) */
.btn-ghost {
  background: var(--color-surface);
  color: var(--color-text-primary);
  border-color: var(--color-border);
}

.btn-ghost:hover {
  background: var(--color-surface-dark);
  border-color: var(--color-border-dark);
}

/* Button Sizes */
.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: var(--text-sm);
  min-height: 44px; /* WCAG touch target minimum */
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: var(--text-lg);
  min-height: 52px;
}

/* Button with icon */
.btn i {
  font-size: 1.1em;
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    #1a1a2e 0%,
    #16213e 30%,
    #b45309 70%,
    #d97706 100%
  );
  background-size: 300% 300%;
  animation: gradientShift 20s ease infinite;
  overflow: hidden;
  padding: var(--spacing-3xl) var(--spacing-md);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 2px,
      rgba(255, 255, 255, 0.03) 4px
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-section h1 {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: white;
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-section p {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--spacing-2xl);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-stats {
  display: flex;
  gap: var(--spacing-xl);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-2xl);
}

.hero-stat {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-xl);
  padding: var(--spacing-lg) var(--spacing-xl);
  min-width: 150px;
  text-align: center;
}

.hero-stat-value {
  display: block;
  font-size: var(--text-3xl);
  font-weight: 700;
  color: white;
  font-family: var(--font-heading);
}

.hero-stat-label {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
  margin-top: var(--spacing-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Desktop: taller hero */
@media (min-width: 768px) {
  .hero-section {
    min-height: 600px;
  }
}

/* ===== Brewery Cards ===== */
.brewery-card,
.card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.brewery-card:hover,
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary-light);
}

.brewery-card .card-img-top,
.card .card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
  position: relative;
}

.brewery-card:hover .card-img-top,
.card:hover .card-img-top {
  transform: scale(1.05);
}

/* Region badge overlay */
.brewery-region-badge {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: white;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.card-body {
  padding: var(--spacing-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
}

.card-subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
}

.card-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex: 1;
}

/* Amenity tags */
.amenity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-sm);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.amenity-tag i {
  color: var(--color-accent);
  font-size: 0.9em;
}

/* Status indicator */
.brewery-status {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-top: var(--spacing-sm);
  padding: var(--spacing-xs) 0;
}

.brewery-status.open {
  color: var(--color-success);
}

.brewery-status.closed {
  color: var(--color-text-muted);
}

.brewery-status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

/* Distance indicator */
.brewery-distance {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: 600;
  margin-top: var(--spacing-xs);
}

.brewery-distance i {
  font-size: 1.1em;
}

/* Card footer / actions */
.card-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--spacing-md) var(--spacing-lg);
}


/* ===== Navigation ===== */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  padding: var(--spacing-md) 0;
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.navbar.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: color var(--transition-fast);
}

.navbar-brand:hover {
  color: var(--color-primary-dark);
}

.navbar-brand i {
  font-size: 1.3em;
}

/* State badge (for multi-tenant future) */
.state-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--spacing-xs) var(--spacing-sm);
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: var(--spacing-sm);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-md);
  color: var(--color-text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-base);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  min-height: 44px;
}

.nav-link:hover {
  background: var(--color-surface);
  color: var(--color-primary);
}

.nav-link.active {
  background: var(--color-primary);
  color: white;
}

.nav-link i {
  font-size: 1.1em;
}

/* Itinerary counter badge */
.nav-link .badge {
  background: var(--color-accent);
  color: white;
  border-radius: var(--radius-full);
  padding: 2px 8px;
  font-size: var(--text-xs);
  font-weight: 700;
  margin-left: var(--spacing-xs);
}

/* Mobile hamburger menu */
.navbar-toggler {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm);
  background: transparent;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
}

.navbar-toggler:hover {
  border-color: var(--color-primary);
  background: var(--color-surface);
}

.navbar-toggler-icon {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  display: block;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  position: absolute;
  left: 0;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  bottom: -8px;
}

/* Mobile nav collapse */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
    box-shadow: var(--shadow-lg);
  }

  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link {
    width: 100%;
    justify-content: flex-start;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-link:last-child {
    border-bottom: none;
  }
}

/* ===== Search Component ===== */
.search-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  height: 52px;
  padding: var(--spacing-md) var(--spacing-lg) var(--spacing-md) 3.5rem;
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--color-text-primary);
  background: white;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.search-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg), 0 0 0 4px rgba(217, 119, 6, 0.1);
}

.search-input::placeholder {
  color: var(--color-text-muted);
}

.search-icon {
  position: absolute;
  left: var(--spacing-lg);
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  font-size: 1.25rem;
  pointer-events: none;
}

.search-input:focus ~ .search-icon {
  color: var(--color-primary);
}

.search-clear {
  position: absolute;
  right: var(--spacing-lg);
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border: none;
  border-radius: 50%;
  color: var(--color-text-secondary);
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.search-input:not(:placeholder-shown) ~ .search-clear {
  opacity: 1;
}

.search-clear:hover {
  background: var(--color-text-secondary);
  color: white;
}

/* Search suggestions dropdown */
.search-suggestions {
  position: absolute;
  top: calc(100% + var(--spacing-sm));
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-height: 400px;
  overflow-y: auto;
  display: none;
  z-index: 100;
}

.search-suggestions.active {
  display: block;
}

.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.search-suggestion-item:last-child {
  border-bottom: none;
}

.search-suggestion-item:hover {
  background: var(--color-surface);
}

.search-suggestion-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  color: white;
  border-radius: var(--radius-md);
  font-size: 1.2rem;
}

.search-suggestion-text {
  flex: 1;
}

.search-suggestion-title {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: var(--text-base);
}

.search-suggestion-subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-top: 2px;
}

/* Hero search variant (larger, on gradient background) */
.hero-section .search-input {
  height: 60px;
  font-size: var(--text-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-color: transparent;
}

.hero-section .search-input:focus {
  background: white;
  border-color: white;
}

/* ===== Utility Classes ===== */
.text-primary { color: var(--color-primary) !important; }
.text-accent { color: var(--color-accent) !important; }
.text-muted { color: var(--color-text-muted) !important; }

.bg-primary { background-color: var(--color-primary) !important; }
.bg-accent { background-color: var(--color-accent) !important; }
.bg-surface { background-color: var(--color-surface) !important; }

.rounded-lg { border-radius: var(--radius-lg) !important; }
.rounded-xl { border-radius: var(--radius-xl) !important; }
.rounded-full { border-radius: var(--radius-full) !important; }

.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }

/* Spacing utilities */
.gap-sm { gap: var(--spacing-sm) !important; }
.gap-md { gap: var(--spacing-md) !important; }
.gap-lg { gap: var(--spacing-lg) !important; }

/* Glass effect utility */
.glass {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background: var(--color-primary-light);
  color: white;
}

/* Loading state */
.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Subtle Animations ===== */
/* Note: @keyframes fadeIn, fadeInUp, pulse are defined in animations.ts (loaded via layout) */

/* Apply fade-in animation to cards */
.brewery-card,
.card,
.content-card,
.sidebar-card {
  animation: fadeInUp 0.4s ease-out;
}

/* Stagger animation for card grids */
.row > [class*="col-"]:nth-child(1) .brewery-card { animation-delay: 0ms; }
.row > [class*="col-"]:nth-child(2) .brewery-card { animation-delay: 50ms; }
.row > [class*="col-"]:nth-child(3) .brewery-card { animation-delay: 100ms; }
.row > [class*="col-"]:nth-child(4) .brewery-card { animation-delay: 150ms; }
.row > [class*="col-"]:nth-child(5) .brewery-card { animation-delay: 200ms; }
.row > [class*="col-"]:nth-child(6) .brewery-card { animation-delay: 250ms; }


/* Badge pulse animation for tour count */
.badge.bg-success {
  animation: pulse 2s infinite;
}

/* Link hover underline animation */
.footer-links a,
.nav-link {
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary-light);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Page transition fade */
body {
  animation: fadeIn 0.3s ease;
}

/* Toast notification animations */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   NAVIGATION (extracted from layout.ts)
   ============================================ */

.navbar {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.97) 0%, rgba(22, 33, 62, 0.97) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  color: #fbbf24 !important;
  transform: translateY(-1px);
}

.navbar-brand .pint-icon {
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
  transition: transform 0.3s ease;
}

.navbar-brand:hover .pint-icon {
  transform: rotate(-10deg) scale(1.1);
}

.state-badge {
  background: linear-gradient(135deg, #d97706, #b45309);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.4);
}

.navbar-nav {
  gap: 0.25rem;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem !important;
  border-radius: 8px;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.navbar-nav .nav-link:hover {
  color: #fbbf24 !important;
  background: rgba(251, 191, 36, 0.1);
  transform: translateY(-2px);
}

.navbar-nav .nav-link i {
  font-size: 1rem;
  opacity: 0.8;
}

.navbar-nav .nav-link:hover i {
  opacity: 1;
}

.navbar-toggler {
  border: 1px solid rgba(251, 191, 36, 0.3);
  padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28251, 191, 36, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#tour-badge {
  font-size: 0.7rem;
  padding: 0.2rem 0.45rem;
  margin-left: 0.25rem;
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  box-shadow: 0 2px 6px rgba(34, 197, 94, 0.4);
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(26, 26, 46, 0.98);
    margin-top: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(251, 191, 36, 0.1);
  }
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
  }
}

/* ============================================
   FOOTER (extracted from layout.ts)
   ============================================ */

.site-footer {
  background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-heading {
  color: #fbbf24;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-heading .pint-icon {
  width: 22px;
  height: 22px;
}

.footer-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #fbbf24;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
}

/* ============================================
   PWA BANNER (extracted from layout.ts)
   ============================================ */

.pwa-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #D97706, #B45309);
  color: white;
  padding: 1rem 0;
  z-index: 1050;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
