body{
    background-color: rgb(249, 230, 207);
}
.carousel-container {
    width: 100%;
    height: 80vh;
    position: relative;
    overflow: hidden; /* Prevents overflow of images */
}
.carousel {
    position: relative;
    width: 100%;
    height: 300%; /* Three images in the carousel */
}
.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh; /* Each image takes full screen height */
      object-fit: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(100%); /* Start offscreen */
    transition: opacity 1s ease-in-out;  /* Smooth fade and slide */
}
.carousel-item.active {
    opacity: 1; /* Make active items visible */
    
    transform: translateY(0); /* Slide in */
}
.image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-size: cover;
    background-position: center;
    transition: transform 10s ease-in-out; /* Smooth zoom effect */

}
/* Text overlay */
.overlay {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
     display: flex;
    flex-direction: column;
    align-items: center;   /* Center content horizontally */
    justify-content: center; /* Center content vertically */
    width: 100%;
}
.overlay h2,
.overlay p {
    margin: 5px 0;
    font-family: Arial, sans-serif;
    color: white;
}
.overlay h2 {
    font-size: 2.5rem;
    font-family: 'Varela Round', sans-serif;
  font-optical-sizing: auto;
 
}
.overlay p {
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 1s ease-in-out 0.5s; /* Delay for paragraph */
     font-family: 'Varela Round', sans-serif;
  font-optical-sizing: auto;

}
.button{
   
    width: 200px;
    height:50px;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    background-color:#bd516c; 
    color: white;
    border-radius: 30px;
    transition:opacity 1s ease-in-out 1s ;
    font-size: 1rem;
     font-family: 'Varela Round', sans-serif;
}
.button245{
    width: 150px;
    height: 50px;
    background-color: #5A6CA5;
    color: white;
    border: none;
    font-size: 1.2rem;
    font-family: "Cormorant", serif;
}
.button245:hover{
    background-color: #5A6CA5;
}
.carousel-item.active .overlay {
    opacity: 1;
}
.carousel-item.active .overlay p {
    opacity: 1; /* Show paragraph after delay */
}







                    /*footer styling*/
