#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 3;
}

body {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: "Avenir Next", sans-serif;
    /* background-color: #f9f9f9; */
}

/* CUSTOM FONT SIZES */
body p {
    font-size: 18px !important;
}
.nav-link {
    font-size: 14px;
}
.footer-link {
    font-size: 16px;
}

h2 {
    font-size: 1.5rem;
}
h3 {
    font-size: 1.2rem;
}
h4 {
    font-size: 1.2rem;
}


.zoom-block {
  overflow: hidden;
  position: relative;
}

.zoom-block .zoom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* ensures it fills container */
  transition: transform 0.4s ease;
  display: block;
}

.zoom-block:hover .zoom-img {
  transform: scale(1.05); /* zoom in */
}


/* Change underline color globally */
.nav-underline .nav-link.active {
  border-bottom-color: #a30d27 !important; /* your custom color */
}

/* Optional: change hover too */
.nav-underline .nav-link:hover {
  border-bottom-color: #a30d27;
}


.sheaffer-red {
    color: #a30d27 !important;
}
.bg-sheaffer-red {
    background-color: #a30d27 !important;
}
.text-sheaffer-red {
    color: #a30d27 !important;
}

.border-sheaffer-red {
    border-color: #a30d27 !important;
}
.btn-sheaffer-red {
  /*color: #fff;*/
  /*background-color: #a30d27;*/
  border-color: #a30d27;
}

.btn-sheaffer-red:hover {
  color: #fff;
  background-color: #870a20; /* darker version of base */
  border-color: #78081c;
}

.btn-sheaffer-red:focus,
.btn-sheaffer-red.focus {
  color: #fff;
  background-color: #870a20;
  border-color: #78081c;
  box-shadow: 0 0 0 0.25rem rgba(163, 13, 39, 0.5);
}

.btn-sheaffer-red:active,
.btn-sheaffer-red.active,
.show > .btn-sheaffer-red.dropdown-toggle {
  color: #fff;
  background-color: #78081c;
  border-color: #5f0616;
}

.btn-sheaffer-red:active:focus,
.btn-sheaffer-red.active:focus,
.show > .btn-sheaffer-red.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(163, 13, 39, 0.5);
}

.btn-sheaffer-red.disabled,
.btn-sheaffer-red:disabled {
  color: #fff;
  background-color: #a30d27;
  border-color: #a30d27;
  opacity: 0.65;
}

.bg-luxco-gradient {
  background: linear-gradient(to bottom, #001b45 60%, #000a1a);
}
.bg-luxco-gradient-dark {
  background: linear-gradient(to bottom, #000a1a 5%, #001b45);
}
.text-luxco-gold {
    color: #e5d0b1 !important;
}
.text-luxco-blue {
    color: #001b45 !important;
}

/* Custom Luxco Gold Button */
.btn-luxco-gold {
    color: #000; /* Text color, adjust for contrast */
    background-color: #e5d0b1;
    border: 1px solid #d2b98f; /* Slightly darker border for depth */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-luxco-gold:hover,
.btn-luxco-gold:focus {
    background-color: #d2b98f; /* Darker shade on hover */
    color: #000; /* Keep text readable */
    transform: translateY(-2px); /* Subtle lift effect */
}

.btn-luxco-gold:active {
    background-color: #c9a872; /* Even darker on click */
    transform: translateY(0);
}

.btn-luxco-gold:disabled {
    background-color: #f0e1cc; /* Lighter disabled color */
    border-color: #e5d0b1;
    color: #aaa;
    cursor: not-allowed;
}

a.nav-link { color: rgb(163, 13, 39) !important; }
a.nav-link:hover, a.nav-link.active, .dropdown-item:hover { color: rgb(163, 13, 39) !important; font-weight: bold !important; }

.dropdown-item.active, .dropdown-item:active {
    color: rgb(163, 13, 39) !important; /*var(--bs-dropdown-link-active-color);*/
    text-decoration: none;
    background-color: unset !important; /*var(--bs-dropdown-link-active-bg);*/
    font-weight: bold !important;
}

.dropdown-menu {
  margin-top:-10px;
}
/* ===== Desktop (≥992px) — Show on hover ===== */
@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu, .mega-dropdown:hover > .dropdown-menu {
    display: block;
  }

  .mega-dropdown .dropdown-menu {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    padding-top: 0.5rem;
  }
}


/*
@media (max-width: 991.98px) {
  .mega-dropdown .dropdown-menu {
    display: none;
    position: static;
    width: 100%;
    box-shadow: none;
    padding: 1rem;
  }

  .mega-dropdown .dropdown-menu.show {
    display: block;
  }

  .mega-dropdown:hover > .dropdown-menu {
    display: none !important;
  }
}
*/


/* ===== Common Styling ===== */
.mega-dropdown .dropdown-menu {
  transition: all 0.3s ease;
}



/* General hover effect for top-level links */
ul.footer > li > a.footer-link:hover, 
ul.footer > li > a.footer-link.active { 
    color: #a30d27 !important; 
    font-weight: bold !important; 
}

/* Disable hover effect only for the ones with .no-hover */
ul.footer > li > a.footer-link.no-hover:hover,
ul.footer > li > a.footer-link.no-hover.active {
    color: inherit !important;
    font-weight: normal !important;
}

/* Hover effect for nested items */
ul.footer ul li a.footer-link:hover,
ul.footer ul li a.footer-link.active { 
    color: #a30d27 !important; 
    font-weight: bold !important; 
}

.bg-body-tertiary {
    --bs-bg-opacity: 1;
    background-color: rgba(43,48,53,1) !important;
    color:#dee2e6 !important;
}
.accordion-button:not(.collapsed) { 
    box-shadow: none; 
    background-color: rgba(43,48,53,1) !important;
    color:#dee2e6 !important;
}
.accordion-button.collapsed { 
    box-shadow: none; 
} 
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* ============ desktop view ============ */
@media all and (min-width: 992px) {

}	
/* ============ desktop view .end// ============ */

/* ============ mobile view ============ */
@media(max-width: 991px){
  .navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse{
    overflow-y: auto;
      max-height: 90vh;
      margin-top:10px;
  }
}
/* ============ mobile view .end// ============ */

.top-10 {
  top: 10% !important;
}


.navbar-toggler:focus {
  /*box-shadow: 0 0 0 0.15rem rgba(229, 208, 177, 0.7);  subtle Luxco gold glow */
  box-shadow: none !important; /* Bootstrap uses box-shadow, not outline */
  outline: none !important;
}
