body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

p {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
}

a {
  font-family: poppins, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 2px;

}

.btn-1, .btn-2, .btn-3 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 3px;
}

/* ========= PRELOADER (NEW VERSION) ========= */

.preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: #000000;
  z-index: 2147483647 !important; /* max-ish */
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  /* This allows slide animation */
  transform: translateX(0);
}

/* Text behind bars */
.preloader-name {
  position: absolute;
  text-align: center;
  z-index: index 10;
}

.preloader-name span {
  display: block;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
  color: #fff;
}

.preloader-name .accent {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
}

/* Bars layered on top */
.preloader-bars {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 5;
}

/* Each bar container */
.preloader .bar {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Bars fill left → right (unchanged) */
.preloader .inner-bar {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(to bottom, #cdb909, #cdb909);
  
  animation: fillBar 1.5s forwards;
  animation-delay: calc(var(--i) * 0.2s);
}

@keyframes fillBar {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ========= EXIT ANIMATION (SLIDE RIGHT) ========= */

.preloader.exit {
  animation: slideRight 0.8s ease forwards;
}

@keyframes slideRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* Fade after preloader is off screen */
.preloader.done {
  opacity: 0;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

/* ========= MOBILE FONT SIZE ========= */
@media (max-width: 767px) {
  .preloader-name span {
    font-size: 4.5rem;
  }
}


/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body.cs-open {
    overflow: hidden;
  }

  /* REMOVE SNAP BEHAVIOR COMPLETELY */
  body.scroll #cs-navigation {}
  body.scroll #cs-navigation:before {}
  body.scroll #cs-navigation .cs-ul-wrapper {}

  /* NAV NOW SITS NATURALLY UNDER CAROUSEL */
  #cs-navigation {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: clamp(0.75rem, 2vw, 1.5rem);
    border-radius: 0;

    position: relative;   /* ← NOT fixed anymore */
    top: 0;               /* remove floating */
    left: 0;
    transform: none;      /* remove centering snap */

    z-index: 500;
    transition: none;
    margin: 0 !important;
    font-size: clamp(1rem, 2.5vw, 2rem);

  }

  #cs-navigation:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    opacity: 1;

    border-radius: 0; /* remove curved floating nav */

    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    transition: none;
  }

  #cs-navigation.cs-active:before {
    transform: none;
  }

  #cs-navigation.cs-active .cs-toggle {
    transform: rotate(180deg);
  }

  #cs-navigation.cs-active .cs-ul-wrapper {
    transform: scaleY(1);
    transition-delay: 0.15s;
  }

  #cs-navigation.cs-active .cs-li {
    opacity: 1;
    transform: translateY(0);
  }

  #cs-navigation .cs-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
  }

  #cs-navigation .cs-logo {
    width: auto;
    max-width: 12.5rem;
    height: 100%;
    margin: 0 auto 0 0;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 10;
  }

  #cs-navigation .cs-logo img {
    width: clamp(5em, 4vw, 8em);
    object-fit: contain;
    width: 3em;
    height: auto;

  }

  #cs-navigation .cs-toggle {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 0 0 auto;
    background-color: #ffffff;
    border: none;
    border-radius: 0.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    transition: transform 0.6s;
  }

  #cs-navigation .cs-nav {
    order: 3;
  }


  #cs-navigation .cs-contact-group {
    display: none;
    position: relative;
    z-index: 10;
  }

  #cs-navigation .cs-phone {
    font-size: 1em;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, color 0.3s;
  }

  #cs-navigation .cs-phone-icon {
    width: 1.5rem;
    height: auto;
    display: block;
  }

  #cs-navigation .cs-social {
    display: none;
  }

  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }

  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-225deg);
  }

  #cs-navigation .cs-active .cs-line3 {
    opacity: 0;
    bottom: 100%;
  }

  #cs-navigation .cs-box {
    width: clamp(1.5rem, 2vw, 1.75rem);
    height: 1rem;
    position: relative;
  }

  #cs-navigation .cs-line {
    width: 100%;
    height: 2px;
    background-color: #000000;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  #cs-navigation .cs-line1 {
    top: 0;
    transition: transform 0.5s, top 0.3s, left 0.3s;
  }

  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.3s, left 0.3s, transform 0.5s;
  }

  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }

  #cs-navigation .cs-ul-wrapper {
    width: 100%;
    height: auto;
    padding-bottom: 2.4em;
    background-color: #fff;
    border-radius: 0 0 1.5rem 1.5rem;
    position: absolute;
    top: 85%;
    left: 0;
    z-index: -1;
    overflow: hidden;
    transform: scaleY(0);
    transition: transform 0.4s;
    transform-origin: top;
  }

  #cs-navigation .cs-ul {
    width: 100%;
    height: auto;
    max-height: 65vh;
    margin: 0;
    padding: 4rem 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.25rem;
    overflow: auto;
  }

  #cs-navigation .cs-li {
    text-align: center;
    width: 100%;
    margin-right: 0;
    opacity: 0;
    transform: translateY(-70/16rem);
    transition: transform 0.6s, opacity 0.9s;
  }

  #cs-navigation .cs-li:nth-of-type(1) { transition-delay: 0.05s; }
  #cs-navigation .cs-li:nth-of-type(2) { transition-delay: 0.1s; }
  #cs-navigation .cs-li:nth-of-type(3) { transition-delay: 0.15s; }
  #cs-navigation .cs-li:nth-of-type(4) { transition-delay: 0.2s; }
  #cs-navigation .cs-li:nth-of-type(5) { transition-delay: 0.25s; }
  #cs-navigation .cs-li:nth-of-type(6) { transition-delay: 0.3s; }
  #cs-navigation .cs-li:nth-of-type(7) { transition-delay: 0.35s; }
  #cs-navigation .cs-li:nth-of-type(8) { transition-delay: 0.4s; }
  #cs-navigation .cs-li:nth-of-type(9) { transition-delay: 0.45s; }
  #cs-navigation .cs-li:nth-of-type(10){ transition-delay: 0.5s; }
  #cs-navigation .cs-li:nth-of-type(11){ transition-delay: 0.55s; }
  #cs-navigation .cs-li:nth-of-type(12){ transition-delay: 0.6s; }
  #cs-navigation .cs-li:nth-of-type(13){ transition-delay: 0.65s; }

  #cs-navigation .cs-li-link {
    line-height: 1.2em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: inline-block;
    position: relative;
  }

  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary);
  }

  #cs-navigation .cs-li-link:hover {
    color: var(--primary);
  }

  #cs-navigation .cs-button-solid {
    display: none;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cs-navigation .cs-contact-group {
    display: block;
  }
}

