:root{
  --navy:#7A5A17;        /* deep gold-bronze (was navy) */
  --navy-deep:#3D2B0C;   /* deep espresso-gold (was navy-deep) */
  --canvas:#FFF9EA;      /* light gold canvas (was purple-ish canvas) */
  --mustard:#F2C14E;     /* bright gold accent */
  --rust:#C4881E;        /* warm amber-copper accent */
  --gold-shine:#FFE8A3;  /* pale shine highlight */

}

body{
  font-family:'Work Sans', sans-serif;
  background:var(--canvas);
  color:var(--navy-deep);
}

h1, h2, h3, .tag-label, .cat-num{
  font-family:'Oswald', sans-serif;
  text-transform:uppercase;
  letter-spacing:0.03em;
}

/* ===== TOP UTILITY BAR ===== */
.topbar{
  background:var(--navy-deep);
  color:#F0E4C0;
  font-size:0.8rem;
  padding:6px 0;
}
.topbar a{
  color:#F0E4C0;
  text-decoration:none;
  margin-right:18px;
}
.topbar a:hover{ color:var(--mustard); }
.topbar-links a{ margin-right:0; margin-left:18px; }

/* ===== NAVBAR ===== */
.main-navbar{
  background:var(--navy);
  border-bottom:3px dashed var(--mustard);
}
.main-navbar .navbar-brand{
  color:var(--canvas);
  font-weight:700;
  font-size:1.2rem;
}
.main-navbar .nav-link{
  color:var(--canvas);
  font-size:0.82rem;
  font-weight:500;
  letter-spacing:0.04em;
  margin-left:8px;
  position:relative;
}
.main-navbar .nav-link::after{
  content:'';
  position:absolute;
  left:0; bottom:0;
  width:0%; height:2px;
  background:var(--mustard);
  transition:width .25s ease;
}
.main-navbar .nav-link:hover::after{ width:100%; }
.main-navbar .nav-link:hover{ color:var(--mustard); }

/* ===== NAV DROPDOWN ===== */
.main-navbar .dropdown-menu{
  background:var(--navy);
  border:1px solid var(--mustard);
  border-radius:4px;
  max-height:340px;
  overflow-y:auto;
  min-width:220px;
}
.main-navbar .dropdown-item{
  color:var(--canvas);
  font-size:0.85rem;
  padding:8px 16px;
  text-transform:none;
  letter-spacing:normal;
}
.main-navbar .dropdown-item:hover,
.main-navbar .dropdown-item:focus{
  background:var(--mustard);
  color:var(--navy-deep);
}

/* ===== HERO CHIP ROW ===== */
.hero-chip-row{
  display:flex;
  flex-wrap:nowrap;
  gap:10px;
  overflow-x:auto;
  padding:22px 0 6px;
  margin-top:10px;
  border-top:1px dashed rgba(255,249,234,0.3);
  scrollbar-width:thin;
}
.hero-chip-row::-webkit-scrollbar{ height:5px; }
.hero-chip-row::-webkit-scrollbar-thumb{ background:var(--mustard); border-radius:3px; }
.hero-chip{
  flex:0 0 auto;
  background:rgba(255,249,234,0.12);
  border:1px solid rgba(242,193,78,0.55);
  color:var(--canvas);
  font-size:0.78rem;
  text-transform:uppercase;
  letter-spacing:0.04em;
  padding:8px 16px;
  border-radius:20px;
  text-decoration:none;
  white-space:nowrap;
  transition:all .2s ease;
  opacity:0;
  transform:translateY(10px);
  animation:fadeUp .5s ease forwards;
}
.hero-chip:hover{
  background:var(--mustard);
  color:var(--navy-deep);
  border-color:var(--mustard);
}

