/**
 * Caroline Community Center - Color Guide Theme
 * FONTS / Colors from brand guide
 * #38495d (56,73,93)  - dark blue-gray - primary text
 * #f1892b (242,137,43) - orange accent
 * #f8bf39 (249,191,57) - yellow/gold
 * #17a186 (35,162,134) - teal
 * #29b99a (26,185,155) - lighter teal
 * #2d95d2 (41,149,210) - blue - primary
 * #47c1f0 (67,195,241) - light blue
 */

:root {
  /* Override Bootstrap theme colors */
  --bs-primary: #2d95d2;
  --bs-primary-rgb: 41, 149, 210;
  --bs-secondary: #5d4a38;
  --bs-secondary-rgb: 56, 73, 93;
  --bs-link-color: #2d95d2;
  --bs-link-hover-color: #17a186;
  --bs-body-color: #38495d;
  --bs-heading-color: #38495d;
  /* Hero / accent tints from palette */
  --hero-bg: #e8f4fc; /* light tint of primary blue #2d95d2 */
}
/* Custom color classes for compatibility */
.text-blue{color:#015a9e!important}
.text-orange{color:#eb5f0b!important}
.text-dark-red{color:#ac1a2e!important}
.text-grey{color:#424040!important}
.bg-light-brown{background-color:#fbf0ee!important}
.bg-grey{background-color:#ecf0f0d3!important}
.bg-orange{background-color:#f1892b!important}
.bg-light-grey{background-color:#eef5f7!important}
.border-blue{border-color:#2196F3!important}

/* Hero section – soft background from site palette */
.hero-section {
  background-color: var(--hero-bg);
}

/* Pull hero up on mobile to cover white gap under fixed navbar (body padding-top > nav height) */
@media (max-width: 991.98px) {
  .hero-section {
    margin-top: -2rem;
    padding-top: calc(1.5rem + 2rem) !important; /* pt-4 + compensate so content doesn't sit under nav */
  }
}

/* Hero: add top padding on large screens only */
@media (min-width: 992px) {
  .hero-section {
    padding-top: 3rem;
  }
}

/* Hero buttons – more vibrant, on-brand */
.hero-section .btn-hero-cta {
  background-color: #f1892b;
  border-color: #f1892b;
  color: #fff;
  font-weight: 600;
}
.hero-section .btn-hero-cta:hover,
.hero-section .btn-hero-cta:focus {
  background-color: #e07a22;
  border-color: #e07a22;
  color: #fff;
  box-shadow: 0 0.25rem 0.5rem rgba(241, 137, 43, 0.35);
}


/* Text primary (used for highlights) */
.text-primary {
  color: #eb5f0b !important;
}
a.text-primary:hover {
  color: #000000 !important;
}

/* Fixed navbar: full width and stable on mobile (avoids half-off hamburger / scroll glitch) */
.navbar.fixed-top {
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1100vw;
}
@media (max-width: 991.98px) {
  .navbar > .container {
    min-width: 0;
    flex-wrap: nowrap;
  }
  .navbar .navbar-brand {
    min-width: 0;
    max-width: calc(100vw - 120px); /* leave room for hamburger + padding */
  }

  .navbar .navbar-brand img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
  }
  
  .navbar .navbar-toggler {
    flex-shrink: 0;
  }
}

/* ======================= Nav links – override Bootstrap focus ring (grey box-shadow) ======================= */

.navbar-nav .nav-link {
  color: #ffffff !important; /*Controls link color in navigation on large devices */
  outline: none;
  box-shadow: none;
  font-size: 18px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:focus-visible {
  color: #eb5f0b !important; /*Controls hover state color of links in navigation on large devices */
  outline: none;
  box-shadow: none;
  border-radius: 0.5rem 0.5rem 0 0; /* rounds top color */
}
.navbar-nav .nav-link:focus-visible {
  box-shadow: 0 0 0 2px rgba(241, 137, 43, 0.5);
}
/* Nav dropdown menu  */
.navbar .dropdown-menu {
  background-color: #fff;
  border: none;
  border-top: 2px solid #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0 0 0.5rem 0.5rem;
}
.navbar-nav .dropdown-item {
  color: #000;
}
.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
  background-color: rgba(255, 255, 255, 0.3); /* opaciity strip color behind links in drop down. used if dropdown is a color */
   /*background-color: #ded9d9;*/
  color: #eb5f0b;
}
.navbar-nav .dropdown-item:active {
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/*  Desktop hover + click/open state for dropdown toggle  */

@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .navbar .dropdown:hover > .nav-link.dropdown-toggle,
  .navbar .nav-item.dropdown.show > .nav-link.dropdown-toggle,
  .navbar .nav-link.dropdown-toggle[aria-expanded="true"] {
    color: #eb5f0b !important; /*Controls hover state color of links in navigation with drop down on large devices */
    background-color: #fff !important; /* Controls background color behind main dropdown link */
    border: 0px solid #fff !important; /*Controls borders around drop down links */
    border-bottom-color: transparent !important;
    outline: none;
    box-shadow: none;
  }
}

.social-links {
  color: #eb5f0b !important;
}
.social-links:hover {
  color: #fff !important;
}

/* ======================= BUTTONS ======================= */

.navbar .btn-primary {
  background-color: #ac1a2e;
  border-color: #ac1a2e;
  font-size: 18px;
}
.navbar .btn-primary:hover {
  background-color: #000000;
  border-color: #000000;
}

.btn-theme-blue {
  background-color: #2d95d2;
  border-color: #2d95d2;
  font-size: 18px;
  color: #fff;
}
.btn-theme-blue:hover,
  .btn-theme-blue:focus {
  background-color: #e55516;
  border-color: #2586be;
  color: #fff;
}
.btn-outline-program {
  color: #000000;
  border-color: #1b71a2;
}
.btn-outline-program:hover,
.btn-outline-program:hover * {
  background-color: #1b71a2;
  border-color: #1b71a2;
  color: #fff;
}

/* Links */
a {
  color: #2d95d2;
}
a:hover {
  color: #17a186;
}

/* ======================= Footer ======================= */
/* Footer logo - align with column titles */
footer .footer-logo-link {
  display: inline-block;
  margin-top: -1.5rem;
}

/* Footer column titles - lighter teal for contrast on dark bg */
footer .h6.text-uppercase,
footer h3.h6 {
  color: #e55516 !important;
}

/* Footer links - keep light on dark */
footer a.text-light:hover,
footer a.text-white-50:hover {
  color: #fff963 !important;
}

/* Form focus states */
.form-control:focus,
.form-select:focus {
  border-color: #2d95d2;
  box-shadow: 0 0 0 0.25rem rgba(41, 149, 210, 0.25);
}

/* ======================= Directory modules ======================= */
.directory-grid .directory-card {
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.directory-grid .directory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.75rem 1.5rem rgba(56, 73, 93, 0.12);
}
.directory-card-media {
  background-color: #f2f6fa;
}
.directory-card-media .card-img-top {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
@media (max-width: 575.98px) {
  .directory-card-media .card-img-top {
    height: 220px;
  }
}
.directory-card-badge {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.directory-card-meta a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}
.directory-card-meta a:hover,
.directory-card-meta a:focus {
  color: #2d95d2;
  text-decoration: underline;
}
.directory-list-empty {
  border-radius: 1rem;
  background-color: #f2f6fa;
}
@media (prefers-reduced-motion: reduce) {
  .animate-left, .animate-right, .animate-fading, .animate-zoom {
    opacity: 1; transform: none; transition: none;
  }
}

/* ======================= Slide Carousel ======================= */

/* Slide carousel – fixed aspect ratio (3:2). Use 4/3 or 5/4 instead if you prefer. */
.slide-carousel .carousel-item {
  width: 100%;
  aspect-ratio: 3 / 2;
}

/* Hero: space between slideshow and header (push whole carousel down) */
.hero-section .slide-carousel {
  margin-top: 1.5rem;
}

.slide-carousel .slide-carousel-img-wrap {
  display: block;
  width: 100%;
  height: 100%;
}

.slide-carousel .slide-carousel-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  vertical-align: top;
}

/* ======================= Rentals ======================= */
/* Reserve a space section: same button look as hero */
.rental-cta-section .btn-hero-cta {
  background-color: #f1892b;
  border-color: #f1892b;
  color: #fff;
  font-weight: 600;
}
.rental-cta-section .btn-hero-cta:hover,
.rental-cta-section .btn-hero-cta:focus {
  background-color: #e07a22;
  border-color: #e07a22;
  color: #fff;
  box-shadow: 0 0.25rem 0.5rem rgba(241, 137, 43, 0.35);
}

.btn-outline-teal {
  color: #17a186;
  border-color: #17a186;
}
.btn-outline-teal:hover {
  background-color: #17a186;
  border-color: #17a186;
  color: #fff;
}

/* Primary buttons and links */
.btn-primary {
  background-color: #eb5f0b;
  border-color: #eb5f0b;
  color: #fff;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #000000;
  border-color: #000000;
  color: #fff;
}
.btn-outline-primary {
  border-color: #000000;
  color: #000000;
}
.btn-outline-primary:hover,
.btn-outline-primary:hover * {
  background-color: #eb5f0b;
  border-color: #eb5f0b;
  color: #fff;
}
.btn-secondary {
  background-color: #000000;
  border-color: #000000;
  color: #fff;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #eb5f0b;
  border-color: #eb5f0b;
  color: #fff;
}
/* Home page: Reserve a rental CTA section */
.rental-cta-section {
  position: relative;
  background-image: url('/OldSite/images/home/four-bk.jpg');
  background-size: cover;
  background-position: center;
  min-height: 18rem;
  display: flex;
  align-items: center;
}
.rental-cta-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 149, 210, 0.88) 0%, rgba(23, 161, 134, 0.82) 100%);
  pointer-events: none;
}
.rental-cta-section .container {
  z-index: 1;
}
.rental-cta-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
 border-radius: var(--bs-border-radius, 0.375rem);
  /* box-shadow: 0 0.5rem 2rem rgba(56, 73, 93, 0.2), 0 0.25rem 0.5rem rgba(0, 0, 0, 0.08);*/
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.rental-cta-card-inner {
  padding: 2rem 2.25rem;
  text-align: center;
}
.rental-cta-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2d95d2 0%, #17a186 100%);
  color: #fff;
  border-radius: 50%;
  font-size: 1.35rem;
}
.rental-cta-title {
  color: #38495d;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.rental-cta-lead {
  color: #38495d;
  opacity: 0.9;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.rental-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.btn-rental-cta {
  background: linear-gradient(135deg, #2d95d2 0%, #1a7fb8 100%);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.2rem 0.5rem rgba(45, 149, 210, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-rental-cta:hover {
  background: linear-gradient(135deg, #17a186 0%, #148f76 100%);
  color: #fff;
  box-shadow: 0 0.35rem 0.75rem rgba(23, 161, 134, 0.4);
  transform: translateY(-1px);
}
.btn-outline-rental-cta {
  color: #38495d;
  border-color: #38495d;
  background: transparent;
  font-weight: 500;
  padding: 0.65rem 1.25rem;
  border-radius: 0.5rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline-rental-cta:hover {
  background: #38495d;
  border-color: #38495d;
  color: #fff;
}
@media (min-width: 576px) {
  .rental-cta-title {
    font-size: 1.75rem;
  }
  .rental-cta-card-inner {
    padding: 2.5rem 2.75rem;
  }
}

/* Available rooms list in rental CTA (room name + guests only) */
.rental-cta-rooms {
  margin-top: 2rem;
  margin-bottom: 0;
}
.rental-cta-room-card {
  transition: box-shadow 0.2s ease;
}
.rental-cta-room-card:hover {
  box-shadow: 0 0.35rem 0.75rem rgba(0, 0, 0, 0.1) !important;
}
.rental-cta-room-card__img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(145deg, #e9ecef 0%, #dee2e6 100%);
}
.rental-cta-room-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.rental-cta-room-card:hover .rental-cta-room-card__img {
  transform: scale(1.08);
}
.rental-cta-room-card__img-wrap > .rental-cta-room-card__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
}
.rental-cta-room-card__img-placeholder {
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #e9ecef 0%, #dee2e6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
  font-size: 2rem;
}
.rental-cta-room-card__body {
  flex: 1 1 auto;
}
.rental-cta-room-card__name {
  font-size: 0.95rem;
}
.rental-cta-room-card__guests i {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* Rentals: View Pictures modal – slide gallery */
.rental-room-pics-carousel {
  background: #000;
}
.rental-room-pics-carousel .carousel-inner {
  max-height: 70vh;
}
.rental-room-pics-carousel .carousel-item {
  aspect-ratio: 16 / 9;
  max-height: 70vh;
  background: #111;
}
.rental-room-pics-carousel .rental-room-pics-slide-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.rental-room-pics-carousel .carousel-control-prev,
.rental-room-pics-carousel .carousel-control-next {
  opacity: 0.85;
}
.rental-room-pics-carousel .carousel-control-prev:hover,
.rental-room-pics-carousel .carousel-control-next:hover {
  opacity: 1;
}
.rental-room-pics-carousel .carousel-indicators {
  margin-bottom: 0.5rem;
}
.rental-room-pics-carousel .carousel-indicators [data-bs-slide-to] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* View Pictures modal: prev/next in footer with photo count */
.rental-room-pics-footer .btn-link {
  min-width: 5rem;
}
.rental-room-pics-footer .btn-link:hover {
  color: var(--bs-primary) !important;
}

/* Rentals: Security deposit & Decorations note icons – ensure visible */
.rental-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: var(--bs-primary);
}
.rental-note-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--bs-primary);
}

/* ======================= Title Background ======================= */
.title-background{background-image:url("/images/shared/title-bk.webp");background-repeat:repeat;background-attachment:scroll;background-position:top center}	


/* ======================= Start Background Video Code ======================= */
#hero{
display: flex; /*Turn this on on 100% site*/
justify-conten: center;
align-items: center;
text-align: center;
/*background: #00000;
background: rgba(0,0,0,0.3);*/
color: black;
/*min-height: 75vh;*/
min-height: 830px;
position: relative;
overflow: hidden;
}
#hero::after {
      width:100%;
      height:100%;
      content: '';
      position:relative;
      z-index:10;
      top:0;
      left:0;
      /*background:rgba(0,0,0,0.2);*/
			background: linear-gradient(to bottom, transparent 0%, black 100%);
			background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}
#hero .caption {

      position:absolute;
      z-index:20;
      text-align:left;
			bottom: 0;
			left: 0%;
			width: 100%;
			transform: translate (-50%, -50%);
      color:#ffffff;
			valign: bottom;
}
.video-bg{
	position: absolute;
	z-index: -1;
	top: 0%;
	left: 0%;
	/*transform: translate (-50%, -50%);*/
	min-width: 100%;
	min-height: 100%;
}
#heroSmall{
display: flex; /*Turn this on on 100% site*/
justify-conten: center;
align-items: center;
text-align: center;
/*background: #00000;
background: rgba(0,0,0,0.3);*/
color: white;
/*min-height: 75vh;*/
min-height: 480px;
position: relative;
overflow: hidden;
}
#heroSmall::after {
      width:100%;
      height:100%;
      content: '';
      position:relative;
      z-index:10;
      top:0;
      left:0;
      /*background:rgba(0,0,0,0.2);*/
			background: linear-gradient(to bottom, transparent 0%, black 100%);
			background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}