/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {

  #cs-navigation .cs-li {
    text-align: center;
    width: 100%;
    display: block;
  }

  #cs-navigation .cs-dropdown {
    color: var(--bodyTextColorWhite);
    position: relative;
  }

  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
    height: auto;
    margin: 0.75rem 0 0 0;
    padding: 0.75rem 0;
    opacity: 1;
    visibility: visible;
  }

  #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
    opacity: 1;
  }

  #cs-navigation .cs-dropdown .cs-li-link {
    position: relative;
    transition: opacity 0.3s;
  }

  #cs-navigation .cs-drop-icon {
    width: 0.9375rem;
    height: auto;
    position: absolute;
    top: 50%;
    right: -1.25rem;
    transform: translateY(-50%);
  }

  #cs-navigation .cs-drop-ul {
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    background-color: var(--primary);
    opacity: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    overflow: hidden;
    transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s, visibility 0.3s;
  }

  #cs-navigation .cs-drop-li {
    list-style: none;
  }

  #cs-navigation .cs-li-link.cs-drop-link {
  font-size: 0.9em;
    color: #fff;
  }
}

/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {

  /* REMOVE SNAP */
  body.scroll #cs-navigation {}

  #cs-navigation {
    width: 100%;
    max-width: none;
    height: 6rem;
    padding: clamp(0.75rem, 2vw, 1.5rem) 0;

    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

    border-radius: 0;

    position: relative; /* ← NOT fixed */
    top: 0;
    left: 0;
    transform: none;

    z-index: 10000;
    transition: none;
    margin: 0 !important;
  }

  #cs-navigation .cs-container {
    width: 100%;
    max-width: 90rem;
    margin: auto;
    box-sizing: border-box;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }

  #cs-navigation .cs-toggle {
    display: none;
  }

  #cs-navigation .cs-logo {
    width: 18.4%;
    max-width: 21.875rem;
    height: 2rem;
    margin: 0 auto 0 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 100;
  }

  #cs-navigation .cs-logo img {
    width: auto;
    height: 100%;
    object-fit: contain;
  }

  #cs-navigation .cs-contact-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }

  #cs-navigation .cs-phone {
    font-size: 1em;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, color 0.3s;
  }

  #cs-navigation .cs-phone-icon {
    width: 1.5rem;
    height: auto;
    display: block;
  }

  #cs-navigation .cs-social {
    height: 2rem;
    opacity: 1;
    display: none;
    visibility: visible;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, visibility 0.3s, height 0.3s;
  }

  #cs-navigation .cs-social-link {
    text-decoration: none;
    width: 2rem;
    height: 2rem;
    background-color: #f7f7f7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
  }

  #cs-navigation .cs-social-link:hover {
    background-color: black;
  }

  #cs-navigation .cs-social-link:hover .cs-social-icon {
    opacity: 1;
    filter: grayscale(1) brightness(10000%);
  }

  #cs-navigation .cs-social-icon {
    width: 0.75rem;
    height: auto;
    opacity: 0.6;
    display: block;
    transition: opacity 0.3s;
  }

  #cs-navigation .cs-ul-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  #cs-navigation .cs-ul {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(1.25rem, 2.6vw, 2.25rem);
  }

  #cs-navigation .cs-li {
    list-style: none;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    flex: none;
  }

  #cs-navigation .cs-li-link {
    /* font-size: 1rem; */
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: block;
    position: relative;
    transition: color 0.3s;
  }

  #cs-navigation .cs-li-link:hover {
    color: var(--primary);
  }

  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary);
  }

  #cs-navigation .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    box-sizing: border-box;
    padding: 0 2rem;
    color: #fff;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }

  #cs-navigation .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #fff;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }

  #cs-navigation .cs-button-solid:hover {
    color: #1a1a1a;
  }

  #cs-navigation .cs-button-solid:hover:before {
    width: 100%;
  }
}