/* ===== BANNER CAROUSEL ===== */
.banner-carousel img{
  max-height:460px;
  width:100%;
  object-fit:cover;
  transform:scale(1.02);
  transition:transform 6s ease;
}
.banner-carousel .carousel-item.active img{
  transform:scale(1.08);
}
.carousel-caption h5{
  background:rgba(61,43,12,0.8);
  display:inline-block;
  padding:8px 18px;
  border-radius:2px;
  font-family:'Oswald', sans-serif;
  text-transform:uppercase;
  letter-spacing:0.05em;
  opacity:0;
  transform:translateY(16px);
  animation:captionUp .7s ease forwards;
  animation-delay:.3s;
}
@keyframes captionUp{
  to{ opacity:1; transform:translateY(0); }
}
.carousel-indicators [data-bs-target]{
  background-color:var(--mustard);
}

/* ===== ENTRANCE / SCROLL ANIMATIONS ===== */
.fade-up{
  opacity:0;
  transform:translateY(18px);
  animation:fadeUp .7s ease forwards;
}
@keyframes fadeUp{
  to{ opacity:1; transform:translateY(0); }
}

.reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* ===== SECTION BACKGROUND IMAGE + OVERLAY ===== */
.section-bg{
  position:relative;
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
  overflow:hidden;
}
.section-overlay{
  position:absolute;
  inset:0;
  background:rgba(255,249,234,0.93);
  z-index:1;
}
.category-section.section-bg .section-overlay{
  background:rgba(255,249,234,0.9);
}
.directory-section.section-bg .section-overlay,
.visit-section.section-bg .section-overlay{
  background:rgba(255,249,234,0.9);
}
.section-content{
  position:relative;
  z-index:2;
}
@media (max-width:768px){
  .section-bg{ background-attachment:scroll; }
}

.hero-strip{
  background:var(--navy);
  color:var(--canvas);
  padding:36px 0;
  border-bottom:3px solid var(--mustard);
}
.eyebrow{
  color:var(--mustard);
  font-size:0.8rem;
  letter-spacing:0.15em;
  font-weight:600;
  text-transform:uppercase;
  margin-bottom:10px;
}
.hero-title{
  font-size:2.1rem;
  line-height:1.1;
  margin-bottom:8px;
}
.hero-text{
  font-size:1rem;
  color:#F0E4C0;
  max-width:520px;
  margin-bottom:0;
}
.btn-cta{
  background:var(--mustard);
  color:var(--navy-deep);
  font-weight:700;
  text-transform:uppercase;
  font-size:0.85rem;
  letter-spacing:0.05em;
  padding:12px 26px;
  border-radius:2px;
  border:2px solid var(--mustard);
  transition:all .2s ease;
  white-space:nowrap;
}
.btn-cta:hover{
  background:transparent;
  color:var(--mustard);
  border-color:var(--mustard);
}

/* ===== STORE DIRECTORY ===== */
.directory-section{
  padding:70px 0 60px;
}
.directory-tile{
  display:block;
  text-decoration:none;
  transition:transform .3s ease, box-shadow .3s ease;
  border-radius:6px;
}
.directory-tile:hover{
  transform:translateY(-6px) scale(1.03);
  box-shadow:0 16px 30px rgba(122,90,23,0.25);
}
.directory-tile img{
  width:100%;
  height:auto;
  border-radius:6px;
}

/* ===== CATEGORY SECTIONS ===== */
.category-section{
  padding:60px 0 70px;
}
.category-section.alt-bg{
  background:#F6ECD1;
}
.category-head{
  border-bottom:3px solid var(--navy);
  padding-bottom:14px;
  margin-bottom:32px;
  gap:12px;
}
.cat-num{
  font-size:0.8rem;
  color:var(--rust);
  letter-spacing:0.15em;
  display:block;
  margin-bottom:6px;
}
.category-head h2{
  font-size:1.9rem;
  color:var(--navy-deep);
  margin:0;
}
.cat-desc{
  color:#6b6250;
  font-size:0.9rem;
  max-width:320px;
  margin:0;
}

