/*
 * CSS Overrides for Premium Cannabis WordPress Theme
 * Designed strictly as light theme with luxurious dark off-accents.
 */

/* Responsive Layout Helpers */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

/* Compliance Navigation Strip */
.announcement-compliance-bar {
  background-color: #0f172a;
  color: #f8fafc;
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.5rem 1rem;
  text-align: center;
  font-family: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  z-index: 999;
}

/* Custom Warning Pill */
.warning-alert-pill {
  background-color: var(--border-gold, #d97706);
  color: #ffffff;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.7rem;
}

/* Global Navbar Styling */
.site-header-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.site-brand-text {
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
}

/* Menu Enqueuing CSS Handles */
.main-navigation-menu ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.main-navigation-menu ul a {
  color: #334155;
  text-decoration: none;
  font-size: 0.925rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.main-navigation-menu ul a:hover {
  color: var(--primary-color);
}

/* Age verification Glass Modal Overlay */
.age-gate-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.96);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.age-gate-card {
  background-color: #ffffff;
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid #e2e8f0;
}

/* Global Standard Buttons styling */
.btn-primary-custom {
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary-custom:hover {
  opacity: 0.9;
}
.btn-secondary-custom {
  background-color: #fafaf9;
  border: 1px solid #d1d5db;
  color: #111827;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary-custom:hover {
  background-color: #f3f4f6;
}

/* Compliance Strict Footer */
.compliance-global-footer {
  background-color: #1e293b;
  color: #f1f5f9;
  padding: 4rem 0 0 0;
}
.footer-widget-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.text-muted {
  color: #94a3b8;
}
.legal-badge-pill {
  border: 1px solid #475569;
  border-radius: 8px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  max-width: fit-content;
}

/* Government Regulations Disclaimer Wrap */
.government-disclaimer-warning-strip {
  background-color: #000000;
  color: #fbbf24; /* yellow warning font */
  font-size: 0.8rem;
  line-height: 1.4rem;
  padding: 1.25rem 1rem;
  border-top: 2px solid #fbbf24;
}

.footer-copyright-strip {
  background-color: #0f172a;
  padding: 1.5rem 1rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