/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #cs-navigation .cs-social {
    display: flex;
  }
}

        
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

p {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
}

a {
  font-family: poppins, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 2px;

}

.btn-1, .btn-2, .btn-3 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 3px;
}




/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body.cs-open {
    overflow: hidden;
  }

  /* REMOVE SNAP BEHAVIOR COMPLETELY */
  body.scroll #cs-navigation {}
  body.scroll #cs-navigation:before {}
  body.scroll #cs-navigation .cs-ul-wrapper {}

  /* NAV NOW SITS NATURALLY UNDER CAROUSEL */
  #cs-navigation {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: clamp(0.75rem, 2vw, 1.5rem);
    border-radius: 0;

    position: relative;   /* ← NOT fixed anymore */
    top: 0;               /* remove floating */
    left: 0;
    transform: none;      /* remove centering snap */

    z-index: 500;
    transition: none;
    margin: 0 !important;
    font-size: clamp(0.95rem, 1.4vw, 1.5rem);

  }

  #cs-navigation:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    opacity: 1;

    border-radius: 0; /* remove curved floating nav */

    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    transition: none;
  }

  #cs-navigation.cs-active:before {
    transform: none;
  }

  #cs-navigation.cs-active .cs-toggle {
    transform: rotate(180deg);
  }

  #cs-navigation.cs-active .cs-ul-wrapper {
    transform: scaleY(1);
    transition-delay: 0.15s;
  }

  #cs-navigation.cs-active .cs-li {
    opacity: 1;
    transform: translateY(0);
  }

  #cs-navigation .cs-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
  }

  #cs-navigation .cs-logo {
    width: auto;
    max-width: 12.5rem;
    height: 100%;
    margin: 0 auto 0 0;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 10;
  }

  #cs-navigation .cs-logo img {
    width: clamp(7.5em, 4vw, 8.5em);
    object-fit: contain;
  }

  #cs-navigation .cs-toggle {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 0 0 auto;
    background-color: #ffffff;
    border: none;
    border-radius: 0.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    transition: transform 0.6s;
  }

  #cs-navigation .cs-nav {
    order: 3;
  }

  #cs-navigation .cs-contact-group {
    display: none;
    position: relative;
    z-index: 10;
  }

  #cs-navigation .cs-phone {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, color 0.3s;
  }

  #cs-navigation .cs-phone-icon {
    width: 1.5rem;
    height: auto;
    display: block;
  }

  #cs-navigation .cs-social {
    display: none;
  }

  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }

  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-225deg);
  }

  #cs-navigation .cs-active .cs-line3 {
    opacity: 0;
    bottom: 100%;
  }

  #cs-navigation .cs-box {
    width: clamp(1.5rem, 2vw, 1.75rem);
    height: 1rem;
    position: relative;
  }

  #cs-navigation .cs-line {
    width: 100%;
    height: 2px;
    background-color: #000000;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  #cs-navigation .cs-line1 {
    top: 0;
    transition: transform 0.5s, top 0.3s, left 0.3s;
  }

  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.3s, left 0.3s, transform 0.5s;
  }

  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }

  #cs-navigation .cs-ul-wrapper {
    width: 100%;
    height: auto;
    padding-bottom: 2.4em;
    background-color: #fff;
    border-radius: 0 0 1.5rem 1.5rem;
    position: absolute;
    top: 85%;
    left: 0;
    z-index: 1;
    overflow: hidden;
    transform: scaleY(0);
    transition: transform 0.4s;
    transform-origin: top;
  }

  #cs-navigation .cs-ul {
    width: 100%;
    height: auto;
    max-height: 65vh;
    margin: 0;
    padding: 4rem 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.25rem;
    overflow: auto;
  }

  #cs-navigation .cs-li {
    text-align: center;
    width: 100%;
    margin-right: 0;
    opacity: 0;
    transform: translateY(-70/16rem);
    transition: transform 0.6s, opacity 0.9s;
  }

  #cs-navigation .cs-li:nth-of-type(1) { transition-delay: 0.05s; }
  #cs-navigation .cs-li:nth-of-type(2) { transition-delay: 0.1s; }
  #cs-navigation .cs-li:nth-of-type(3) { transition-delay: 0.15s; }
  #cs-navigation .cs-li:nth-of-type(4) { transition-delay: 0.2s; }
  #cs-navigation .cs-li:nth-of-type(5) { transition-delay: 0.25s; }
  #cs-navigation .cs-li:nth-of-type(6) { transition-delay: 0.3s; }
  #cs-navigation .cs-li:nth-of-type(7) { transition-delay: 0.35s; }
  #cs-navigation .cs-li:nth-of-type(8) { transition-delay: 0.4s; }
  #cs-navigation .cs-li:nth-of-type(9) { transition-delay: 0.45s; }
  #cs-navigation .cs-li:nth-of-type(10){ transition-delay: 0.5s; }
  #cs-navigation .cs-li:nth-of-type(11){ transition-delay: 0.55s; }
  #cs-navigation .cs-li:nth-of-type(12){ transition-delay: 0.6s; }
  #cs-navigation .cs-li:nth-of-type(13){ transition-delay: 0.65s; }

  #cs-navigation .cs-li-link {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.2em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: inline-block;
    position: relative;
  }

  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary);
  }

  #cs-navigation .cs-li-link:hover {
    color: var(--primary);
  }

  #cs-navigation .cs-button-solid {
    display: none;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cs-navigation .cs-contact-group {
    display: block;
  }
}