#heroSmall .caption {

      position:absolute;
      z-index:20;
      text-align:center;
			bottom: 0;
			left: 0%;
			width: 100%;
			transform: translate (-50%, -50%);
      color:#ffffff;
			valign: bottom;
}
.video-bg-small{
	position: absolute;
	z-index: -1;
	top: 0%;
	left: -50%;
	/*transform: translate (-50%, -50%);*/
	min-width: 100%;
	min-height: 100%;
}

/* ======================= Modern Portfolio Cards ======================= */
.portfolio-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}

.portfolio-image {
  transition: transform 0.5s ease;
  height: 250px;
  object-fit: cover;
}

.portfolio-card:hover .portfolio-image {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.9) 0%, rgba(33, 150, 243, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .portfolio-image {
    height: 200px;
  }
}

/* ======================= Service Cards Hover Effects ======================= */
.service-card {
  backdrop-filter: blur(10px);
  border-color: rgba(33, 150, 243, 0.5) !important;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(33, 150, 243, 0.5) !important;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.service-card:hover .bg-primary {
  background-color: rgba(33, 150, 243, 0.3) !important;
}

.service-card a {
  transition: color 0.3s ease, transform 0.3s ease;
}

.service-card:hover a {
  color: #fff !important;
}

.service-card:hover a i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .service-card {
    margin-bottom: 1rem;
  }
}

