/* ===== BASE STYLES ===== */
html, body {
  font-size: 16px;
  overscroll-behavior: none;
}

html {

  font-family: var(--font-family-sans);
  color: var(--color-text);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Copy-Regular';
  margin: 0 auto;
  background-color: #FAF5D9;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

main {
background-color: white;
}

/* Hide scrollbar for all browsers */
::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* ===== FONT FACES ===== */
@font-face {
  font-family: 'Copy-HYF';
  src: url('Copy-HYF.woff2') format('woff2'),
       url('Copy-HYF.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Copy HYF Custom';
  src: url('Copy-HYF.woff2') format('woff2'),
       url('Copy-HYF.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Copy-Regular';
  src: url('Copy-Regular.woff2') format('woff2'),
       url('Copy-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Spacing */
  --padding: 1.5rem;
  
  /* Colors */
  --color-black: #000;
  --color-white: #fff;
  --color-grey: #777;
  --color-light: #efefef;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);
  
  /* Code colors */
  --color-code-light-grey: #cacbd1;
  --color-code-comment: #a9aaad;
  --color-code-white: #c5c9c6;
  --color-red: #B12900;
  --color-code-orange: #de935f;
  --color-code-yellow: #f0c674;
  --color-code-green: #a7bd68;
  --color-code-aqua: #8abeb7;
  --color-code-blue: #7e9abf;
  --color-code-purple: #b294bb;
  
  /* Font families */
  --font-family-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  
  /* Typography sizes */
  --text-md-size: 0.875rem;
  --text-md-line-height: 1.09688rem;
  
  --text-lg-size: 1.25rem;
  --text-lg-line-height: 1.625rem;

  --text-lg-mobile-size: 0.9375rem;
  --text-lg-mobile-line-height: 1.21875rem;
  --text-lg-mobile-letter-spacing: 0;
  
  --text-xl-size: 1.4rem;
  --text-xl-line-height: 1.68rem;
  --text-xl-letter-spacing: 0.05rem;
  
  --text-2xl-size: 1.875rem;
  --text-2xl-line-height: 2.4375rem;
  --text-2xl-letter-spacing: -0.0375rem;

  --text-2xl-mobile-size: 2rem;
  --text-2xl-mobile-line-height: 2.1rem;
  
  --text-3xl-size: 3.125rem;
  --text-3xl-line-height: 4.0625rem;
  --text-3xl-letter-spacing: -0.0625rem;
  
  --text-5xl-size: 6.25rem;
  --text-5xl-line-height: 6rem;
  --text-5xl-letter-spacing: 0.02rem;
  
  --text-6xl-size: 3rem;
  --text-6xl-line-height: 3rem;
  --text-6xl-letter-spacing: 0.03rem;
}


/* Responsive typography for larger screens */
@media (min-width: 769px) and (max-width: 1728px) {
  :root {
    --text-5xl-size: clamp(3.125rem, 5.8vw, 6.25rem);
    --text-5xl-line-height: clamp(3.125rem, 5.5vw, 6rem);
    --text-5xl-letter-spacing: clamp(-0.0625rem, -0.17vw, -0.1875rem);

   --text-3xl-size: clamp(1.75rem, 3.0vw, 3.125rem);
    --text-3xl-line-height: clamp(2.275rem, 3.7vw, 4.0625rem);
    --text-3xl-letter-spacing: clamp(-0.035rem, -0.06vw, -0.0625rem);


       --text-2xl-size: clamp(1.25rem, 1.8vw, 1.875rem);
    --text-2xl-line-height: clamp(1.625rem, 2.4vw, 2.4375rem);
    --text-2xl-letter-spacing: clamp(-0.025rem, -0.035vw, -0.0375rem);





    --text-lg-size: clamp(1rem, 1.2vw, 1.25rem);
    --text-lg-line-height: clamp(1.2rem, 1.6vw, 1.625rem);



  
  }



    p, li, li a {
 font-size: var(--text-lg-size);
  line-height: var(--text-lg-line-height);
  letter-spacing: 0 ;

}




 
}

  .leading-3xl-tight {
    line-height: clamp(2.275rem, 3.1vw, 3.28125rem) !important;
      
  }


  .button-hover {
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .button-hover:hover {
    background-color: var(--color-red);
    color: #FAF5D9;
  }


  @media (min-width: 768px) and (max-width: 960px) {
    .logo-top {
      width: 14rem !important;
    }

    

  }

  @media (min-width: 768px) and (max-width: 1280px) {
   

    .footer-menus div, .footer-menus a, .footer-menus li {
      line-height: 1.4 !important;
    }
  }


  @media (max-width: 768px) {


  


    :root {
      --text-5xl-size: 3.125rem;
      --text-5xl-line-height: 3.125rem;
      --text-5xl-letter-spacing: -0.0625rem;

      --text-3xl-size: 1.75rem;
      --text-3xl-line-height: 2.275rem;
      --text-3xl-letter-spacing: -0.035rem;

      --text-2xl-size: 1.25rem;
      --text-2xl-line-height: 1.625rem;
      --text-2xl-letter-spacing: -0.025rem;

      --text-lg-mobile-size: 0.9375rem;
      --text-lg-mobile-line-height: 1.21875rem;
    }

   .mobile-3xl-leading-tight {
    line-height: 3.125rem !important;
  }


  .max-lg\:rounded {
  border-radius: 0.1875rem;
}
  

  .text-lg-mobile {
    font-size: var(--text-lg-mobile-size);
    line-height: var(--text-lg-mobile-line-height);
    letter-spacing: var(--text-lg-mobile-letter-spacing);
  }
}




/* ===== PAGE TRANSITIONS ===== */



body {
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.loaded {
opacity: 1;
}

html.is-changing .transition-fade {
  transition: opacity 0.25s, transform 0.25s;
  opacity: 1;
  transform: translateY(0);
}

html.is-animating .transition-fade {
  opacity: 0;
  transform: translateY(10px);
}



/* ===== UTILITY CLASSES ===== */
.variable {
  font-family: 'Copy HYF Custom', sans-serif;
}

.bold {
  font-family: 'Copy-HYF';
}

.bold strong, h2 strong, h3 strong, h1 strong {
  font-weight: inherit;
}

.text-beige {
  color: #FAF5D9;
}

.bg-beige, .lg\:bg-beige {
  background-color: #FAF5D9;
}

.text-brown {
  color: #5E1600;
}

.bg-red {
  background-color: #B12900;
}

.border-brown {
  border-color: #5E1600;
}

.bg-brown {
  background-color: #5E1600;
}

.red-hover, .red-hover span, .red-hover div, .red-hover h3, .red-hover h2, .red-hover h1, .red-hover p, .red-hover a {
  transition: color 0.3s ease-in-out;
}

.red-hover:hover, .red-hover:hover span, .red-hover:hover div, .red-hover:hover h3, .red-hover:hover h2, .red-hover:hover h1, .red-hover:hover p, .red-hover:hover a {
  color: #B12900;

}

.text-shadow {
text-shadow: 0 0 20px #5E1600;}

.bg-light {
  background-color: var(--color-light);
}

.color-grey {
  color: var(--color-text-grey);
}

.space-short {
  margin-bottom: -2rem;
}

.p-down p {
  padding: 0 0 1rem 0;
}

.p-down p:last-child {
  padding: 0;
}

.rounded {
  border-radius: 0.1875rem;
}

/* ===== GRADIENT UTILITIES ===== */
.gradient-from-top {
  border-radius: 0.1875rem;
  opacity: 0.4;
  background: linear-gradient(180deg, #5E1600 0%, rgba(255, 255, 255, 0) 100%);
}

.gradient-from-bottom {
  border-radius: 0.1875rem;
  opacity: 0.7;
  background: linear-gradient(0deg, #5E1600 0%, rgba(255, 255, 255, 0) 100%);
}

.gradient-from-bottom-strong {
  opacity: 1;
  height: 20vh;
  margin-top: -20vh;
  position: absolute;
  width: 100%;
  background: linear-gradient(0deg, rgba(94, 22, 0, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.radial-gradient-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 30vh;
  width: 70vw;
border-radius: 70.03169rem;
opacity: 0.8;
background: radial-gradient(50% 50% at 50% 50%, #5E1600 0%, rgba(94, 22, 0, 0.00) 100%);
}

/* ===== COMPONENT STYLES ===== */
.button {
  display: flex;
  padding: 1rem 1.875rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}

nav a, .mobile-nav-section-main a {
  font-family: 'Copy-HYF';
     font-variation-settings: "ytlc" 0;
     transition: all 0.3s ease-in-out;

}

footer a, .mobile-nav-section-sec a {
  
     transition: all 0.3s ease-in-out;
}

nav a:hover, .mobile-nav-section-main a:hover {
  font-variation-settings: "ytlc" 100;
  color: var(--color-red);
}

nav a.active, .mobile-nav-section-main a.active {
  font-variation-settings: "ytlc" 100;
  color: var(--color-red);
}

footer a:hover, .mobile-nav-section-sec a:hover {
  font-variation-settings: "ytlc" 100;
  color: var(--color-red);
}

footer a.active, .mobile-nav-section-sec a.active {
  font-variation-settings: "ytlc" 100;
  color: var(--color-red);
}

/* ===== BASE ELEMENT STYLES ===== */
img {
  width: 100%;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}



button {

  border: 0;
  color: currentColor;
  cursor: pointer;
}

strong, b {
  font-weight: 600;
}

small {
  font-size: inherit;
  color: var(--color-text-grey);
}

/* ===== LAYOUT COMPONENTS ===== */
.header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.logo {
  padding: 1rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}

.menu {
  display: flex;
}

.menu a {
  padding: 1rem;
  display: block;
}

.menu a[aria-current] {
  text-decoration: underline;
}

.social {
  display: flex;
  padding: 0 0.5rem;
}

.social a {
  padding: 1rem 0.5rem;
}

.section {
  padding: 3rem 0;
}

.image-right {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .image-right {
    flex-direction: column;
  }

  br {
    display: none;
  }
}

/* ===== CUSTOM NAVIGATION ===== */
.custom-navigation-time {
  display: flex;
  gap: 15px;
  z-index: 10;
  position: absolute;
      right: 3rem;
    bottom: 8rem;
}

.custom-navigation-container {
  display: flex;
  gap: 15px;
}

.custom-nav-button {
  width: 20px;
  height: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FAF5D9;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.custom-nav-button-text,
.custom-nav-prev-test,
.custom-nav-next-test {
  width: 20px;
  height: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5E1600;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.custom-nav-button.disabled,
.custom-nav-button-text.disabled,
.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.swiper-slide [data-scaleup] {
 transform: scale(1);
}


 #testimonial-slideshow .swiper-slide img {
  width: inherit !important;
  height: 100%;
 }

.gallery-swiper .swiper-slide {
       width: calc(100% - 1.2rem); /* Adjust width for 3 slides per view */
        flex-shrink: 0; /* Prevent shrinking */
    }


    @media (min-width: 769px) {
 #testimonial-slideshow .swiper-slide {
 height: auto;
      width: calc(100% - 20px); /* Full width for mobile */
    }
  }


  


@media (min-width: 1251px) {
 #testimonial-slideshow .swiper-slide {
    
      width: calc(100% - (50% + 20px)); /* Full width for mobile */
    }
  }

  .text-swiper .swiper-slide {
    width: calc(33.33% - 1.2rem); /* Adjust width for 3 slides per view */
    flex-shrink: 0; /* Prevent shrinking */
  }

  @media (max-width: 768px) {

    .fullbleed {
      margin: 2.5rem 0 !important;
      padding: 0 !important;
    }

    .text-swiper .swiper-slide, #testimonial-slideshow .swiper-slide {

      width: calc(100% - 1.2rem); /* Full width for mobile */
    }
  }



.max-w-stop {
  max-width: 2000px;
  }

  .max-w-stop-inset {
 max-width: calc(2000px - 6rem);
  }

 