/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {

  #cs-navigation .cs-li {
    text-align: center;
    width: 100%;
    display: block;
  }

  #cs-navigation .cs-dropdown {
    color: var(--bodyTextColorWhite);
    position: relative;
  }

  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
    height: auto;
    margin: 0.75rem 0 0 0;
    padding: 0.75rem 0;
    opacity: 1;
    visibility: visible;
  }

  #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
    opacity: 1;
  }

  #cs-navigation .cs-dropdown .cs-li-link {
    position: relative;
    transition: opacity 0.3s;
  }

  #cs-navigation .cs-drop-icon {
    width: 0.9375rem;
    height: auto;
    position: absolute;
    top: 50%;
    right: -1.25rem;
    transform: translateY(-50%);
  }

  #cs-navigation .cs-drop-ul {
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    background-color: var(--primary);
    opacity: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    overflow: hidden;
    transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s, visibility 0.3s;
  }

  #cs-navigation .cs-drop-li {
    list-style: none;
  }

  #cs-navigation .cs-li-link.cs-drop-link {
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    color: #fff;
  }
}

/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {

  /* REMOVE SNAP */
  body.scroll #cs-navigation {}

  #cs-navigation {
    width: 100%;
    max-width: none;
    /* height: 6rem; */
    padding: clamp(0.75rem, 2vw, 1.5rem) 0;

    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

    border-radius: 0;

    position: relative; /* ← NOT fixed */
    top: 0;
    left: 0;
    transform: none;

    z-index: 10000;
    transition: none;
    margin: 0 !important;
    font-size: clamp(1rem, 2.5vw, 1.2rem);

  }

  #cs-navigation .cs-container {
    width: 100%;
    max-width: 90rem;
    margin: auto;
    box-sizing: border-box;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }

  #cs-navigation .cs-toggle {
    display: none;
  }

  #cs-navigation .cs-logo {
    width: 18.4%;
    max-width: 21.875rem;
    height: 2rem;
    margin: 0 auto 0 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 100;
  }

  #cs-navigation .cs-logo img {
    width: clamp(5em, 4vw, 8em);
    padding-top: 2rem;
    height: auto;
    object-fit: contain;
  }

  #cs-navigation .cs-contact-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;

  }

  #cs-navigation .cs-phone {
    font-size: 1em;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, color 0.3s;
    padding-top: 2rem;
  }

  #cs-navigation .cs-phone-icon {
    width: 1.5em;
    height: auto;
    display: block;
    
  }

  #cs-navigation .cs-social {
    height: 2rem;
    opacity: 1;
    display: none;
    visibility: visible;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, visibility 0.3s, height 0.3s;
    padding-top: 2rem;

  }

  #cs-navigation .cs-social-link {
    text-decoration: none;
    width: 2rem;
    height: 2rem;
    background-color: #f7f7f7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
  }

  #cs-navigation .cs-social-link:hover {
    background-color: black;
  }

  #cs-navigation .cs-social-link:hover .cs-social-icon {
    opacity: 1;
    filter: grayscale(1) brightness(10000%);
  }

  #cs-navigation .cs-social-icon {
    width: 0.75rem;
    height: auto;
    opacity: 0.6;
    display: block;
    transition: opacity 0.3s;
  }

  #cs-navigation .cs-ul-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  #cs-navigation .cs-ul {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(1.25rem, 2.6vw, 2.25rem);
  }

  #cs-navigation .cs-li {
    list-style: none;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    flex: none;
  }

  #cs-navigation .cs-li-link {
    font-size: 1em;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: block;
    position: relative;
    transition: color 0.3s;
  }

  #cs-navigation .cs-li-link:hover {
    color: var(--primary);
  }

  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary);
  }

  #cs-navigation .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    box-sizing: border-box;
    padding: 0 2rem;
    color: #fff;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }

  #cs-navigation .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #fff;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }

  #cs-navigation .cs-button-solid:hover {
    color: #1a1a1a;
  }

  #cs-navigation .cs-button-solid:hover:before {
    width: 100%;
  }
}

/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {

  #cs-navigation .cs-social {
    display: flex;
  }
}

/* Logo link specifically */
.cs-logo,
.cs-logo img {
  -webkit-tap-highlight-color: transparent;
}

.cs-logo:active {
  background-color: transparent;
}

img {
  -webkit-touch-callout: none;
}


/* =====================================
===============CAROUSEL #1============= */

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  transform: translateZ(0); /* Safari GPU lock */
}

