
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden;
    /* background-color: #080710; */
}

header {
    position: relative;
    /* background-color: #fff; */
    padding: 0rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url(full-frame-triangular-citrus-fruits-slices-isolates-white-background.jpg) repeat bottom center; */
    opacity: 0.5; /* Adjust opacity here */
    z-index: -1; /* Ensure the background is behind the content */
}

/* General styling for nav */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 3rem;
  position: relative;
  z-index: 1000;
}
 .hamburger {
      display: block;
      font-size: 2rem;
      cursor: pointer;
  }

nav h1 {
  font-size: 1.2rem;
}

/* Align the ul list */
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
}

nav ul li {
  margin-left: 2rem;
  display: inline-block;
}

nav ul li a {
  display: inline-block;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s, color 0.3s;
}

nav ul li a:hover {
  color: black;
  transform: scale(1.3);
}

@media (min-width: 769px) {
  .hamburger {
    display: none; /* Hide on larger screens */
  }
}

/* Hide nav-links initially on smaller screens and show hamburger icon */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    background-color: #fff;
    width: 100%;
    text-align: center;
  }
  .nav-links.active {
    display: flex; /* Show when toggled */
  }

  nav ul li {
      margin: 1rem 0;
  }
}


#hero {
    position: relative;
    height: 85vh; /* Adjust as needed */
    display: flex; /* Enable Flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    overflow: hidden;
    max-width: none;
    width: 100%;
    z-index: 1;
}

#hero-video {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 100%;
    height: auto; /* Ensure the video covers the entire section */
    object-fit: cover; /* Maintain aspect ratio and fill the section */
    transform: translate(-50%, -30%); /* Center the video */
    opacity: 0.9; /* Adjust opacity (0 is fully transparent, 1 is fully opaque) */
    z-index: -1; /* Place the video behind the content */
}

.hero-content {
    position: relative; /* Ensure content is on top of the video */
    color: white; /* Adjust text color for visibility */
    text-align: center;
    z-index: 1; /* Bring the content above the video */
}
/* Glass Card */
.glass-card {
  background: rgba(129, 80, 80, 0.2); /* Light translucent background */
  backdrop-filter: blur(20px); /* Frosted glass effect */
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 0 auto;
}

.glass-card h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.glass-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

#hero h1 {
    font-size: 2.5rem;
}

.btn {
    background: #ffffff;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    border:#080710;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background: #F9F9F9;
    color: black;
}

section {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    margin-bottom: 1rem;
}

#featured-products {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}


.carousel-body {
    height: 600px;
    margin: 0;
    display: grid;
    grid-template-rows: 500px 100px;
    grid-template-columns: 1fr 30px 30px 30px 30px 30px 1fr;
    align-items: center;
    justify-items: center;
  }
  
  main#carousel {
    grid-row: 1 / 2;
    grid-column: 1 / 8;
    width: 100vw;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 600px;
    --items: 5;
    --middle: 3;
    --position: 1;
  }
  
  div.item {
    position: absolute;
    width: 300px;
    height: 400px;
    /* background-color: coral; */
    --r: calc(var(--position) - var(--offset));
    --abs: max(calc(var(--r) * -1), var(--r));
    transition: all 0.25s linear;
    transform: rotateY(calc(-10deg * var(--r)))
      translateX(calc(-300px * var(--r)));
    z-index: calc((var(--position) - var(--abs)));

    /* flex: 0 0 100%; Each card takes 100% width of the carousel */
    text-align: center;
    /* background-color: #fff; */
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1rem;
    margin: 0 0.5rem; /* Adjust margin as needed for spacing */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  }

  .item img {
    width: 80%;
    height: 60%;
  }
  
  div.item:nth-of-type(1) {
    --offset: 1;
    background-color: #fff;
  }
  div.item:nth-of-type(2) {
    --offset: 2;
    background-color: #fff;
  }
  div.item:nth-of-type(3) {
    --offset: 3;
    background-color: #fff;
  }
  div.item:nth-of-type(4) {
    --offset: 4;
    background-color: #fff;
  }
  div.item:nth-of-type(5) {
    --offset: 5;
    background-color: #fff;
  }
  
  input:nth-of-type(1) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  input:nth-of-type(1):checked ~ main#carousel {
    --position: 1;
  }
  
  input:nth-of-type(2) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
  }
  input:nth-of-type(2):checked ~ main#carousel {
    --position: 2;
  }
  
  input:nth-of-type(3) {
    grid-column: 4 /5;
    grid-row: 2 / 3;
  }
  input:nth-of-type(3):checked ~ main#carousel {
    --position: 3;
  }
  
  input:nth-of-type(4) {
    grid-column: 5 / 6;
    grid-row: 2 / 3;
  }
  input:nth-of-type(4):checked ~ main#carousel {
    --position: 4;
  }
  
  input:nth-of-type(5) {
    grid-column: 6 / 7;
    grid-row: 2 / 3;
  }
  input:nth-of-type(5):checked ~ main#carousel {
    --position: 5;
  }

