/**
 * Mack Powell Event Center - Brand Guidelines CSS
 *
 * Enqueue this file in your WordPress theme's functions.php:
 *
 * function mpec_custom_styles() {
 *     wp_enqueue_style('mpec-brand', get_stylesheet_directory_uri() . '/brand-guidelines.css');
 * }
 * add_action('wp_enqueue_scripts', 'mpec_custom_styles');
 */

/* ============================================
   CSS VARIABLES (Custom Properties)
   ============================================ */

:root {
  /* === BRAND COLORS === */

  /* Primary - Sage Green */
  --color-primary: #7A8B7D;
  --color-primary-light: #9BAA9D;
  --color-primary-dark: #5D6B60;

  /* Accent - Gold/Cream */
  --color-accent: #748173;
  --color-accent-light: #8A9789;
  --color-accent-dark: #647163;
  --color-cream: #F5EFE7;

  /* Neutrals */
  --color-white: #FFFFFF;
  --color-off-white: #FDFDFB;
  --color-light-gray: #F7F7F5;
  --color-gray-100: #F3F3F1;
  --color-gray-200: #E8E8E6;
  --color-gray-300: #D1D1CF;
  --color-gray-400: #A8A8A6;
  --color-gray-500: #737371;
  --color-gray-600: #5A5A58;
  --color-gray-700: #3C3C3A;
  --color-gray-800: #2A2A28;
  --color-gray-900: #1A1A18;
  --color-black: #0F0F0D;

  /* Semantic Colors */
  --color-success: #6B9B6E;
  --color-error: #C85A54;
  --color-warning: #D49B54;
  --color-info: #6B8B9B;

  /* === TYPOGRAPHY === */

  /* Font Families */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-script: 'Great Vibes', 'Brush Script MT', cursive;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;

  /* Font Sizes - Fluid Typography */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.375vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.35rem + 0.75vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.65rem + 1.125vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.95rem + 1.5vw, 3rem);
  --text-5xl: clamp(3rem, 2.55rem + 2.25vw, 4rem);
  --text-6xl: clamp(3.75rem, 3.15rem + 3vw, 5rem);

  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Line Heights */
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;

  /* Letter Spacing */
  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;
  --tracking-widest: 0.1em;

  /* === SPACING === */
  --space-xs: 0.5rem;      /* 8px */
  --space-sm: 0.75rem;     /* 12px */
  --space-md: 1rem;        /* 16px */
  --space-lg: 1.5rem;      /* 24px */
  --space-xl: 2rem;        /* 32px */
  --space-2xl: 3rem;       /* 48px */
  --space-3xl: 4rem;       /* 64px */
  --space-4xl: 6rem;       /* 96px */
  --space-5xl: 8rem;       /* 128px */

  /* Section Spacing */
  --section-padding-mobile: 3rem;
  --section-padding-tablet: 4rem;
  --section-padding-desktop: 6rem;

  /* === LAYOUT === */
  --container-max-width: 1280px;
  --container-padding: 1.5rem;
  --content-max-width: 65ch;

  /* === BORDERS === */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  --border-radius-full: 9999px;

  --border-width-thin: 1px;
  --border-width-medium: 2px;
  --border-width-thick: 4px;

  /* === SHADOWS === */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --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.15);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);

  /* Colored Shadows */
  --shadow-accent: 0 4px 14px rgba(116, 129, 115, 0.25);
  --shadow-primary: 0 4px 14px rgba(122, 139, 125, 0.25);

  /* === TRANSITIONS === */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-all: all 300ms ease;

  /* === Z-INDEX === */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ============================================
   GLOBAL RESETS & BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-700);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-gray-800);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--text-5xl);
  letter-spacing: var(--tracking-tight);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: var(--space-lg);
}

/* Script/Handwritten Accent Headings */
.heading-script {
  font-family: var(--font-script);
  font-weight: var(--font-normal);
  font-size: var(--text-5xl);
  color: var(--color-primary);
  line-height: 1.2;
}

/* Elegant Serif Accent */
.heading-accent {
  font-family: var(--font-accent);
  font-weight: var(--font-semibold);
  font-style: italic;
}

/* Small/Uppercase Labels */
.label-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-primary);
}