.carousel-track {
  display: flex;
  align-items: center;
  width: max-content;       /* 🔑 prevents width snapping */

  background-color: black;
  padding: 2rem 0;

  animation: slide 30s linear infinite;

  will-change: transform;
  transform: translateZ(0);
}

/* FORCE CONSISTENT FLOW */
.carousel-track > * {
  flex-shrink: 0;            /* 🔑 prevents collapsing */
  display: flex;
  align-items: center;
}

/* Text items */
.carousel-item {
  padding: 0 20px;
  color: white;

  font-family: "Anton", sans-serif;
  font-weight: 100;
  letter-spacing: 2px;

  margin: 0;                 /* remove <p> defaults */
}

/* Icon spacing */
.carousel-track img {
  margin-right: 20px;
}

/* SAFER animation (no percentages tied to element width) */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50vw);
  }
}





/* =====================================
===============CAROUSEL #2============= */
.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;

  transform: translateZ(0); /* Safari GPU lock */
}

.carousel-track {
  display: flex;
  align-items: center;
  width: max-content;       /* 🔑 prevents width snapping */

  background-color: black;
  padding: 2rem 0;

  animation: slide 10s linear infinite;

  will-change: transform;
  transform: translateZ(0);
}

/* FORCE CONSISTENT FLOW */
.carousel-track > * {
  flex-shrink: 0;            /* 🔑 prevents collapsing */
  display: flex;
  align-items: center;
}

/* Text items */
.carousel-item {
  padding: 0 20px;
  color: white;

  font-family: "Anton", sans-serif;
  font-weight: 100;
  letter-spacing: 2px;

  margin: 0;                 /* remove <p> defaults */
}

/* Icon spacing */
.carousel-track img {
  margin-right: 20px;
}


.carousel-item2 p {
    font-family: "Anton", sans-serif !important;
}

/* SAFER animation (no percentages tied to element width) */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100vw);
  }
}




/* =====================================
===============CAROUSEL #3 (FIXED)============= */

.carousel-container3 {
  width: 100%;
  height: 220px;              /* 🔑 lock height so Safari doesn’t jump */
  overflow: hidden;
  position: relative;

  transform: translateZ(0);  /* GPU lock for iOS */
}

.carousel-track3 {
  display: flex;
  align-items: center;
  width: max-content;        /* 🔑 prevents width snapping */

  background-color: #ffffff;
  padding: 1.5rem 0;

  animation: slide3 10s linear infinite;

  will-change: transform;
  transform: translateZ(0);
}

/* FORCE ALL CHILDREN TO BE CONSISTENT */
.carousel-track3 > * {
  flex-shrink: 0;             /* 🔑 prevents collapsing */
  display: flex;
  align-items: center;
}

/* Image spacing */
.carousel-img {
  height: 150px;
  margin-right: 5rem;        /* replaces padding-left */
}

/* SAFER ANIMATION (viewport-based, not % width) */
@keyframes slide3 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100vw);
  }
}







/* =====================================
===============HERO SECTION============= */

.hero-section {
    position: relative;
    background-image: url(images/background/home-hero-phone.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    /* border: 5px solid red; */

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;

    padding: 2rem 1rem;
    padding-top: 4rem;

    height: 100vh;
    /* max-width: 800px; */
    margin: 0 auto;
    line-height: 2rem;
    z-index: 1;
    /* border: 2px solid blue; */
}

/* BLACK OVERLAY */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0; /* covers entire hero */
    background: rgba(0, 0, 0, 0.65); /* adjust opacity */
    z-index: 0; /* behind text */
}

/* ENSURE TEXT STAYS ABOVE OVERLAY */
.hero-section > * {
    position: relative;
    z-index: 2;
}


.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 12rem;
  /* border: 2px solid red; */
}

.hero-content h1 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 2rem;
  line-height: 2.8rem;
  color: #ffd76a; /* bright warm gold */
    text-shadow:
      0 0 4px rgba(255, 215, 106, 0.7),
      0 0 10px rgba(255, 200, 90, 0.6),
      0 0 20px rgba(200, 140, 20, 0.4);
}

.hero-content p {
  padding-bottom: 2rem;
}

.btn-1 {
  text-decoration: none;
  background: black;
  margin-top: 2rem;
  padding: .5rem 1.5rem .5rem 1.5rem;
  border: 1px solid white;
  border-radius: 5px;
  color: white;
}


/* MEDIA QUERIES SECTION */

@media (min-width: 768px) {
  
  .hero-section {
    height: 100vh;
    background-image: url(images/background/home-hero-tablet.png);

  }
  
  .hero-container {
    margin-top: 20rem;
  }

  .hero-content h1 {
    padding: 0rem 2rem 0rem 2rem;
  }

  .hero-content p {
    margin: 0rem 2rem 0rem 2rem;
    padding: 2rem;
  }

  .btn-1 {
    font-size: 1.6rem;
    padding: 1.2rem 2rem 1.2rem 2rem;
    display: block;        /* ← makes width apply */
    margin: 0 auto;
    width: auto;
  }
 

}