.footer{
    background-color: #A67C52 ;
}
.list-unstyled a,
.text-black{
    text-decoration: none;
    color: rgb(33, 37, 41);
}
.product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
}
.product-card {
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.product-card img {
    width: 100%;
    height: 40vh;
    border-radius: 10px;
}
.product-card h4 {
    margin-top: 10px;
    color: #BD516C;
}
.product-card button {
    background-color: #5A6CA5;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 05px;
}
.product-card button:hover {
    background-color: #BD516C;
}
.our-shop{
    margin-top: 50px;
}
.image-shop{
    height: 90vh;
    width: 100%;
}
.products img{
    margin-top: -120px;
    height: 220px;
    width: 220px;
    margin-left: -150px;
}
.speciality img:hover{
    animation: mymove 5s infinite;
}
@keyframes mymove {
    20%{
        transform: rotate(45deg);
    }
   
 
}
.products img:hover,
.image-shop:hover{
    transform: scale(1.05); /* Slightly increase the size of the card */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Add a more prominent shadow */
}
@media(max-width:768px){
    .products img{
        margin-top: 10px;
        margin-left: 0px;
        width: 90%;
        height: 300px;
    }
}@media (min-width: 768.1px) and (max-width: 1024px){
    .products img{
        margin-top: 10px;
        margin-left: 0px;
        width: 100%;
        height: 300px;
    }
}
.more-products {
  position: relative;
  width: 100%;
  height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../includes/para-6.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin-top: 20px;
}
.more-products h1 {
  font-family: "Cormorant", serif;
  font-size: 50px;
  margin: 0;
  z-index: 2;
}
.image-cards {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 20px;
}
.image-card {
  width: 250px;
  height: 250px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}
.image-card img {
  width: auto;
  height: 100%;
  object-fit: cover;
}
.image-card p {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.image-card:hover{
     transform: scale(1.05); /* Slightly increase the size of the card */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Add a more prominent shadow */
}
/* @media (max-width: 768px) {
  .image-card {
    width: 50px !important;
   
    height: 50px !important;
    margin: 0 auto;

  }
  .more-products {
    height: auto;
    padding: 20px 0;
    width: 100%;
  }
}*/

.gluten{
   padding: 30px;
}

.gluten img:hover{
    transform: scale(1.05); /* Slightly increase the size of the card */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Add a more prominent shadow */
}
.gluten h1, p{
    text-align: center;
    color: grey;
}
.form label{
    text-align: justify;
}



/*about us*/


.about1687 h2{
text-align: right;
font-size: 38px;
font-family: "Cormorant", serif;
}
.about1687 p{
    font-family: "cabin" , serif;
    font-size: 17px;
}
/* .check-products{
    margin: 50px;
    padding-left: 150px;
} */
.check-products img{
    height: 80px;
   
}
.check-products p{
 justify-content: center;
}



/*contact page css*/
.contact-us-head{
    display: flex;
    height: auto;
    width: 95%;
    margin-top: 30px;
    border: 1px solid black;
    border-radius: 25px;
    margin-left: 25px !important;
}

.contact-us-left{
   width: 50%;
   background-color: #C9A882;
   color: white;
    border-top-left-radius: 25px;   
    border-bottom-left-radius:25px;
     padding: 15px 50px;
}
.contact-us-left h2{
    text-align: left;
    padding-bottom: 0;
    padding-top: 50px;
   
}
.contact-us-left p{
    font-weight: bold;
    border-bottom: 3px solid white;
}
.contact-us-right{
    width: 50%;
    padding: 60px 50px;
}
.contact-us-right h2{
    text-align: center;
}
.contact-text-group{
    padding-top: 40px;
    font-size: 20px;
}
.contact-text-group i{
    border: 10px solid black;
    border-radius:20px;
    background-color: black;
}
.contact-text-group a{
    color: white;
    text-decoration: none;
}
.contact-text-group a:hover{
    color: white;
}
@media (max-width: 768px) {
    .contact-us-head {
        flex-direction: column; /* Stack the sections vertically */
        margin-left: 0; /* Remove left margin */
        width: 95%; /* Full width on mobile */
        border-radius: 25px;
        padding-left: 0px !important;

    }

    .contact-us-left,
    .contact-us-right {
        width: 100%; /* Make both sections full width */
        padding: 15px 20px; /* Adjust padding for mobile */
        box-sizing: border-box;
    }
    .contact-us-left{
        background-color: #C9A882;
        border-bottom-left-radius:0;
        border-top-right-radius:25px ;
    }

    .contact-us-left h2 {
        padding-top: 20px; /* Reduce top padding */
        font-size: 24px; /* Adjust font size for mobile */
    }

    .contact-us-left p {
        font-size: 18px; /* Adjust font size for mobile */
    }

    .contact-us-right h2 {
        font-size: 24px; /* Adjust font size for mobile */
        text-align: center;
    }

    .contact-text-group {
        font-size: 18px; /* Adjust font size for mobile */
        padding-top: 20px; /* Adjust top padding */
    }

    .contact-text-group i {
        border-width: 5px; /* Reduce border width */
        border-radius: 15px; /* Adjust border radius */
    }
}
.contact-text-group svg{
    width: 40px;
    height: 50px;
}


.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}
.contact-form-container button{
    background-color: black;
}
.contact-form-container button:hover{
    background-color: grey;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 25px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background-color:#C9A882;
    border: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    width: 90%;
    height:40px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

/* Responsive design adjustments */
@media (max-width: 768px) {
    .contact-info, .contact-form-container {
        max-width: 100%;
    }
}

.map-container {
    width: 100%; /* Full width */
    height: 400px; /* Adjust height as needed */
    overflow: hidden; /* Hide overflow */
    border: 2px solid #ddd; /* Optional border */
    border-radius: 8px; /* Optional rounded corners */
}

.faq-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 60px 8%;
      gap: 2rem;
    }

    .faq-left {
      flex: 1 1 500px;
      animation: slideInLeft 1s ease forwards;
    }

    .faq-right {
      flex: 1 1 400px;
      display: flex;
      justify-content: center;
      align-items: center;
      animation: slideInRight 1s ease forwards;
    }

    .faq-right img {
      max-width: 100%;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s;
    }

    .faq-right img:hover {
      transform: scale(1.05);
    }

    h2.faq-title {
      font-size: 2.8rem;
      color: #ff5e57;
      margin-bottom: 30px;
      font-weight: 700;
      animation: fadeIn 1s ease-in-out;
    }

    .accordion-item {
      background: #fff;
      border-radius: 10px;
      margin-bottom: 15px;
      border: 1px solid #ffe3dc;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(255, 94, 87, 0.08);
    }

    .accordion-header {
      padding: 18px 24px;
      cursor: pointer;
      background: #ffe3dc;
      font-weight: 600;
      transition: background 0.3s ease;
      position: relative;
    }

    .accordion-header::after {
      content: '+';
      position: absolute;
      right: 24px;
      font-size: 20px;
      transition: transform 0.3s ease;
    }

    .accordion-header.active::after {
      transform: rotate(45deg);
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      background: #fffaf7;
      padding: 0 24px;
      transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .accordion-content p {
      padding: 16px 0;
      color: #444;
    }

    /* Animations */
    @keyframes slideInLeft {
      0% { opacity: 0; transform: translateX(-30px); }
      100% { opacity: 1; transform: translateX(0); }
    }

    @keyframes slideInRight {
      0% { opacity: 0; transform: translateX(30px); }
      100% { opacity: 1; transform: translateX(0); }
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: scale(0.95); }
      100% { opacity: 1; transform: scale(1); }
    }

    @media (max-width: 768px) {
      .faq-container {
        flex-direction: column;
      }

      .faq-right {
        margin-top: 40px;
      }
    }