/* Body Text Variants */
.text-large {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
}

.text-small {
  font-size: var(--text-sm);
}

.text-muted {
  color: var(--color-gray-500);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container-narrow {
  max-width: 900px;
}

.container-wide {
  max-width: 1440px;
}

.container-full {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Section Spacing */
.section {
  padding-top: var(--section-padding-mobile);
  padding-bottom: var(--section-padding-mobile);
}

@media (min-width: 768px) {
  .section {
    padding-top: var(--section-padding-tablet);
    padding-bottom: var(--section-padding-tablet);
  }
}

@media (min-width: 1024px) {
  .section {
    padding-top: var(--section-padding-desktop);
    padding-bottom: var(--section-padding-desktop);
  }
}

/* Section Backgrounds */
.section-white {
  background-color: var(--color-white);
}

.section-light {
  background-color: var(--color-light-gray);
}

.section-cream {
  background-color: var(--color-cream);
}

.section-sage {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section-sage h1,
.section-sage h2,
.section-sage h3,
.section-sage h4,
.section-sage h5,
.section-sage h6 {
  color: var(--color-white);
}

.section-dark {
  background-color: var(--color-gray-800);
  color: var(--color-white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--color-white);
}

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

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  text-align: center;
  text-decoration: none;
  padding: 0.875rem 2rem;
  border-radius: var(--border-radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-all);
  line-height: 1.5;
  letter-spacing: var(--tracking-wide);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn:active {
  transform: translateY(0);
}

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

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
  box-shadow: 0 6px 20px rgba(116, 129, 115, 0.4);
}

/* Secondary Button (Sage) */
.btn-secondary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-primary);
}

.btn-secondary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 6px 20px rgba(122, 139, 125, 0.4);
}

/* Outline Button */
.btn-outline {
  background: transparent;
  color: var(--color-gray-800);
  border-color: var(--color-gray-800);
}

.btn-outline:hover {
  background: var(--color-gray-800);
  color: var(--color-white);
}

/* Outline Primary */
.btn-outline-primary {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-outline-primary:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* Ghost Button */
.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border: none;
  padding: 0.5rem 1rem;
}

.btn-ghost:hover {
  background: transparent;
  color: var(--color-accent);
  transform: none;
  box-shadow: none;
}

/* Button Sizes */
.btn-sm {
  font-size: var(--text-sm);
  padding: 0.625rem 1.5rem;
}

.btn-lg {
  font-size: var(--text-lg);
  padding: 1.125rem 2.5rem;
}

/* Full Width Button */
.btn-block {
  display: block;
  width: 100%;
}

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

.card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition-all);
  box-shadow: var(--shadow-md);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: var(--space-xl);
}

.card-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  color: var(--color-gray-800);
  margin-bottom: var(--space-md);
}

.card-text {
  color: var(--color-gray-600);
  margin-bottom: var(--space-lg);
}

/* Card with Overlay */
.card-overlay {
  position: relative;
  overflow: hidden;
}

.card-overlay-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.card-overlay:hover .card-overlay-image {
  transform: scale(1.05);
}

.card-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  color: var(--color-white);
}

.card-overlay-content h3 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-gray-700);
  margin-bottom: var(--space-sm);
  letter-spacing: var(--tracking-wide);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-gray-800);
  background-color: var(--color-white);
  border: 2px solid var(--color-gray-300);
  border-radius: var(--border-radius-md);
  transition: var(--transition-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(122, 139, 125, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  color: var(--color-error);
  font-size: var(--text-sm);
  margin-top: var(--space-xs);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #2d3748; /* Fallback color if image doesn't load */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--color-white);
  max-width: 900px;
  padding: var(--space-xl);
}

.hero-title {
  font-size: var(--text-6xl);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: var(--text-xl);
  font-weight: var(--font-normal);
  color: var(--color-white);
  margin-bottom: var(--space-2xl);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   NAVIGATION (Example)
   ============================================ */

.navbar {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  transition: var(--transition-base);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--container-padding);
}

.navbar-logo {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--color-primary);
  text-decoration: none;
}

.navbar-menu {
  display: flex;
  gap: var(--space-xl);
  list-style: none;
}

.navbar-link {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: var(--color-gray-700);
  text-decoration: none;
  transition: var(--transition-base);
  letter-spacing: var(--tracking-wide);
}