#about {
    background: url('Assets/About.jpg') no-repeat center center;
    background-size: 98%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: none;
    color: #333;
}

.about-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 2rem;
}

#about img {
    /* display: block; */
    width: 400px; /* Adjust size as needed */
    filter: invert(1);
}

.left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 40%;
}

.left h1 {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.right {
    position: absolute;
    top: 20px;
    right: 200px;
    text-align: left;
}

.right h2 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
}

.right p {
    font-size: 1.5rem;
    color: white;
    max-width: 800px; /* Adjust to fit text width */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.faq-question {
    padding: 15px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 15px;
    display: none;
    background-color: #fff;
}

.faq-question h3 {
    margin: 0;
}

.toggle-icon {
    font-size: 20px;
    color: #888;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust depending on answer length */
}


#contact {
    /* background-color: #080710; */
    display: block;
    position: relative;
    margin: 100px auto;
}

.background{
    width: 430px;
    height: 520px;
    /* position: absolute; */
    transform: translate(-50%,-50%);
    /* left: 50%;
    top: 50%; */
}
.background .shape{
    height: 200px;
    width: 200px;
    position: absolute;
    border-radius: 50%;
}
.shape:first-child{
    background: linear-gradient(
        #C76773,
        #F3B2B6
    );
    left: 450px;
    top: 100px;
}
.shape:last-child{
    background: linear-gradient(
        to right,
        #C76773,
        #F3B2B6
    );
    right: -750px;
    bottom: -200px;
}
form{
    height: 520px;
    width: 400px;
    background-color: rgba(255,255,255,0.13);
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);
    padding: 50px 35px;
}
form *{
    font-family: 'Poppins',sans-serif;
    color: black;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}
form h3{
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
    text-align: center;
}

label{
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
}
#contact input{
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgba(158, 158, 158, 0.3);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
}
::placeholder{
    color: #252525;
}
button{
    margin-top: 50px;
    width: 100%;
    background-color: #ffffff;
    color: #080710;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background: #333;
    color: white;
}

/* Align logo and text to the left */
.logo-container {
    display: flex;
    align-items: center;
}

#logo {
    display: block;
    width: 50px;
    height: auto;
    margin: 0 auto;
    animation: roll-and-rotate 1s ease-out forwards, bounce 0.5s ease-in-out 1s forwards; 
}

nav h1 {
    font-size: 1.3rem;
    margin-left: 06px;
}

#dynamic-text {
    display: inline-block;
    font-size: 2.5rem; /* Increase font size */
    font-weight: bold; /* Make the text bold */
}

/* Define the roll and rotate animation */
@keyframes roll-and-rotate {
    0% {
        transform: translateX(-100%) rotate(0deg); /* Start off-screen to the left with no rotation */
    }
    70% {
        transform: translateX(10%) rotate(180deg); /* Move slightly to the right and rotate 180 degrees */
    }
    100% {
        transform: translateX(0) rotate(360deg); /* End at the original position with a full rotation */
    }
}

/* Define the bounce animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0); /* Start and end at original position */
    }
    50% {
        transform: translateY(-20px); /* Move up by 20px */
    }
}