/* ===== PRODUCT CARD ===== */
.product-card{
  background:#fff;
  border-radius:6px;
  overflow:hidden;
  border:1px solid #E9DBB2;
  position:relative;
  transition:transform .3s ease, box-shadow .3s ease;
  height:100%;
  opacity:0;
  transform:translateY(24px);
  animation:cardIn .6s ease forwards;
}
@keyframes cardIn{
  to{ opacity:1; transform:translateY(0); }
}
.product-card:hover{
  transform:translateY(-8px);
  box-shadow:0 16px 30px rgba(122,90,23,0.22);
}
.product-card:hover .product-img{
  transform:scale(1.06);
}
.product-card .product-img{
  transition:transform .4s ease;
}
.product-card .punch{
  position:absolute;
  top:10px; left:10px;
  width:14px; height:14px;
  border-radius:50%;
  background:var(--canvas);
  border:2px solid var(--navy);
  z-index:2;
}
.product-card .product-img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  display:block;
  background:#EFE4C4;
}
.product-card .product-info{
  padding:14px 16px 18px;
  border-top:2px dashed #E7D6A3;
}
.product-card .cat-mini{
  font-size:0.7rem;
  color:var(--rust);
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-weight:600;
  margin-bottom:4px;
  display:block;
}
.product-card h4{
  font-family:'Work Sans', sans-serif;
  font-weight:500;
  font-size:0.95rem;
  margin-bottom:6px;
  color:var(--navy-deep);
  text-transform:none;
  letter-spacing:normal;
}
.product-card .price{
  font-family:'Oswald', sans-serif;
  font-weight:600;
  font-size:1rem;
  color:var(--navy);
}
.product-card .view-btn{
  display:inline-block;
  margin-top:10px;
  font-size:0.75rem;
  text-transform:uppercase;
  letter-spacing:0.05em;
  color:var(--navy);
  border-bottom:1px solid var(--navy);
  text-decoration:none;
  padding-bottom:2px;
}
.product-card .view-btn:hover{
  color:var(--rust);
  border-color:var(--rust);
}

/* ===== FEATURE STRIP ===== */
.feature-strip{
  background:var(--navy-deep);
  color:var(--canvas);
  padding:60px 0;
}
.feature-strip h3{
  font-size:1.15rem;
  color:var(--mustard);
  margin-bottom:10px;
}
.feature-strip p{
  color:#F0E4C0;
  font-size:0.92rem;
  margin:0 auto;
  max-width:320px;
}

/* ===== VISIT US ===== */
.visit-section{
  padding:70px 0;
}
.visit-list{
  list-style:none;
  padding:0;
  margin-top:18px;
}
.visit-list li{
  padding:8px 0;
  border-bottom:1px dashed #E7D6A3;
  font-size:0.92rem;
}
.map-placeholder{
  background:#E9DBB2;
  border:2px dashed var(--navy);
  border-radius:6px;
  min-height:260px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--navy);
  font-family:'Oswald', sans-serif;
  text-transform:uppercase;
  letter-spacing:0.05em;
  font-size:0.9rem;
}

