/* Euclid Fonts */
@font-face {
  font-family: "Euclid";
  src: url("../fonts/EuclidFlexUltralight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Euclid";
  src: url("../fonts/EuclidFlexLight.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Euclid";
  src: url("../fonts/EuclidFlex.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Euclid";
  src: url("../fonts/EuclidFlexMedium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}


/* Avenir Fonts */
@font-face {
  font-family: "AvenirNext";
  src: url("../fonts/FontsFree-Net-Avenir-Next-LT-W04-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "AvenirNext";
  src: url("../fonts/FontsFree-Net-Avenir-Next-W04-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "AvenirNext";
  src: url("../fonts/FontsFree-Net-AvenirLTStd-Heavy.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

/* Avenir Fonts - TTF versions */
@font-face {
  font-family: "AvenirNext";
  src: url("../fonts/FontsFree-Net-Avenir-Next-LT-W04-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "AvenirNext";
  src: url("../fonts/FontsFree-Net-Avenir-Next-W04-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "AvenirNext";
  src: url("../fonts/FontsFree-Net-AvenirLTStd-Heavy.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}


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

body {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'AvenirNext', Sans-serif;
    font-size: 14px;
    font-weight: 400 !important;
}
/* p {
    font-family: 'AvenirNext', Sans-serif;
    font-size: 14px !important;
    font-weight: 400 !important;
} */

.footer-contact-details {
    font-family: "Euclid", Sans-serif;
    font-size: 14px;
    font-weight: 400 !important;
}

.font-euclid {
    font-family: "Euclid", Sans-serif;
}
.font-avenir {
    font-family: "AvenirNext", Sans-serif;
}



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

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

h1.page-title {
  font-size: 1.5rem; /* same as h6 */
}


.navbar-nav li a,
#search-button,
.footer li a {
  font-family: "Euclid", Sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer li a {
  font-weight: 300;
  font-size: 14px !important;
}

.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 */
}


/* Add this CSS */
.collection-col img {
    transition: transform 0.4s; /* Smooth transition for movement */
}

.collection-col a:hover img {
    transform: translateY(5px); /* Moves the image down 5px on hover */
}



.herbelin-blue {
    color: #002245 !important;
    /*#021227*/
}
.bg-herbelin-blue {
    background-color: #001943 !important;
}

 

.text-herbelin-blue {
    color: #002245 !important;
}
.border-herbelin-blue {
    border-color: #002245 !important;
}
.btn-herbelin-blue {
  /*color: #fff;*/
  /*background-color: #002245;*/
  border-color: #002245;
}
.btn-herbelin-blue:hover {
  color: #fff;
  background-color: #021b3a; /* darker version of base */
  border-color: #02172f;
}
.btn-herbelin-blue:focus,
.btn-herbelin-blue.focus {
  color: #fff;
  background-color: #021b3a;
  border-color: #02172f;
  box-shadow: 0 0 0 0.25rem rgba(3, 31, 68, 0.5);
}
.btn-herbelin-blue:active,
.btn-herbelin-blue.active,
.show > .btn-herbelin-blue.dropdown-toggle {
  color: #fff;
  background-color: #02172f;
  border-color: #011224;
}
.btn-herbelin-blue:active:focus,
.btn-herbelin-blue.active:focus,
.show > .btn-herbelin-blue.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(3, 31, 68, 0.5);
}
.btn-herbelin-blue.disabled,
.btn-herbelin-blue:disabled { 
  color: #fff;
  background-color: #002245;
  border-color: #002245;
  opacity: 0.65;
}

.btn-herbelin-blue-inverted {
  color: #fff;                  /* dark blue text */
  background-color: #002245;          /* white background */
  border-color: #002245;           /* dark blue border */
}

.btn-herbelin-blue-inverted:hover {
  color: #02172f;                     /* invert to white text */
  background-color: #fff;       /* dark blue background */
  border-color: #02172f;
}

.btn-herbelin-blue-inverted:focus,
.btn-herbelin-blue-inverted.focus {
  color: #fff;
  background-color: #021b3a;
  border-color: #02172f;
  box-shadow: 0 0 0 0.25rem rgba(3, 31, 68, 0.5);
}

.btn-herbelin-blue-inverted:active,
.btn-herbelin-blue-inverted.active,
.show > .btn-herbelin-blue-inverted.dropdown-toggle {
  color: #02172f;                     /* invert to white text */
  background-color: #fff;       /* dark blue background */
  border-color: #02172f;
}

.btn-herbelin-blue-inverted:active:focus,
.btn-herbelin-blue-inverted.active:focus,
.show > .btn-herbelin-blue-inverted.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(3, 31, 68, 0.5);
}

.btn-herbelin-blue-inverted.disabled,
.btn-herbelin-blue-inverted:disabled { 
  color: #002245;                  /* keep dark blue text */
  background-color: #fff;          /* keep white bg */
  border-color: #002245;
  opacity: 0.65;
}



.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: #021227 !important; }
a.nav-link:hover, a.nav-link.active, .dropdown-item:hover { color: #b8a484 !important; }

a.link-body-emphasis { color: #021227 !important; }
a.link-body-emphasis:hover { color: #b8a484 !important; }


a.nav-link.animated,
a.footer-link.animated {
  position: relative;
  text-decoration: none;
  color: inherit;
  padding-bottom: 4px; /* for spacing from underline */
}

/* Create the animated underline */
a.nav-link.animated::after,
a.footer-link.animated::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0; /* Start drawing from the right side */
  width: 0;
  height: 2px; /* thickness of underline */
  background-color: #b8a484;
  transition: width 0.3s ease, right 0.3s ease;
}

/* On hover - grow underline from right to left */
a.nav-link.animated:hover::after,
a.footer-link.animated:hover::after {
  width: 50%; /* adjust this to control underline length */
  right: 50%; /* keeps the animation from right to left */
}

a.nav-link.draw-center {
  position: relative;
  display: inline-block;
}

a.nav-link.draw-center::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #b8a484;
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

a.nav-link.draw-center:hover::after {
  width: 100%;
}


.dropdown-item.active, .dropdown-item:active {
    color: #021227 !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: 15px !important;
}
*/

/* ===== 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: #b8a484 !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: #002245 !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;
}

.custom-hr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;              /* full viewport width */
}

.custom-hr::before,
.custom-hr::after {
  content: "";
  flex: 1;                  /* line expands to fill space */
  border-top: 3px solid #efefef;
  margin: 0 10px;           /* space between line and image */
}

.custom-hr img {
  /* width: 16px; */
  /* height: 16px; */
  display: block;
}


.video-responsive-container {
    /* Required for the aspect ratio padding trick */
    position: relative;
    
    /* Set the container to take full width up to the max-width (1320px) */
    width: 100%;
    
    /* This padding is the 'magic' that sets the height based on the width.
       For a 16:9 ratio, it is (9 / 16) * 100 = 56.25% */
    padding-bottom: 56.25%; /* (Height / Width) * 100 = (742 / 1320) * 100 ≈ 56.21% */
    
    /* Hide any overflow caused by the iframe potentially bleeding out */
    overflow: hidden; 
}

.video-responsive-container iframe {
    /* Position the iframe absolutely to cover the padded area */
    position: absolute;
    top: 0;
    left: 0;
    
    /* Make the iframe fill the entire container */
    width: 100%;
    height: 100%;
}

/* Update the responsive container class */
.youtube-lite {
    position: relative;
    width: 100%;
    /* 16:9 Aspect Ratio */
    padding-bottom: 56.25%; 
    overflow: hidden; 
    cursor: pointer;
    background-size: cover;
    background-position: center;
    max-width: 1320px; /* From your previous code */
    /* Add a transition for a smoother visual effect */
    transition: filter 0.2s ease-in-out; 
}

/* Play button styling (simple circle with a triangle) */
.youtube-lite .playbtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #ff0000e0;
    border-radius: 50%;
}
.youtube-lite .playbtn:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0; 
    height: 0; 
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid #fff;
    margin-left: 2px;
}

/* Once clicked, hide the button and replace with iframe */
.youtube-lite.active {
    cursor: auto;
}
.youtube-lite.active .playbtn {
    display: none;
}