/* Base Card Style */
.sponsor-card {
  border: 1px solid #ddd;
  border-top: 6px solid transparent; /* default */
  border-radius: 0.5rem;
  background-color: #fff;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.sponsor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Sponsor Level Colors */
.sponsor-card.platinum {
  border-top-color: #a9a7a1;
}

.sponsor-card.gold {
  border-top-color: #e6ab09;
}

.sponsor-card.bronze {
  border-top-color: #8c6239;
}

.sponsor-card.orange {
  border-top-color: #eb5f0b;
}

/* Optional: Accent Heading Color 
.sponsor-card.platinum h2 {
  color: #a9a7a1;
}

.sponsor-card.gold h2 {
  color: #8a8a8a;
}

.sponsor-card.bronze h2 {
  color: #6b4a2f;
}*/

/* ======================= Blog Category Cards Hover Effects ======================= */
.blog-category-card {
  cursor: pointer;
  border: 1px solid rgba(33, 150, 243, 0.1) !important;
}

.blog-category-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(33, 150, 243, 0.3) !important;
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.15);
}

.blog-category-card:hover i {
  transform: scale(1.1);
  color: #1976d2 !important;
}

.blog-category-card:hover h5 {
  color: #1976d2 !important;
}

/* ======================= Stat Cards Hover Effects ======================= */
.stat-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(33, 150, 243, 0.15) !important;
  background-color: #f8f9fa !important;
}

