
/* Header */


/* Image Section */
.image-section img{
    width: 100%;
    /* height: 50lvh;  */
}



.image-text {
    
    text-align: center;
    padding: 20px;
}

.bottom-img {
    display: block;
    margin: 2rem auto;
    width: 100%;
    max-width: 90%;
  }
  
  @media (min-width: 768px) {
    .bottom-img {
      width: 30%;
    }
  }
  

.image-text h1 {
    font-size: 36px;
    margin: 0;
}

.image-text p {
    font-size: 20px;
    margin-top: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}



/* Center the button */
.order-btn {
    display: block;
    margin: 10px auto; /* Centers the button horizontally and adds some vertical margin */
    background-color: #bf3272;
    ; 
    color: white; /* White text */
    border: none; /* Removes default border */
    font-size: 18px; /* Adjusts the font size */
    cursor: pointer; /* Adds a pointer cursor on hover */
  }
  
  /* Add some hover effect */
  .order-btn:hover {
    background-color: #6c115b; /* Slightly darker green */
  }
  



/* Products */
.products {
    padding: 20px;
}

.products .product-header {
    width: 100%;
    height: 50%;
    /* margin: 20px 0; */
    /* border-bottom: 2px solid rgb(96, 94, 94); */
    /* padding-bottom: 1rem; */
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 items in a row for large screens */
    gap: 20px;
    margin-top: 20px;
}

.product-item {
    text-align: center;
    padding: 10px;
    /* border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.product-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; /* Ensures the image maintains a 1:1 aspect ratio */
    border-radius: 10px;
    object-fit: cover; /* Ensures the image covers the square without distortion */
}


.product-item p {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}


/* whatsapp-icon-styles */

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    z-index: 1000;
}


/* infinite-txt-star */

.infinite-txt-star{
    width: 50px;
    margin-left: 14px;
    padding-bottom: 1rem;
}



.scrolling-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;  /* Ensures the content stays in one row */
    padding: 2rem;
  }

  .scrolling-text {
    display: inline-flex;  /* Inline-flex keeps everything in one row */
    align-items: center;
    animation: scroll-left 35s linear infinite; /* Animation for scrolling */
    font-size: 72px; /* Doubling the original font size */
    font-weight: bold;
  }

  .scrolling-text span {
    padding-right: 100px;  /* Gap between items */
    -webkit-text-stroke: 2px #636363; /* Outline effect */
    color: transparent; /* Hide fill initially */
    transition: color 0.3s ease, -webkit-text-stroke-color 0.3s ease;
  }

  .scrolling-text span:hover {
    color: #bf3272; /* Fill color upon hover */
    -webkit-text-stroke-color: #bf3272;
  }

  /* Keyframes: moves the entire text block to the left by 50% of its width */
  @keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }







/* footer styles */

.site-footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
	margin-top: 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    width: 200px;
    margin-bottom: 20px;
}

address {
    margin-bottom: 20px;
    font-style: normal;
	font-size: 1.4rem;
    line-height: 2rem;
}

.footer-links {
    display: flex;
    gap: 35px;
}

.copyright{
  margin: 16px 4px;
  font-size: 1.2rem;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
	font-size: 1.2rem;
}

.footer-links a:hover {
    color: #ff9900; /* Change the color on hover */
	text-decoration: underline;
}


/* Media Queries for Mobile Responsiveness */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 items in a row for medium screens */
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 items in a row for smaller screens */
    }

    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 10px;
    }

    .image-text h1 {
        font-size: 32px;
    }

    .image-text p {
        font-size: 16px;
    }

    .product-item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr; /* 1 item per row on very small screens */
    }
}