.navbar-link:hover {
  color: var(--color-accent);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Text Colors */
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.text-white { color: var(--color-white); }
.text-muted { color: var(--color-gray-500); }

/* Background Colors */
.bg-white { background-color: var(--color-white); }
.bg-light { background-color: var(--color-light-gray); }
.bg-cream { background-color: var(--color-cream); }
.bg-sage { background-color: var(--color-primary); }
.bg-accent { background-color: var(--color-accent); }

/* Spacing Utilities */
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }

/* Flexbox Utilities */
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* Grid Utilities */
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Border Radius */
.rounded-sm { border-radius: var(--border-radius-sm); }
.rounded-md { border-radius: var(--border-radius-md); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-xl { border-radius: var(--border-radius-xl); }
.rounded-full { border-radius: var(--border-radius-full); }

/* Shadow */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease-out;
}

.animate-slideUp {
  animation: slideUp 0.6s ease-out;
}

.animate-scaleIn {
  animation: scaleIn 0.6s ease-out;
}

/* ============================================
   STICKY MOBILE CTA BAR (Conversion Optimization)
   ============================================ */

.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  display: none; /* Hidden by default */
  animation: slideUpCTA 0.4s ease-out;
}

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

.sticky-mobile-cta-container {
  display: flex;
  gap: 0.75rem;
  max-width: 600px;
  margin: 0 auto;
}

.sticky-mobile-cta .btn {
  flex: 1;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-weight: var(--font-semibold);
  text-align: center;
  white-space: nowrap;
  border-radius: var(--border-radius-md);
  transition: var(--transition-base);
  box-shadow: none;
}

.sticky-mobile-cta .btn:hover {
  transform: none;
  opacity: 0.95;
}

.sticky-mobile-cta .btn-call {
  background: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-white);
}

.sticky-mobile-cta .btn-call:hover {
  background: var(--color-cream);
  border-color: var(--color-cream);
}

.sticky-mobile-cta .btn-book {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
}

.sticky-mobile-cta .btn-book:hover {
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
}

/* Show sticky bar only on mobile (below 768px) */
@media (max-width: 767px) {
  .sticky-mobile-cta {
    display: block;
  }

  /* Add padding to body to prevent content from being hidden behind sticky bar */
  body {
    padding-bottom: 72px;
  }
}

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

/* Hide on mobile */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

/* Hide on tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .hide-tablet {
    display: none !important;
  }
}

/* Hide on desktop */
@media (min-width: 1024px) {
  .hide-desktop {
    display: none !important;
  }
}

/* Show only on mobile */
.show-mobile {
  display: block;
}

@media (min-width: 768px) {
  .show-mobile {
    display: none !important;
  }
}

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

/* Focus styles */
*:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Skip to content link */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-accent);
  color: var(--color-white);
  padding: var(--space-md) var(--space-lg);
  text-decoration: none;
  z-index: 9999;
}

.skip-to-content:focus {
  top: 0;
}

/* Reduce motion for users who prefer it */
@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;
  }
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .no-print {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: black;
    background: white;
  }

  a {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }
}

/* ============================================
   HOURS BOX - Location & Hours Section
   ============================================ */

.hours-box {
  background: #F5EFE7 !important;
  border-left: 4px solid #748173 !important;
  border-radius: 8px !important;
  padding: 2.5rem 2.5rem 2.5rem 3rem !important;
  margin: 3rem 0 !important;
}

.hours-box h3 {
  font-family: var(--font-elegant) !important;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: #3C3C3A !important;
  margin-bottom: 1.5rem !important;
}

.hours-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.hours-list li {
  font-family: var(--font-serif) !important;
  font-size: 1.0625rem !important;
  font-style: italic !important;
  color: #5A5A58 !important;
  line-height: 2 !important;
  display: flex !important;
  justify-content: space-between !important;
  padding: 0.5rem 0 !important;
  border-bottom: 1px solid rgba(122, 139, 125, 0.15) !important;
}

.hours-list li:last-child {
  border-bottom: none !important;
}

.hours-list li strong {
  font-weight: 600 !important;
  color: #3C3C3A !important;
  font-style: normal !important;
}