/* ===== FOOTER ===== */
.site-footer{
  background:
    radial-gradient(ellipse at top left, rgba(242,193,78,0.08), transparent 55%),
    linear-gradient(160deg, var(--navy-deep) 0%, #2a1e08 55%, var(--navy-deep) 100%);
  color:#D9C79A;
  padding:56px 0 24px;
  font-size:0.88rem;
  position:relative;
  overflow:hidden;
}
.footer-pattern{
  position:absolute;
  inset:0;
  opacity:0.35;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23F2C14E' stroke-width='1' stroke-opacity='0.25'%3E%3Cpath d='M30 2 L58 30 L30 58 L2 30 Z'/%3E%3Ccircle cx='30' cy='30' r='3' fill='%23F2C14E' fill-opacity='0.3' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
  background-size:60px 60px;
}
.footer-brand{
  color:var(--gold-shine);
  font-family:'Oswald', sans-serif;
  font-weight:600;
  letter-spacing:0.05em;
  text-transform:uppercase;
  font-size:1.05rem;
}
.footer-heading{
  color:var(--mustard);
  font-family:'Oswald', sans-serif;
  text-transform:uppercase;
  letter-spacing:0.05em;
  font-size:0.9rem;
  margin-bottom:14px;
  position:relative;
  display:inline-block;
  padding-bottom:6px;
}
.footer-heading::after{
  content:'';
  position:absolute;
  left:0; bottom:0;
  width:32px; height:2px;
  background:linear-gradient(90deg, var(--mustard), transparent);
}
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-links li{ margin-bottom:8px; }
.footer-links a{
  color:#D9C79A;
  text-decoration:none;
  transition:color .2s ease, padding-left .2s ease;
}
.footer-links a::before{
  content:'›';
  margin-right:6px;
  color:var(--mustard);
  opacity:0;
  transition:opacity .2s ease;
}
.footer-links a:hover{
  color:var(--mustard);
  padding-left:2px;
}
.footer-links a:hover::before{ opacity:1; }
.footer-text{ color:#D9C79A; margin-bottom:6px; }
.footer-contact-line a{
  color:#D9C79A;
  text-decoration:none;
  transition:color .2s ease;
}
.footer-contact-line a:hover{ color:var(--mustard); }
.footer-icon{ margin-right:4px; }

/* Social icon row */
.footer-social{
  display:flex;
  gap:10px;
  margin-top:14px;
}
.footer-social-icon{
  width:34px; height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold-shine);
  background:rgba(242,193,78,0.1);
  border:1px solid rgba(242,193,78,0.4);
  transition:all .25s ease;
}
.footer-social-icon:hover{
  background:var(--mustard);
  color:var(--navy-deep);
  transform:translateY(-3px);
  box-shadow:0 6px 16px rgba(242,193,78,0.4);
}

/* Gradient divider replacing the old <hr> */
.footer-rule{
  height:1px;
  margin:34px 0 20px;
  background:linear-gradient(90deg, transparent, #5C4419 15%, var(--mustard) 50%, #5C4419 85%, transparent);
  opacity:0.7;
}

/* Bottom row: copyright + Tripstar credit */
.footer-bottom{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.footer-copyright{
  color:#B7A578;
  font-size:0.78rem;
  margin:0;
  max-width:640px;
}
.tripstar-credit{
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  background:linear-gradient(145deg, #fffdf6, #f3e6c4);
  border:1px solid rgba(242,193,78,0.6);
  border-radius:30px;
  padding:4px 12px 4px 14px;
  transition:transform .25s ease, box-shadow .25s ease;
  flex-shrink:0;
}
.tripstar-credit span{
  color:#5C4419;
  font-size:0.72rem;
  text-transform:uppercase;
  letter-spacing:0.05em;
  font-weight:600;
  white-space:nowrap;
}
.tripstar-credit img{
  display:block;
  height:26px;
  width:auto;
  border-radius:4px;
}
.tripstar-credit:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 22px rgba(242,193,78,0.45);
}


/* ===== RESPONSIVE ===== */
@media (max-width:991px){
  .main-navbar .navbar-collapse{
    background:var(--navy);
    margin-top:12px;
    padding:14px;
    border-radius:4px;
  }
  .main-navbar .nav-link{ margin:6px 0; }
}
@media (max-width:768px){
  .hero-title{ font-size:1.7rem; }
  .category-head{ flex-direction:column; align-items:flex-start; }
  .cat-desc{ text-align:left; max-width:100%; }
  .hero-strip .text-lg-end{ text-align:left !important; margin-top:16px; }
}

/* ===================================================================
   GOLD THEME — EXTRA ATTRACTIVE / ANIMATED FLOURISHES
   =================================================================== */

/* Shimmering gold gradient text for the hero title */
.hero-title{
  background:linear-gradient(90deg, var(--gold-shine) 0%, var(--mustard) 25%, #fff6dd 50%, var(--mustard) 75%, var(--gold-shine) 100%);
  background-size:250% auto;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:shineText 6s linear infinite, fadeUp .7s ease forwards;
}
@keyframes shineText{
  to{ background-position:-250% center; }
}

/* Glowing, pulsing call-to-action button */
.btn-cta{
  position:relative;
  overflow:hidden;
  box-shadow:0 0 0 rgba(242,193,78,0.6);
  animation:ctaPulse 2.4s ease-in-out infinite;
}
@keyframes ctaPulse{
  0%,100%{ box-shadow:0 0 0px rgba(242,193,78,0.5); }
  50%{ box-shadow:0 0 18px rgba(242,193,78,0.85); }
}
.btn-cta::before{
  content:'';
  position:absolute;
  top:0; left:-120%;
  width:60%; height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform:skewX(-20deg);
  animation:ctaSweep 3.2s ease-in-out infinite;
}
@keyframes ctaSweep{
  0%{ left:-120%; }
  55%{ left:130%; }
  100%{ left:130%; }
}

/* Gold divider glow under the navbar */
.main-navbar{
  box-shadow:0 2px 18px rgba(242,193,78,0.35);
}

/* Sparkle/shine sweep across product cards on hover */
.product-card{
  position:relative;
  isolation:isolate;
}
.product-card::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(115deg, transparent 40%, rgba(255,232,163,0.55) 50%, transparent 60%);
  background-size:250% 250%;
  background-position:150% 150%;
  opacity:0;
  transition:opacity .25s ease;
  pointer-events:none;
  z-index:3;
}
.product-card:hover::after{
  opacity:1;
  animation:cardShine 1s ease forwards;
}
@keyframes cardShine{
  from{ background-position:150% 150%; }
  to{ background-position:-50% -50%; }
}

/* Gentle floating animation for the hero chip row */
.hero-chip{
  animation:fadeUp .5s ease forwards, chipFloat 4s ease-in-out infinite;
}
@keyframes chipFloat{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-4px); }
}

/* Glow ring around the logo */
.navbar-brand img{
  border-radius:50%;
  box-shadow:0 0 0 3px rgba(242,193,78,0.35), 0 0 14px rgba(242,193,78,0.55);
  transition:box-shadow .3s ease, transform .3s ease;
}
.navbar-brand:hover img{
  transform:rotate(8deg) scale(1.08);
  box-shadow:0 0 0 3px rgba(242,193,78,0.6), 0 0 22px rgba(242,193,78,0.85);
}

/* Animated gold underline for section headings */
.category-head h2, .cat-num{
  position:relative;
}
.category-head{
  border-bottom:3px solid var(--navy);
  position:relative;
}
.category-head::after{
  content:'';
  position:absolute;
  left:0; bottom:-3px;
  height:3px; width:70px;
  background:linear-gradient(90deg, var(--mustard), var(--gold-shine));
  animation:underlineGrow 1.4s ease forwards;
}
@keyframes underlineGrow{
  from{ width:0; }
  to{ width:70px; }
}

/* Subtle animated gold gradient background behind the feature strip */
.feature-strip{
  background:linear-gradient(120deg, var(--navy-deep), #4a3712, var(--navy-deep));
  background-size:200% 200%;
  animation:bgDrift 12s ease-in-out infinite;
}
@keyframes bgDrift{
  0%,100%{ background-position:0% 50%; }
  50%{ background-position:100% 50%; }
}
.feature-strip h3{
  position:relative;
  display:inline-block;
}
.feature-strip h3::after{
  content:'✦';
  color:var(--mustard);
  margin-left:8px;
  display:inline-block;
  animation:twinkle 1.8s ease-in-out infinite;
}
@keyframes twinkle{
  0%,100%{ opacity:0.3; transform:scale(0.8); }
  50%{ opacity:1; transform:scale(1.15); }
}

/* Directory tiles: gold ring on hover */
.directory-tile{
  border:2px solid transparent;
}
.directory-tile:hover{
  border-color:var(--mustard);
}

/* Visit section map placeholder: soft gold glow */
.map-placeholder{
  animation:glowBorder 3s ease-in-out infinite;
}
@keyframes glowBorder{
  0%,100%{ box-shadow:inset 0 0 0 rgba(242,193,78,0.3); }
  50%{ box-shadow:inset 0 0 25px rgba(242,193,78,0.25); }
}

/* Footer top edge gold shimmer line */
.site-footer{
  position:relative;
}
.site-footer::before{
  content:'';
  position:absolute;
  top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, transparent, var(--mustard), var(--gold-shine), var(--mustard), transparent);
  background-size:200% 100%;
  animation:shineText 5s linear infinite;
}

/* ===== EMBEDDED MAP ===== */
.map-embed-wrap{
  border-radius:8px;
  overflow:hidden;
  border:2px solid var(--mustard);
  box-shadow:0 12px 30px rgba(122,90,23,0.25);
  position:relative;
  transition:box-shadow .3s ease, transform .3s ease;
}
.map-embed-wrap:hover{
  box-shadow:0 16px 36px rgba(242,193,78,0.5);
  transform:translateY(-3px);
}
.map-embed{
  display:block;
  filter:sepia(12%) saturate(115%);
}
.map-directions-btn{
  display:block;
  text-align:center;
  border-radius:0;
  animation:none;
  box-shadow:none;
}
.map-directions-btn::before{ display:none; }

@media (max-width:576px){
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
  .tripstar-credit{ align-self:flex-start; }
}

/* ===================================================================
   CONTACT PAGE — PAGE BANNER
   =================================================================== */
.page-banner{
  position:relative;
  min-height:340px;
  display:flex;
  align-items:center;
  background-size:cover;
  background-position:center;
  overflow:hidden;
}
.page-banner-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, rgba(61,43,12,0.92), rgba(122,90,23,0.75));
}
.page-banner-content{
  position:relative;
  z-index:2;
  color:var(--canvas);
  padding:60px 0;
}
.page-banner-title{
  font-size:2.4rem;
  line-height:1.1;
  margin-bottom:10px;
  background:linear-gradient(90deg, var(--gold-shine) 0%, var(--mustard) 25%, #fff6dd 50%, var(--mustard) 75%, var(--gold-shine) 100%);
  background-size:250% auto;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:shineText 6s linear infinite, fadeUp .7s ease forwards;
}
.page-banner-text{
  font-size:1.02rem;
  color:#F0E4C0;
  max-width:560px;
  margin-bottom:0;
}
@media (max-width:768px){
  .page-banner{ min-height:260px; }
  .page-banner-title{ font-size:1.8rem; }
}

/* ===== CONTACT DETAIL CARDS ===== */
.contact-details-section{
  padding:70px 0 60px;
}
.contact-card{
  background:#fff;
  border:1px solid #E9DBB2;
  border-radius:10px;
  padding:28px 22px;
  height:100%;
  text-align:center;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.contact-card:hover{
  transform:translateY(-8px);
  box-shadow:0 16px 30px rgba(122,90,23,0.2);
  border-color:var(--mustard);
}
.contact-card-icon{
  font-size:1.8rem;
  width:56px; height:56px;
  margin:0 auto 14px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(145deg, var(--gold-shine), var(--mustard));
  box-shadow:0 6px 16px rgba(242,193,78,0.4);
}
.contact-card h4{
  font-family:'Oswald', sans-serif;
  text-transform:uppercase;
  letter-spacing:0.04em;
  font-size:1rem;
  color:var(--navy-deep);
  margin-bottom:10px;
}
.contact-card p{
  color:#6b6250;
  font-size:0.92rem;
  margin:0;
}
.contact-card p a{
  color:var(--rust);
  text-decoration:none;
  font-weight:600;
}
.contact-card p a:hover{ color:var(--navy); }

/* Active nav link state */
.main-navbar .nav-link.active{
  color:var(--mustard);
}
.main-navbar .nav-link.active::after{ width:100%; }