@media (min-width: 1024px) {
  
  .hero-section {
    height: 100vh;
    background-image: url(images/background/home-hero-desktop.png);
  }
/* 
   .btn-1 {
    margin-top: 4rem;
  } */

  .hero-container {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 20rem;
  }

  .hero-content h1{
    font-size: 5rem;
    line-height: 7rem;
  }
 
  .hero-content p {
    font-size: 1.4rem;
  }


}

@media (min-width: 1200px) {

/* =======HERO SECTION ======= */

   .hero-section {
    height: 100vh;
    background-image: url(images/background/home-hero-desktop-2.png);
  }
  

}

@media (min-width: 1280px) {
  .hero-section {
    height: 100vh;
}
.hero-container {
  margin-top: 5rem;
}

}


@media (min-width: 1500px) {

/* =======HERO SECTION ======= */

   .hero-section {
    height: 100vh;
    background-image: url(images/background/home-hero-desktop-3.png);
  }


  .hero-container {
    max-width: 1500px;
    margin: 0 auto;
    padding-top: 20rem;
  }
}



/* =====================================
===============CTA #1============= */

.cta-section {
  background-color: #2e2624;
}


.cta-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  padding: 2rem;
  color: white;
}

.cta-content h1 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}



/* SHOP NOW arrow */
.font-2 {
  position: relative;
  margin-left: 3rem;
  display: inline-block; /* keeps text centered */
}

/* Arrow as visual element (does NOT affect layout) */
.font-2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.8rem; /* controls distance from text */
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;

  background: url("../images/arrow.svg") no-repeat center;
  background-size: contain;

  pointer-events: none;
}


/* MEDIA QUERIES SECTION */

@media (min-width: 768px) {
    .cta-content h1 {
     padding-top: 3rem;
    }

}

@media (min-width: 1024px) {
  
    .cta-content h1 {
    padding-top: 3rem;
    }

    .cta-content h4 {
    padding-top: 2rem;
}

}

@media (min-width: 1200px) {
    .cta-content h1 {
    padding-top: 3rem;
    }

    .cta-content h4 {
    padding-top: 2rem;

}


}

@media (min-width: 1500px) {

    .cta-content h1 {
    padding-top: 3rem;
    }

    .cta-content h4 {
    padding-top: 2rem;

}
}





/* =====================================
===============SHOP SECTION============= */

.shop-section {
  display: flex;
  flex-direction: column;
}

.card-1 {
    position: relative;
    background-image: url('./images/background/card1-bgs/card1-phone-bg.png'); /* update path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white; /* Text color */
    padding: 2rem;
    overflow: hidden; /* ensures overlay stays inside */
    z-index: 1;
}

/* BLACK OVERLAY */
.card-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6); /* adjust opacity */
    z-index: 0; /* behind the text */
}

/* Make sure all content stays above overlay */
.card-1 > * {
    position: relative;
    z-index: 2;
}



.card-1-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 3rem;
  padding-bottom: 3rem;
  
}

.card-1-content h1 {
  padding-bottom: 1rem;
  line-height: 2.8rem;

}


.btn-2{
  text-decoration: none;
  background: black;
  margin-top: 2rem;
  padding: .5rem 1.5rem .5rem 1.5rem;
  border: 1px solid white;
  border-radius: 5px;
  color: white;
}


/* MEDIA QUERIES SECTION */

/* SMALLER TABLET SIZE */
@media (min-width: 768px) {
  .card-1-content {
    align-items: flex-start;
    text-align: left;
  }


  .card-1-content p {
    max-width: 900px;
  }
  .btn-2 {
    padding: 1.2rem 2rem 1.2rem 2rem;
    width: auto;
  }

  .card-1 {
    background-image: url('./images/background/card1-bgs/card1-tablet-bg.png'); 
}

}

/* DESKTOP SIZE */
@media (min-width: 1200px) {
 
  .card-1-content p {
    max-width: 900px;
  } 

  .card-1 {
    background-image: url('./images/background/card1-bgs/card1-desktop1-bg.png'); 
}
 
}


@media (min-width: 1500px) {
  .card-1 {
    background-image: url('./images/background/card1-bgs/card1-desktop2-bg.png'); 
}

  .card-1-content p {
    max-width: 1600px;
  }

}




/* =====================================
===============ABOUT SECTION============= */