.stat-card:hover .stat-icon div {
  background-color: rgba(33, 150, 243, 0.2) !important;
  transform: scale(1.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover .stat-number span {
  color: #1976D2 !important;
  transform: scale(1.05);
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.stat-card .stat-icon div {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card .stat-number span {
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.stat-decoration {
  transition: height 0.3s ease;
}

.stat-card:hover .stat-decoration {
  height: 6px;
  background: linear-gradient(90deg, #2196F3 0%, #1976D2 100%) !important;
}

@media (max-width: 768px) {
  .stat-card {
    margin-bottom: 1.5rem;
  }
  
  .stat-number span {
    font-size: 48px !important;
  }
}
.mySlides {width: 100%};
.mySlidesMax {max-width: 100%};
.mywidth {width:95%};
.onlineVideoRight
      {		
      width: 100%;
      max-width:550px;
      }

      .brush-underline{
    position: relative;
    display: inline-block;
}

/* ======================= Brush Underline Text Effects ======================= */
.brush-underline::after{
    content: "";
    position: absolute;
    left: -15%;
    bottom: -10px;
    width: 130%;
    height: 18px;

    background-image: url("/images/brush-underline.svg"); /* or png */
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

/* ======================= Homepage Quick Links ======================= */
:root {
  --quicklink-overlay-color: rgba(239, 116, 40, 0.9);
}

/* LAYOUT: MATCH HEIGHTS */
@media (min-width: 992px) {
  .quicklinks-row {
    align-items: stretch;
  }

  .quicklinks-left,
  .quicklinks-right {
    display: flex;
    flex-direction: column;
  }

  .quicklinks-left .quicklink-card {
    flex: 1;
    min-height: 100%;
  }

  .quicklinks-right .row {
    flex: 1;
  }

  .quicklinks-right .col-6 {
    display: flex;
  }

  .quicklinks-right .quicklink-card {
    flex: 1;
    min-height: 100%;
  }
}

/* QUICKLINK CARD */
.quicklink-card {
  position: relative;
  display: block;
  transition: transform 0.3s ease;
  background-color: transparent;
}

.quicklink-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  backface-visibility: hidden;
}

.quicklink-default {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}

.quicklink-default::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  z-index: -1;
}

.quicklink-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 3;
  display: flex;
  transition: opacity 0.35s ease;
  background-color: var(--quicklink-overlay-color);
}

.quicklink-content {
  transform: translateY(20px);
  transition: transform 0.35s ease;
}

/* HOVER EFFECTS */
.quicklink-card:hover .quicklink-overlay {
  opacity: 1;
}

.quicklink-card:hover .quicklink-image {
  transform: scale(1.08);
}

.quicklink-card:hover .quicklink-content {
  transform: translateY(0);
}

.quicklink-card:hover .quicklink-default {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.quicklink-card:hover {
  transform: translateY(-4px);
}

/* ======================= Breadcrumb Links ======================= */

/* Default breadcrumb link */
.breadcrumb a {
  color: #0d6efd; /* your brand color */
  text-decoration: none;
}

/* Hover state */
.breadcrumb a:hover {
  color: #0a58ca;
  text-decoration: underline;
}

/* Active (current page) */
.breadcrumb-item.active {
  color: #6c757d; /* muted gray */
}

/* ======================= Image Accents ======================= */

.image-accent {
  position: relative;
  display: block;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1rem;
}

/* Accent layer */
.image-accent::before {
  content: "";
  position: absolute;
  top: 8px;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  z-index: 1;
}

/* Inner wrapper keeps image above accent */
.image-accent-inner {
  position: relative;
  z-index: 2;
  border-radius: 1rem;
}

/* Image */
.image-accent img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

/* Direction modifiers - mobile default */
.image-accent-left::before {
  left: -8px;
}

.image-accent-right::before {
  right: -8px;
}

/* Color modifiers */
.image-accent-orange::before {
  background-color: #f57c00;
}

.image-accent-teal::before {
  background-color: #008080;
}

/* Medium screens */
@media (min-width: 768px) {
  .image-accent::before {
    top: 12px;
  }

  .image-accent-left::before {
    left: -12px;
  }

  .image-accent-right::before {
    right: -12px;
  }
}

/* Large screens */
@media (min-width: 992px) {
  .image-accent::before {
    top: 15px;
  }

  .image-accent-left::before {
    left: -15px;
  }

  .image-accent-right::before {
    right: -15px;
  }
}