@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

html {
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}
html{
    font-size: 62.5%;
}
body{
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    background-color: #f3f3f3;
    color: black;
     font-family: 'MyCustomFont', sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; 
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;               
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 6%;         
  gap: 1rem;
  background-color: rgba(0,0,0,0.95);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 2000;
   font-family: 'MyCustomFont', sans-serif;
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
 font-family: 'MyCustomFont', sans-serif;
  background: linear-gradient(
    90deg,
    #D5C58A,
    #D5C58A,
    #5D6532,
    #5D6532,
    #5D6532,
    #D5C58A
  );

  background-size: 400%; 
  border-radius: 2px;
  animation: moveGradient 6s linear infinite; 
}

.logo {
  color: #D5C58A;
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: 0.5rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease;
 animation: footerColorr 10s linear infinite; 
  font-family: 'MyCustomFont', sans-serif;
}

@keyframes footerColorr {
    0% {
        color: #D5C58A;
    }
    20% {
        color: #D5C58A	;
    }
    40% {
        color: #5D6532	;
    }
    60% {
        color: #5D6532;
    }
    80% {
        color: #5D6532;
    }
    100% {
        color: #D5C58A;
    }
}

.logo:hover { transform: scale(1.05); }

.nav-menu {
  display: flex;
  gap: 2rem;                
  align-items: center;
  margin: 0;
  padding: 0;
   font-family: 'MyCustomFont', sans-serif;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;      
  padding: .25rem .25rem;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
   font-family: 'MyCustomFont', sans-serif;
}
.nav-menu a.active,
.nav-menu a:hover {
  color: #D5C58A;
 animation: footerColorr 10s linear infinite; 
}

@keyframes footerColorr {
    0% {
        color: #D5C58A;
    }
    20% {
        color: #D5C58A	;
    }
    40% {
        color: #5D6532	;
    }
    60% {
        color: #5D6532;
    }
    80% {
        color: #5D6532;
    }
    100% {
        color: #D5C58A;
    }
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: .25rem;
  width: 42px;
  height: 36px;
  align-items: center;
  justify-content: center;
}

.menu-toggle .bar {
  display: block;
  width: 26px;
  height: 2.5px;
  margin: 4px 0;
  background: #D5C58A;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle.open .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open .bar:nth-child(2) { opacity: 0; }
.menu-toggle.open .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 601px) and (max-width: 1024px) {
  .site-header { padding: 0.9rem 5%; }
  .logo { font-size: 2.2rem; }
  .nav-menu a { font-size: 1.05rem; }
  .nav-menu { gap: 1.5rem; }
}

@media (max-width: 844px) {
  .menu-toggle { display: flex; }


  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.98);
    flex-direction: column;
    align-items: center;
    gap: 0;
    overflow: hidden;
    max-height: 0;               
    transition: max-height .35s ease;
    padding: 0 0;
  }

  .nav-menu.active {
    max-height: 480px;           
    padding: 0.8rem 0;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    text-align: center;
    padding: .9rem 0;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
}

@media (max-width: 380px) {
  .logo { font-size: 1.9rem; }
  .menu-toggle { width: 38px; height: 34px; }
  .menu-toggle .bar { width: 22px; }
}



.section-wrapper {
    display: flex;
    flex-direction: column;   
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: white;
    padding-top: 7%;
    padding-bottom: 7%;
    height: fit-content;
}


.product-title {
    width: fit-content;
    font-size: 22px;
    font-weight: 300;
    color: black;
    transition: all 0.3s ease;
    margin-right: 495px;
    border-bottom: 2px solid black; 
}

.product-title:hover {
    color: rgb(255, 255, 255);
    font-size: 25px;
    background: rgba(0, 0, 0, 0.892);
    border-radius: 15px;
    padding: 3px;
}

.content-row {
    display: flex;
    align-items: center;
}


.arrow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.arrow-left {
    font-size: 32px;
    color: rgb(0, 0, 0);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow-left:hover {
    font-size: 35px;
    color: white;
    background-color: rgba(0, 0, 0, 0.892);
    border-radius: 50px;
}

.image-container {
    position: relative;
    width: 350px;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
    cursor: zoom-in;
    flex-shrink: 0;
}


.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    transition: transform 0.15s ease-out;
}


.text-box {
    width: 400px;
    color: black;
    padding: 20px;
    transition: all 0.3s ease;
    font-size: 15px;
    text-align: justify;
}


.text-box:hover {
    font-size: 18px;
    width: 500px;
    background: rgba(0, 0, 0, 0.892);
    color: white;
    padding: 20px;
    border-radius: 15px;
}

.color-section {
    margin-top: 1px;
    margin-right: 495px;
}

.color-palette {
    display: flex;
    gap: 12px;
    margin-top: 10px;
  
}

.color-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    border: 1px solid #ccc;
    transition: transform 0.2s ease;
}


.color-dot:hover {
    transform: scale(1.2);
}

