@font-face {
  font-family: Poppins;
  src: url(fonts/Poppins-Regular.ttf);
}
@font-face {
  font-family: Futura BB;
  src: url(fonts/unicode.futurabb.ttf);
}
@font-face {
  font-family: Futura Book;
  src: url(fonts/FuturaPTBook.otf);
}
*{
  margin: 0;
  padding: 0;
box-sizing: border-box;
text-decoration: none;
scroll-behavior: smooth;
}

body{
   padding-top: 75px; 
   overflow-x: hidden;
   width: 100%;
}


/*-------------------------------------------------------------------------NAVIGATION BAR WITH LOGO---------------------------------------------------------------------------*/
#Logo img{
display: block;
align-content: center;
width: 70px;
background-color: #251106;
height: auto;
}

.nav__bar{
  background-color: #251106;
  position: fixed;
  height: 75px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  /*box-shadow: 0 4px 16px 0 rgba(0,0,0,0.18), 0 1.5px 6px 0 rgba(0,0,0,0.12);*/
}

.nav__div{
  align-items: center;
  display: flex;
  justify-content: space-between;
   width: 90%;
  max-width: 1200px;
}

.nav__li{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  padding-top: 10px;
}

li{
  list-style: none;
  font-family: Poppins;
}
li a{
  color: #FAF9F6;
  font-size: 18px;
  transition: 0.3s;
}

li a:hover {
  color: #FFD700;
}
/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*-------------------------------------------------------------------CHOCOLATE DRIPS-------------------------------------------------------------------------------------*/
.Chocodrip{
 
 display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  gap: 0;
  padding: 0;
  animation-name: slideDown;
  animation-duration: 2s;
  animation-timing-function:cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

.Chocodrip img {
width: 100%; 
height: auto;
  display: inline-block;
  object-fit: cover;
  margin: 0;
  padding: 0;
  margin-bottom: -170px;
}
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/



/*---------------------------------------------------------------------------------SECTIONS---------------------------------------------------------------------------------*/

#Home {
  position: relative;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  margin-top: -150px;
  padding-top: 120px;
}

#Product{
  background-color: #ffd700;
   min-height: 100vh;
  

  
}

#About{
   min-height: 100vh;
  
  
}
/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------*/


/*---------------------------------------------------------------------------------HOME SECTION----------------------------------------------------------------------------*/

/* Initial load animations for home section */
@keyframes bounceInTitle {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(-100px);
  }
  50% {
    transform: scale(1.1) translateY(10px);
  }
  70% {
    transform: scale(0.9) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes slideInSubtitle {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.Title{
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: clamp(60px, 8vw, 110px);
  font-family: Futura BB;
  animation: bounceInTitle 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  opacity: 0;
}

.highlight {
  background: linear-gradient(45deg, #b8860b, #ffd700, #b8860b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.Subtitle{
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Futura Book;
  margin-top: -18px;
  text-align: center;
  font-size: clamp(14px, 2vw, 18px);
  animation: slideInSubtitle 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.6s;
}

.subtext p{
  align-items: center;
  justify-content: center;
  display: flex;
  font-family: Poppins;
  margin-top: 5px;
  text-align: center;
  font-size: clamp(14px, 2vw, 16px);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 1;
  animation-timeline: view();
  animation-range: entry 0% cover 15%;
}

.subtext {
 padding-top: 100px;
 
}
/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/


/*-------------------------------------------------------------------------------PRODUCT SECTION--------------------------------------------------------------------------*/
#Product {
 background: linear-gradient(60deg, #b8860b, #ffd700, #b8860b);
  min-height: 100vh;
  padding: 60px 5%;
  display: flex;
  flex-direction: column;

}

.product-content{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25%;
}

.carousel {
  width: 600px;
  max-width: 90%;
  border: 4px solid #251106;
  background-color: #251106;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.more__Chip {
  display: flex;
  gap: 1em;
  width: max-content;
}


.more__Chip {
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * (300px + 1em) * 6));
  }
}



.chs {
  height: 400px;
  width: 300px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 4px;
}

.title2{
font-family: Futura BB;
  font-size: 50px;
  margin-bottom: 50px;
  white-space: nowrap;
  margin-top: 30px;
  
}

.ingr {
  font-family: Poppins;
  flex: 1;
  margin-top: -100px;
  font-size: 30px; 
  margin-left: -20px;
}

/* Timeline Ingredients Styling */
.list {
  position: relative;
  padding-left: 60px;
  margin-left: 691px;
  margin-top: -380px;
}

/* Vertical line running through circles */
.list::before {
  content: '';
  position: absolute;
  left: -22px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #251106, #8B4513, #251106);
  border-radius: 2px;
  z-index: 1;
}

.list li {
  position: relative;
  padding: 20px 0;
  padding-left: 30px;
  font-size: 20px;
  display: block;
  transition: all 0.3s ease;
}

/* Circle dots on timeline */
.list li::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: #ffd700;
  border: 4px solid #251106;
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 3px #ffd700;
}

/* Hover effects */
.list li:hover {
  transform: translateX(10px);
  color: #251106;
}

.list li:hover::before {
  width: 20px;
  height: 20px;
  background-color: #251106;
  border-color: #ffd700;
  box-shadow: 0 0 0 3px #ffd700, 0 0 20px rgba(255, 215, 0, 0.6);
}

/* Animation for timeline items */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.list li {
  animation: fadeInLeft 0.8s ease forwards;
  opacity: 0;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

.list li:nth-child(1) { animation-delay: 0.1s; }
.list li:nth-child(2) { animation-delay: 0.2s; }
.list li:nth-child(3) { animation-delay: 0.3s; }
.list li:nth-child(4) { animation-delay: 0.4s; }
.list li:nth-child(5) { animation-delay: 0.5s; }

/* Apply scroll animations to Product section elements */
.title2 {
  animation: fadeInLeft 1s ease forwards;
  opacity: 0;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

.ingr {
  animation: fadeInRight 0.8s ease forwards;
  opacity: 0;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
  animation-delay: 0.2s;
}

.carousel {
  animation: fadeInLeft 1s ease forwards;
  opacity: 0;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

/*--------------------------------------------------------------------------------------------------------------------ABOUT SECTION----------------------------------------------------------------------------------------------------*/
.Title3{
  padding-top: 180px;
  font-family: Futura BB;
  font-size: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
    animation: fadeInLeft 1s ease forwards;
  opacity: 0;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

.fb_logo{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  margin-left: 720px;
  max-width:fit-content;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

.hr{
  max-width: 200px;
  margin-top: 30px;
  margin-left: 630px;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}


.text{
  max-width: 650px;
  padding-left: 20px;
  padding-bottom: 15px;
  margin-top: 7px;
  padding-top: 10px;
  font-family: Poppins;
  text-indent: 25px;
  text-align: justify;

}

.texts{
  animation: fadeInRight 0.8s ease forwards;
  opacity: 0;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
  animation-delay: 0.2s;
  max-width: 675px;
  margin-left: 403px;
  border-radius: 20px;
  margin-top: 20px;

  box-shadow: 0 8px 24px 0 rgba(0,0,0,0.25), 0 1.5px 6px 0 rgba(0,0,0,0.18);
}