@import url(https://fonts.googleapis.com/css?family=Open+Sans:600);

.text-animation {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 2rem; /* Use relative size */
  padding: 50px 0;
  text-align: center;
}

/* Adjust the text container */
.text {
  width: 100%;  /* Use relative width */
    max-width: 450px; /* Apply max-width for larger screens */
    margin: 0 auto; /* Center it */
}

.text p {
  display: inline-block;
  vertical-align: top;
  margin: 0;
  font-size: 1.5rem; /* Adjust font size */
}


.word {
  position: absolute;
  width: 100%; /* Full width on smaller screens */
  opacity: 0;
}

/* Letter animation */
.letter {
  display: inline-block;
  position: relative;
  float: left;
  transform: translateZ(25px);
  transform-origin: 50% 50% 25px;
}

.letter.out {
  transform: rotateX(90deg);
  transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.letter.behind {
  transform: rotateX(-90deg);
}

.letter.in {
  transform: rotateX(0deg);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Word Colors */
.wisteria {
  color: #8e44ad;
}

.belize {
  color: #2980b9;
}

.pomegranate {
  color: #c0392b;
}

.green {
  color: #16a085;
}

.orange {
  color: #de8a15;
}

/* Media Queries for Small Screens */
@media (max-width: 768px) {
  .text-animation {
    font-size: 1.5rem; /* Scale down the font size */
    padding: 20px 0; /* Adjust padding */
  }

  .text {
    max-width: 100%; /* Make it full-width */
  }

  .text p {
    font-size: 1.2rem; /* Scale down text size */
  }

  .word {
    width: 100%; /* Ensure the word container spans the full width */
  }
}


#benefits {
  text-align: center;
  padding: 50px 20px;
  background-color: #f7f7f7;
}

#benefits h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

/* Benefit Cards Container */
.benefit-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

/* Individual Card Styling */
.card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 300px;
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-10px);
}

/* Icon Styling */
.card i {
  font-size: 3rem;
  color: #f1c40f;
  margin-bottom: 20px;
}

/* Card Title */
.card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #333;
}

/* Card Description */
.card p {
  font-size: 1rem;
  color: #555;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .benefit-cards {
      flex-direction: column;
      align-items: center;
  }

  .card {
      width: 100%;
      max-width: 350px;
  }
}

/* Our Story Section */
#our-story {
  padding: 100px 20px;
  text-align: center;
  color: #333;
}

.story-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

#our-story h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  color: #ef8494; /* Soft pink */
  position: relative;
  z-index: 1;
}

#our-story p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #666;
}

#our-story p:last-child {
  margin-bottom: 0;
}

/* Accent Line */
.accent-line {
  width: 80px;
  height: 4px;
  background-color: #ffab3c; /* Matching pink */
  margin: 20px auto;
  position: relative;
  z-index: 1;
}

/* Highlighted Text */
.highlight {
  color: #ff6b81; /* Soft pink highlight */
  font-weight: 600;
  background-color: #fff3f3;
  padding: 0 5px;
  border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
  #our-story h2 {
      font-size: 2.2rem;
  }

  #our-story p {
      font-size: 1rem;
  }

  .story-container {
      padding: 30px;
  }
}

#contact-info {
  background-color: #f9f9f9;
  padding: 50px 20px;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Information Styles */
.contact-container h2 {
  color: #ff6b81; /* Brand color */
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-container p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

.contact-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.1rem;
  color: #333;
}

img, video {
  max-width: 100%;  /* Ensure media scales with the viewport */
  height: auto;     /* Maintain aspect ratio */
}

.contact-container ul li {
  margin-bottom: 10px;
}

.contact-container ul li strong {
  font-weight: 600;
  color: #333;
}

.contact-container p:last-child {
  margin-top: 20px;
  font-style: italic;
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
      padding: 20px;
  }

  .contact-container h2 {
      font-size: 2rem;
  }

  .contact-container p, .contact-container ul {
      font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .text {
      padding: 0 1rem;  /* Add padding within bounds */
  }
}