.color-dot::after {
    content: attr(data-color);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    
    background: rgb(0, 0, 0);
    color: var(--tooltip-bg, black);   
    font-size: 12px;
    padding: 4px 6px;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.color-dot:hover::after {
    opacity: 1;
}


@media (max-width: 844px) {

    .section-wrapper {
        padding-top: 20px;
        padding-bottom: 20px;
        gap: 15px;
    }

    .product-title {
        margin-right: 0;             
        text-align: center;
        font-size: 20px;
       
    }

    .content-row {
        flex-direction: column;      
        gap: 15px;
    }

    .arrow-left {
        margin-bottom: 10px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .image-container {
        width: 260px;
        height: 340px;              
    }

    .text-box {
        width: 90%;
        font-size: 14px;
        text-align: justify;
        padding: 15px;
    }

    .text-box:hover {
        width: 95%;
        font-size: 15px;              
    }

    .color-section {
        margin-right: 0;               
        text-align: center;
    }

    .color-palette {
        justify-content: center;    
    }

    .color-dot {
        width: 20px;
        height: 20px;
    }

    .color-dot::after {
        top: -25px;                 
        font-size: 11px;
    }
}




.section-wrapper2 {
    display: flex;
    flex-direction: column;   
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: white;
    padding-top: 7%;
    padding-bottom: 7%;
    height: fit-content;
}


.product-title2 {
    width: fit-content;
    font-size: 22px;
    font-weight: 300;
    color: black;
    transition: all 0.3s ease;
    margin-right: 495px;
    border-bottom: 2px solid black; 
}

.product-title2:hover {
    color: rgb(255, 255, 255);
    font-size: 25px;
    background: rgba(0, 0, 0, 0.892);
    border-radius: 15px;
    padding: 3px;
}

.content-row2 {
    display: flex;
    align-items: center;
}


.arrow-container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.arrow-left2 {
    font-size: 32px;
    color: rgb(0, 0, 0);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow-left2:hover {
    font-size: 35px;
    color: white;
    background-color: rgba(0, 0, 0, 0.892);
    border-radius: 50px;
}

.image-container2 {
    position: relative;
    width: 350px;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
    cursor: zoom-in;
    flex-shrink: 0;
}


.image-container2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    transition: transform 0.15s ease-out;
}


.text-box2 {
    width: 400px;
    color: black;
    padding: 20px;
    transition: all 0.3s ease;
    font-size: 15px;
    text-align: justify;

}


.text-box2:hover {
    font-size: 18px;
    width: 500px;
    background: rgba(0, 0, 0, 0.892);
    color: white;
    padding: 20px;
    border-radius: 15px;
}

@media (max-width: 844px) {

    .section-wrapper2 {
        padding-top: 20px;
        padding-bottom: 20px;
        gap: 15px;
    }

    .product-title2 {
        margin-right: 0;             
        text-align: center;
        font-size: 20px;
       
    }

    .content-row2 {
        flex-direction: column;      
        gap: 15px;
    }

    .arrow-left2 {
        margin-bottom: 10px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .image-container2 {
        width: 260px;
        height: 340px;              
    }

    .text-box2 {
        width: 90%;
        font-size: 14px;
        text-align: justify;
        padding: 15px;
    }

    .text-box2:hover {
        width: 95%;
        font-size: 15px;              
    }

    .color-section2 {
        margin-right: 0;               
        text-align: center;
    }

    .color-palette2 {
        justify-content: center;    
    }

    .color-dot2 {
        width: 20px;
        height: 20px;
    }

    .color-dot2::after {
        top: -25px;                 
        font-size: 11px;
    }
}

footer {
    text-align: center;
    padding: 1rem 0.5rem;    
    font-size: 1.7rem;        
    font-weight: 400;
    letter-spacing: 0.03rem;
    background-color: #111;
    color: white;
}

@media (max-width: 884px) {

  .slider-container {
    width: 90%;       
    margin: 20px auto;
  }

  .arrow {
    font-size: 35px;   
    padding: 5px;
  }

  .left {
    left: -30px;    
  }

  .right {
    right: -30px;
  }
}

.section.top {
  position: relative;
  width: 100%;
  height: fit-content;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px ;
}

.section.top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    #D5C58A,
    #D5C58A,
    #5D6532,
    #5D6532,
    #5D6532,
    #D5C58A
  );
  background-size: 400%; 
  border-radius: 2px;
  animation: moveGradient 6s linear infinite; 
}


.top-box {
  padding: 40px 60px;
  max-width: 1200px;
  color: #000000;
  text-align: justify;
  font-family: 'MyCustomFont', sans-serif;
  line-height: 1.6;
  font-size: 1.8rem;
transition: all 0.3s ease;
}

.top-box:hover {
  background: rgba(0, 0, 0, 0.892);
  color: white;
  border-radius: 15px;
  font-size: 2rem;
}

.top-description a {
  text-decoration: none;
  font-weight: bold;
}

.top-description p {
  margin: 0;
}

.top-description p::first-letter {
  font-size: 2.5rem;
}


@media (max-width: 1024px) {
  .section.top {
    padding: 60px 6%;
    background-position: center top;
  }

  .top-box {
    padding: 30px 40px;
    font-size: 1.6rem;
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .section.top {
    padding: 50px 5%;
    background-position: center;
  }

  .top-box {
    padding: 25px 30px;
    font-size: 1.4rem;
    border-radius: 12px;
  }

  .top-box:hover {
    font-size: 1.8rem;
    
  }

  .top-description p::first-letter {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section.top {
    padding: 40px 5%;
  }

  .top-box {
    padding: 20px;
    font-size: 1.3rem;
    line-height: 1.5;
  }
}