.about1-section {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.about1-content p {
  padding-bottom: 2rem;
}

.about1-content h1 {
  padding-bottom: 2rem;
}


/* =====================================
===============WHY US SECTION============= */

.why-us-section {
  display: flex;
  flex-direction: column;
}

.why-us-content {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.why-us-titles {
  padding: 1.5rem;
}

.why-us-titles h1 {
  letter-spacing: 2px;
  padding-bottom: 2rem;
  line-height: 2.8rem;
}

.why-us-img {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.why-us-img img {
  width: 20em;     /* scales exactly with text */
  height: auto;
}

.reason-1 {
  display: flex;
  padding: 1.5rem;;
}

.reason-line {
  width: 90%;
  height: 1px;
  border: none;
  background-color: #000;
  margin: 1.5rem auto;
}


.reason-1 h1 {
  color:#8b6500;
  font-family: "DM Serif Display", serif;
}

.reason-1 p {
  padding-left: 1rem;
}

@media (min-width: 768px) {

}

@media (min-width: 1024px) {
  .why-us-titles, .reason-boxes {
    max-width: 930px;
    margin: 0 auto;
  }
  
}

@media (min-width: 1200px) {
  .why-us-titles, .reason-boxes {
    max-width: 930px;
    margin: 0 auto;
  }
}

@media (min-width: 1500px) {
  .why-us-content-2 {
    display: flex;
    max-width: 1200px;
    gap: 2rem;
    margin: 0 auto;
  }
  
  .why-us-titles, .reason-boxes {
    max-width: 930px;
    margin: 0 auto;
  }

  .why-us-titles {
    margin-left: 0 auto;
    text-align: center;
    padding-top: 3rem;
  }

  .reason-1 {
  align-items: center;
}

}






/* =====================================
===============TESTIMONIALS============= */

.testimonials-section {
  background: #ffffff;
  color: #000000;
  margin-top: 3rem;
  overflow: hidden;
}

.testimonials-header h1 {
  text-align: center;
  margin-bottom: 2rem;
  line-height: 2.8rem;
  padding: 0rem 2rem 0rem 2rem;
}

/* Row wrapper (hides overflow) */
.carousel-row {
  overflow: hidden;
  margin-bottom: 4rem;
}

/* ========================= */
/* NEW REVIEW TRACK (FIXED) */
/* ========================= */

/* Universal track settings */
.review-track {
  display: flex;
  gap: 1.5rem;
  flex-wrap: nowrap;        /* prevents wrapping */
  width: max-content;       /* ensures full width for smooth loop */
  will-change: transform;   /* makes animation smoother */
}

/* TOP ROW TRACK */
.row-top .review-track {
  display: flex;
  gap: 1.5rem;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
  animation: loop-left-top 115s linear infinite;
}

/* FORCE CONSISTENT CARD WIDTHS */
/* .row-top .testimonial-card {
  min-width: 260px;
  max-width: 260px;
  flex: 0 0 260px;
} */

/* TOP ROW'S SMOOTH LOOP KEYFRAME (unique!) */
@keyframes loop-left-top {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50.15%); } /* Micro-fix */
}
/* BOTTOM ROW TRACK */
.row-bottom .review-track {
  display: flex;
  gap: 1.5rem;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
  animation: loop-right 115s linear infinite;
}

@keyframes loop-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}


/* ========================= */
/* CARD STYLE (IMPORTANT!)   */
/* ========================= */

.testimonial-card {
  min-width: 220px;
  max-width: 390px; /* keeps widths identical for seamless looping */
  background:  #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 2px solid #222;
  box-shadow: 30 0px 30px rgba(0,0,0,0.4);
  color: rgb(0, 0, 0);
  font-size: 0.95rem;
}

.testimonial-card h3 {
  font-family: "Anton", sans-serif;
  font-weight: normal;
  letter-spacing: 1.2px;  
  text-transform: uppercase;
  line-height: 3.5rem;
}

.stars {
  color: #f8c44f;
  margin: 0.3rem 0 0.8rem;
}

.author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.author strong {
  display: block;
  font-size: 0.95rem;
}

.author span {
  display: block;
  font-size: 0.8rem;
  opacity: 0.75;
}

/* ========================= */
/* RESPONSIVE                */
/* ========================= */

@media (max-width: 1600px) {
  .testimonial-card {
    min-width: 200px;
    max-width: 320px;
    padding-top: 2.2rem;
  }
}



/* =========================
   BRAND VIDEO SECTION
========================= */

.brand-video-section {
  padding: 5rem 1.5rem;
  background: #f6f1e7;
}

.brand-video-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.brand-video-content h1 {
  font-family: "Anton", sans-serif;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  line-height: 3.5rem;
}

.brand-video-content p {
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.7rem;
}

/* =========================
   VIDEO WRAPPER
========================= */

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  margin: 3rem auto 0;
}

.brand-video {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 2px solid #000;
}


/* =========================
   OVERLAY (before play)
========================= */

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
  transition: opacity 0.4s ease;
}

/* =========================
   CUSTOM PLAY / PAUSE BUTTON
========================= */

.video-control-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #f5d76e;
  border: 1px solid #000;
  font-size: 2rem;
  cursor: pointer;
  z-index: 3;
  transition: opacity 0.35s ease, transform 0.25s ease;
}

.video-control-btn:hover {
  transform: scale(1.08);
}

/* =========================
   PLAYING STATE
========================= */

.video-wrapper.playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

.video-wrapper.playing .video-control-btn {
  opacity: 0;
  pointer-events: none;
}

/* Show button on hover / tap */
.video-wrapper.playing:hover .video-control-btn,
.video-wrapper.playing.show-controls .video-control-btn {
  opacity: 1;
  pointer-events: auto;
}




/* =====================================
===============CTA #2============= */

.cta-2-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.cta-2-header {
  background-color:#2e2624;
  padding: 2rem;
  color: white;
}

.cta-2-header h1 {
    line-height: 4rem;
}

.cta-2-paragraph {
  background-color: #2e2624;
  padding: 2rem;
  color: white;
}


