/* sticky-top keeps header in document flow so no body padding-top needed */
.site-header {
  background: #ec8600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  z-index: 1030;
}

.site-header .header-logo {
  display: block;
}


/* Full-width menu row */
.site-header .header-menu {
  padding: 0;
  background: linear-gradient(45deg, #db3823, transparent)
}

.site-header .header-menu .container {
  max-width: 100%;
}

.site-header .header-menu .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9);
  padding: 0.75rem 1.25rem;
  font-weight: 500;
}

.site-header .header-menu .navbar-nav .nav-link:hover,
.site-header .header-menu .navbar-nav .nav-link:focus {
  color: #fff;
}

.site-header .header-menu .navbar-nav .dropdown-menu {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 0;
}

.site-header .header-menu .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

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

/* Flash news - below header (not sticky), container width, supports HTML/links */
.flash-news-bar {
  background: #8b0100;
  color: #fff;
  padding: 0.4rem 0;
  overflow: hidden;
}

.flash-news-bar a {
  color: #fff;
  text-decoration: underline;
}

.nav-item {
  text-transform: uppercase;
}

.flash-news-bar a:hover {
  color: #e0d4ff;
}

.flash-news-wrapper {
  overflow: hidden;
  white-space: nowrap;
}

.flash-news-track {
  display: inline-block;
  white-space: nowrap;
  animation: flash-news-scroll 30s linear infinite;
}

.flash-news-text {
  display: inline-block;
  padding-right: 3em;
}

.flash-news-text:last-child {
  padding-right: 0;
}

@keyframes flash-news-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

body {
  background: #ec8600;
}

.site-header .header-menu .navbar-nav {
  padding: 0.5rem 0;
}

.site-header .header-menu .navbar-nav .nav-link {
  padding: 0.5rem 1rem;
}

/* Ensure slider and sections start below header - no negative positioning */
.cms-section-slider {
  position: relative;
  margin-top: 0;
}

.site-header .header-logo img {
  max-width: 100%;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: rgba(255, 255, 255, 0.9);
  margin-top: 3rem;
}

.footer-main {
  padding: 2.5rem 0;
}

.footer-heading {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.footer-contact p,
.footer-hours p {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact a,
.footer-hours a {
  color: #a5d6ff;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-hours a:hover {
  text-decoration: underline;
}

.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.9);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-links-cols {
  column-count: 2;
  column-gap: 1.5rem;
}

.footer-links-cols li {
  break-inside: avoid;
}

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

.footer-copyright,
.footer-powered {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-powered a {
  color: #a5d6ff;
  text-decoration: none;
}

.footer-powered a:hover {
  text-decoration: underline;
}


.home-table table{
  background-color: #fff;
}

.bg-white-container .container {
    background: #fff;
    border-radius: 5px;
}


.card-even .card-img-top {
  height: 280px;
  object-fit: cover;
}

.card-even .card {
  height: 100%;
}


@media (max-width: 767.98px) {
  .site-header .header-logo img {
    padding: 10px 0;
  }
  .site-header .header-menu .navbar-toggler {
    position: absolute;
    right: 5px;
    top: -40px;
    padding: 0;
  }

}