/* Fonts and Variables */

:root {
  --brand-primary: #055391;
  --brand-secondary: #F78628;
  --bg-light: #f6f7f8;
  --bg-dark: #0a1d2e;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: #0f172a;
}

/* Custom Colors Classes */

.text-brand-primary {
  color: var(--brand-primary) !important;
}

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

.border-brand-primary {
  border-color: var(--brand-primary) !important;
}

.text-brand-secondary {
  color: var(--brand-secondary) !important;
}

.bg-brand-secondary {
  background-color: var(--brand-secondary) !important;
}

.btn-brand-secondary {
  background-color: var(--brand-secondary);
  color: white;
  font-weight: bold;
  border: none;
}

.btn-brand-secondary:hover {
  background-color: #e07015;
  color: white;
}

/* Custom Utilities */

.backdrop-blur {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.95);
}

.icon-box-primary {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: rgba(5, 83, 145, 0.1);
  color: var(--brand-primary);
}

.icon-box-secondary {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: rgba(247, 134, 40, 0.1);
  color: var(--brand-secondary);
}

.shadow-hover:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Material Icons sizing adjustments */

.material-symbols-outlined {
  font-size: 24px;
}

.text-3xl {
  font-size: 30px;
}

.text-4xl {
  font-size: 36px;
}

/* Hero Image Gradient Overlay */

.hero-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 83, 145, 0.3), transparent);
}

/* Main Footer Container - Deep Blue Theme */

.meest-footer-blue {
  background-color: #055391;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 3rem;
  padding-bottom: 2rem;
  font-family: 'Inter', sans-serif;
}

/* Brand Name */

.meest-brand {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

/* Description Text (Slightly dimmed for contrast) */

.meest-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Headings (Quick Links, Services, Office Info) */

.meest-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
}

/* Links List */

.meest-footer-blue ul li {
  margin-bottom: 0.75rem;
}

.meest-footer-blue a {
  color: #ffffff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* HOVER COLOR - ORANGE */

.meest-footer-blue a:hover {
  color: #F78628;
  padding-left: 5px;
}

/* Bottom Copyright Bar */

.meest-bottom-bar {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.meest-bottom-bar a {
  color: rgba(255, 255, 255, 0.5);
}

.meest-bottom-bar a:hover {
  color: #F78628;
}

/* Helper for the script generated content */

.text-brand-orange {
  color: #F78628 !important;
}

.text-brand-green {
  color: #4ade80 !important;
}

/* Helper for the script generated content */

.text-brand-orange {
  color: #F78628 !important;
}

.text-brand-green {
  color: #4ade80 !important;
}

.hover-orange:hover {
  color: #F78628 !important;
  cursor: pointer;
}

/* Badge Specific Styles */

/* Open State: Light Green BG, Dark Green Text */

.badge-open-style {
  background-color: #dcfce7 !important;
  color: #166534 !important;
  border: 1px solid #bbf7d0;
}

/* Closed State: Brand Orange BG, White Text */

.badge-closed-style {
  background-color: var(--brand-secondary) !important;
  color: #ffffff !important;
  border: 1px solid #e07015;
}

/* Ensure the badge looks clickable/interactive if you add a link later */

#status-badge {
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.hours-card-body {
  padding: 2rem;
}

/* Status Badges */

.status-badge {
  display: inline-block;
  padding: 0.5em 1em;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

/* Open = Solid Green (Standard Success Green) */

.bg-status-open {
  background-color: #2e7d32;
}

/* Closed = Brand Orange */

.bg-status-closed {
  background-color: var(--brand-secondary);
}

/* Headers */

.hours-main-header {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.hours-sub-header {
  font-size: 1.1rem;
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Weekly List */

.hours-week-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.95rem;
  color: #334155;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day-name {
  font-weight: 600;
}

/* Call to Action Footer */

.hours-footer {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #475569;
}

.hours-phone-link {
  color: var(--brand-primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  display: block;
  margin-top: 0.25rem;
}

.hours-phone-link:hover {
  color: var(--brand-secondary);
}

.hours-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #94a3b8;
  font-style: italic;
}