.cta-2-paragraph p{
  padding-bottom: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.btn-3{
  display: block;        /* ← makes width apply */
  width: 120px;          /* ← sets actual width */
  margin: 0 auto;
  background:#f3b819 ;
  padding: 10px;
  border: 2px solid black;
  border-radius: 5px;
  color: rgb(0, 0, 0);
}

.btn-3 a {
  text-decoration: none;
  font-family: "Anton", sans-serif;
  list-style: none;
  color: rgb(0, 0, 0);

}


/* =====================================
===============FOOTER============= */

footer {
  /* border: 2px solid red; */
  background-color: #fff8e6;
}


.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;   /* ← THIS FIXES THE SHIFT */
  padding: 2rem 0;
}


.footer-logo img {
  width: clamp(7rem, 8vh, 10rem);
}


.quick-links-box ul {
  margin: 0;
  padding: 1rem;
}

.quick-links-box ul li {
  list-style: none;
  font-family: Poppins, sans-serif;

}

.quick-links-box ul li a {
  text-decoration: none;
  color: #1a1a1a;
  transition: color 0.3s;
}


.copyright {
  display: flex;
  justify-content: center;
  padding: 2rem 0rem 2rem 0rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-evenly;
    text-align: left;
    gap: 2rem;
  }

  .quick-links-box ul {
    padding: 0;
  }
}

@media (min-width: 1024px) {
    .footer-content {
    flex-direction: row;
    justify-content: space-evenly;
    text-align: left;
    gap: 2rem;
  }

  .quick-links-box ul {
    padding: 0;
  }
}

@media (min-width: 1200px) {
    .footer-content {
    flex-direction: row;
    justify-content: space-evenly;
    text-align: left;
    gap: 2rem;
  }

  .quick-links-box ul {
    padding: 0;
  }
}

@media (min-width: 1500px) {
    .footer-content {
    flex-direction: row;
    justify-content: space-evenly;
    text-align: left;
    gap: 2rem;
  }

  .quick-links-box ul {
    padding: 0;
  }
}


/* CLAMPS FOR TYPOGRAPHY */

p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 2.2rem;
}

li {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  line-height: 3rem;
}

button {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 1.5rem;
}

h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 6rem;

} 
h2 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  line-height: 6rem;
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 6rem;
}

h4 {
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 6rem;
}

h5 {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  line-height: 6rem;
}

h6 {
  font-size: clamp(1rem, 2vw, 1.3rem);
} 

.preloader span {
  font-size: clamp(3rem, 6vw, 5rem);
}

.carousel-track, .carousel-track2 {
  font-size: clamp(1.4rem, 4vw, 3rem);
}

.carousel-item, .carousel-item2 {
  font-size: 1.2em; /* inherits and stays proportional */
}

.carousel-item2 {
  font-size: 1.2em;
}

.carousel-track img {
  width: 1.2em;     /* scales exactly with text */
  height: auto;
}




/* ========== TRANSITIONS ==========*/
:root{
  --rv-ease: cubic-bezier(0.22, 1, 0.36, 1); /* smooth + natural */
  --rv-dur: 1000ms;    /* slower animation */
  --rv-y: 18px;       /* a touch more float */
  --rv-stagger: 200ms;/* still quick, but smoother */
}


/* Accessibility */
@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-group > *{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* Base reveal */
.reveal{
  opacity: 0;
  transform: translate3d(0, var(--rv-y), 0);
  filter: blur(6px);
  transition:
    opacity var(--rv-dur) var(--rv-ease),
    transform var(--rv-dur) var(--rv-ease),
    filter var(--rv-dur) var(--rv-ease);
  will-change: opacity, transform, filter;
}

.reveal.is-in{
  opacity: 1;
  transform: translate3d(0,0,0);
  filter: blur(0);
}

/* Group stagger: apply to a container, its direct children will stagger */
.reveal-group > *{
  opacity: 0;
  transform: translate3d(0, var(--rv-y), 0);
  filter: blur(6px);
  transition:
    opacity var(--rv-dur) var(--rv-ease),
    transform var(--rv-dur) var(--rv-ease),
    filter var(--rv-dur) var(--rv-ease);
  will-change: opacity, transform, filter;
}

.reveal-group.is-in > *{
  opacity: 1;
  transform: translate3d(0,0,0);
  filter: blur(0);
}

/* Delay is injected by JS via --d */
.reveal[style*="--d"],
.reveal-group > *[style*="--d"]{
  transition-delay: var(--d);
}





/* GLOBAL: change this number to control how soon reveals start AFTER the preloader */
:root { --after-preloader-delay: 0ms; }  /* try 0ms, 100ms, 200ms */

/* While preloader is up, force reveals to NOT animate yet */
html.preloader-active .reveal,
html.preloader-active .reveal-group > * {
  transition-delay: 9999ms !important;
}

/* Once preloader is done, normal delays apply */
html.preloader-done .reveal {
  transition-delay: calc(var(--d, 0ms) + var(--after-preloader-delay)) !important;
}
html.preloader-done .reveal-group > * {
  transition-delay: calc(var(--d, 0ms) + var(--after-preloader-delay)) !important;
}
