@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

:root {
    --bs-primary: #4B8D21;
    /* Green */
    --bs-secondary: #E15722;
    /* Warm Orange */
    --bs-success: #74A94D;
    /* Soft Leaf Green */
    --bs-danger: #C44E34;
    /* Deep Maroon */
    --bs-info: #4D8076;
    /* Muted Teal */
    --bs-warning: #F28C28;
    /* Sunset Orange */
    --bs-light: #FFFFFF;
    /* Off-White */
    --bs-dark: #000000;
    /* Rich Brown */
    --bs-border-color: #D9D4CF;
    /* Soft Gray */
}

body {
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    background-color: white;
    color: black;
}

@keyframes pulseAnimation {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.top-animate {
    animation: pulseAnimation 1s infinite ease-in-out;
}

.first-navbar {
    height: 56px !important;
    background-color: #E7D3B9;
}

.first-navbar div {
    justify-content: space-around !important;
}

.first-navbar div a {
    text-decoration: none;
    font-size: 0.9em;
    color: black;
}

.second-navbar {
    top: 56px !important;
}

.mobile-navbar {
    bottom: 0 !important;
}

.active-tab {
    color: var(--bs-primary) !important;
}

.navbar {
    height: 80px;
    /* Increase navbar height */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    /* Add subtle shadow */
    z-index: 1000;
    /* Ensure navbar stays above other content */
}

/* Center Navbar Items Vertically */
.navbar .navbar-brand,
.navbar-nav .nav-item {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Navbar Brand - Bigger Font & Centered */
.navbar-brand {
    font-size: 2rem;
    /* Increase font size */
    font-weight: bold;
    display: flex;
    align-items: center;
    /* Center vertically */
}

/* Navbar Links - Bigger Font & More Spacing */
.navbar-nav .nav-item {
    margin-right: 20px;
    /* Increase gap between menu items */
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    /* Increase font size */
    color: black;
    /* Default color */
    position: relative;
    transition: color 0.3s ease-in-out;
}

/* Underline Animation - Comes from Bottom */
.navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    /* Start position */
    width: 100%;
    height: 2px;
    background-color: var(--bs-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--bs-primary);
    /* Change color on hover */
}

.navbar-nav .nav-item .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Contact Button - Bigger, Animated Outline */
.navbar-nav .nav-item .btn-outline-success {
    font-size: 1.2rem;
    /* Increase font size */
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-item .btn-outline-success:hover {
    background-color: var(--bs-primary);
    color: var(--bs-light);
}

/* Navbar Dropdown Background Fix */
.navbar-collapse {
    background-color: white;
    padding: 10px;
    border-radius: 5px;
}

.shortcut-link {
    background-color: white;
    border: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.15s ease-in-out;
}

.shortcut-link:hover {
    transform: scale(1.04);
}

.card-body.icon-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.icon-text span {
    font-size: 0.85rem;
}

.icon-text i {
    color: var(--bs-primary);
}

/* ================= INFO SECTION ================= */
.info-section {
    padding: 40px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    line-height: 1.75;
}

/* Info Container */
.info-container {
    display: flex;
    max-width: 1200px;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Text Side */
.info-text {
    flex: 1;
    text-align: left;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--bs-primary);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    background-color: white;
}

.info-text p,
.info-text ul {
    margin-bottom: 5px;
}

.info-text ul li {
    color: var(--bs-success);
}

.info-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.desktop-image {
    flex: 1;
}

.mobile-image {
    display: none;
}

.faq-section {
    padding: 40px 10% 0 10%;
}

.accordion-item {
    border-top: 0px;
    border-bottom: 1px solid #D9D4CF;
    border-left: 0px;
    border-right: 0px;
}

.accordion-item:focus {
    border-top: 0px;
    border-bottom: 1px solid #D9D4CF;
    border-left: 0px;
    border-right: 0px;
}

.accordion-button:focus {
    box-shadow: none;
    outline: none;
    background-color: transparent;
    border-color: transparent;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: inherit;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1024px) {

    .card-body.icon-text {
        flex-direction: column;
    }

    .info-container {
        flex-direction: column;
        gap: 20px;
    }

    .desktop-image {
        display: none;
    }

    .mobile-image {
        display: flex;
        margin: 0 0 15px;
        align-items: center;
    }

    .mobile-image img {
        height: 50%;
        width: 100%;
    }

    .navbar-collapse ul li {
        margin-bottom: 10px;
    }

    .responsive-footer {
        margin-bottom: 80px;
    }
}

/* ================= SERVICES SECTION ================= */
.services-section {
    background-color: var(--bs-light);
    /* Light grayish-green background */
    width: 100vw;
    /* Ensure full width */
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.active-category {
    border: 2px solid var(--bs-primary);
}

.active-category-text {
    color: var(--bs-primary);
}

/* Title */
.services-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: var(--bs-primary);
    margin-bottom: 20px;
}

/* Services Container */
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.home-service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
    text-decoration: none;
}

.home-service-card h4 {
    font-size: 1.25rem;
    color: black;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}

.home-service-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-left: 10px;
    margin-right: 10px;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: scale(1.05);
}

/* Service Title */
.service-card h4 {
    font-size: 1.25rem;
    color: black;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Service Description */
.service-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-left: 10px;
    margin-right: 10px;
}

.flatpickr-day.nextMonthDay {
    color: #393939 !important;
    opacity: 1;
}

.flatpickr-day.nextMonthDay.flatpickr-disabled {
    color: #3939394d !important;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 30%;
    text-decoration: none;
    padding: 10px;
}

.product-card-body {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.product-card-body img {
    width: 40%;
    object-fit: cover;
    border-radius: 8px;
}

.product-card-text {
    display: flex;
    flex-direction: column;
    width: 80%;
}

/* Product Title */
.product-card-text h4 {
    font-size: 1.25rem;
    color: var(--bs-primary);
    margin-bottom: 5px;
    text-align: left;
    font-weight: bold;
}

/* Product Description */
.product-card-text span {
    font-size: 1rem;
    color: var(--bs-primary);
    line-height: 1.6;
    text-align: left;
    font-weight: bold;
}

.product-card-middle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-footer {
    background-color: #def4e4;
    width: 80%;
    padding: 10px 20px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 10px -4px 10px rgba(0, 0, 0, 0.1);
    left: 50%;
    transform: translateX(-50%);
}

.cart-footer span {
    color: var(--bs-primary);
    font-size: 1.2rem;
    font-weight: bold;
}

.cart-container {
    width: 50%;
}

.whatsapp-button {
    position: fixed;
    bottom: 48px;
    right: 24px;
    z-index: 100;
}

.whatsapp-button button {
    background-color: var(--bs-primary);
    color: white;
}

.whatsapp-button button:hover {
    background-color: var(--bs-primary);
    color: white;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1024px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .home-service-card {
        width: 100%;
    }

    .service-card {
        width: 100%;
    }

    .product-card {
        width: 100%;
    }

    .cart-footer {
        width: 100%;
        margin-bottom: 80px;
    }

    .cart-container {
        width: 100%;
    }

    .whatsapp-button {
        bottom: 96px;
    }
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    background-color: var(--bs-light);
    width: 100vw;
    padding: 40px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    display: flex;
    max-width: 1100px;
    width: 100%;
    gap: 50px;
}

/* Contact Form (Left Side) */
.contact-form {
    flex: 1;
}

.contact-title span {
    color: var(--bs-primary);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

.contact-subtitle {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-form form label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    margin-top: 5px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
}

.checkbox-container input {
    margin-right: 10px;
    margin-top: 5px;
    width: auto;
}

.checkbox-container label {
    margin-top: 0px !important;
}

.submit-btn {
    width: 100%;
    background-color: var(--bs-primary);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease-in-out;
}

.submit-btn:hover {
    background-color: green;
}

/* Contact Info (Right Side) */
.contact-info {
    flex: 1;
    background-color: var(--bs-light);
    border-radius: 10px;
    height: fit-content;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.contact-info a {
    color: var(--bs-dark);
}

.day-width {
    width: 20%;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-section {
        padding: 10px 5%;
    }

    .day-width {
        width: 40%;
    }
}

/* ========== SCROLLING SECTION ========== */
.scrolling-section {
    width: 100vw;
    overflow: hidden;
    background-color: #E7D3B9 !important;
    /* Light background */
    margin-top: 136px;
    white-space: nowrap;
    position: relative;
}

.scrolling-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.scrolling-items {
    display: flex;
    gap: 50px;
    animation: scrollAnimation 20s linear infinite;
}

.scrolling-item {
    flex: 0 0 auto;
    font-size: 1.2rem;
    color: black;
    padding: 15px 30px;
}

/* Infinite Scroll Animation */
@keyframes scrollAnimation {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.carousel-menu-card {
    width: 30%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-menu-card img {
    width: 100%;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .scrolling-item {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .carousel-menu-card {
        width: 100%;
    }
}

/* ========== GUARANTEE & SUPPORT SECTION ========== */
.guarantee-section {
    width: 100%;
    background-color: var(--bs-light);
    padding: 40px 0;
}

.guarantee-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px 0px 40px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.guarantee-item img {
    width: 50px;
    /* Adjust size as needed */
    height: 50px;
}

.guarantee-text h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--bs-dark);
}

.guarantee-text p {
    font-size: 1rem;
    margin: 5px 0 0;
    color: #666;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .guarantee-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .guarantee-item {
        width: 100%;
    }

    .guarantee-item img {
        width: 40px;
        height: 40px;
    }

    .guarantee-text h3 {
        font-size: 1.3rem;
    }

    .guarantee-text p {
        font-size: 0.9rem;
    }
}

.custom-border {
    width: 100%;
    height: 1px;
    margin: 0;
    background-color: var(--bs-dark);
}

/* ================= REVIEW SECTION ================= */
.review-heading {
    margin-top: 40px !important;
    padding: 0 10%;
}

.review-heading-two {
    color: var(--bs-dark);
    font-size: 1.6rem;
    font-weight: bold;
}

.review-section {
    padding: 30px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bs-light);
}

/* Review Container */
.review-container {
    display: flex;
    max-width: 1200px;
    align-items: center;
    gap: 50px;
    background-color: var(--bs-light);
    border-radius: 10px;
}

/* Text Side */
.review-text {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Five Star Icons */
.review-stars {
    display: flex;
    gap: 5px;
    align-self: center;
    margin-bottom: 10px;
}

.review-stars i {
    font-size: 24px;
    color: var(--bs-warning);
}

.review-description {
    font-size: 1rem;
    color: var(--bs-dark);
    line-height: 1.6;
}

.review-link {
    font-size: 1rem;
    color: var(--bs-dark);
}

/* Image Side */
.review-image {
    flex: 1;
    display: flex;
    align-items: center;
}

.review-image img {
    width: 100%;
    height: 500px;
    object-fit: fill;
    border-radius: 10px;
}

.review-btn {
    background-color: var(--bs-danger);
    color: var(--bs-light);
    font-size: 1.1rem;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 10px;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1024px) {

    /* Review Section - Stack Content */
    .review-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .review-text {
        align-items: center;
    }

    .review-description {
        font-size: 1rem;
    }

    .review-link {
        font-size: 1rem;
    }

    .review-image img {
        height: auto;
        /* Maintain aspect ratio */
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    /* Review Section */
    .review-description {
        font-size: 1rem;
    }

    .review-stars {
        font-size: 20px;
    }

    .review-link {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    /* Review Section */
    .review-description {
        font-size: 1rem;
    }

    .review-link {
        font-size: 1rem;
    }
}

.menu-section {
    padding: 0px 10% 40px 10%;
}

.menu-container {
    max-width: 80%;
    margin: auto;
    background-color: var(--bs-light);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.menu-header {
    background-color: var(--bs-primary);
    color: var(--bs-light);
    padding: 10px;
    font-size: 1.5rem;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}


.day-card {
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    align-content: center;
    color: var(--bs-primary);
    background-color: white;
    border: 1px solid var(--bs-primary);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.day-card h5 {
    color: black;
    font-weight: bold;
}

.day-card span {
    text-align: justify;
}

.day-card span p {
    margin-bottom: 0px;
}

@media screen and (max-width: 768px) {
    .menu-container {
        max-width: 100%;
        padding: 10px;
        margin: 10px;
    }

    .menu-header {
        font-size: 1.2rem;
        padding: 8px;
    }
}

.quantity-container {
    display: flex;
    justify-content: start;
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    width: 150px !important;
}

.quantity-btn {
    background: none;
    background-color: #dedede;
    border: none;
    font-size: 1.5rem;
    color: var(--bs-dark);
    cursor: pointer;
    width: 30px;
    border: 0;
    border-radius: 10px;
}

.general-description {
    margin: auto;
    width: 80%;
    margin-top: 40px;
}

.rating-section {
    width: 100%;
    margin-top: 40px;
}

.rating-section .row {
    justify-content: space-around !important;
}

.general-description h3 {
    text-align: center;
    font-size: 1.2rem;
}

.general-description p {
    margin-bottom: 0;
    color: var(--bs-primary);
    font-weight: bold;
}

.user-review-section {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: start;
}

@media (max-width: 768px) {

    .general-description,
    .rating-section,
    .user-review-section {
        width: 100%;
        padding: 20px;
    }
}

.ql-size-small {
    font-size: 0.75rem;
}

.ql-size-large {
    font-size: 1.75rem;
}

.ql-size-huge {
    font-size: 2.5rem;
}

.ql-align-left {
    text-align: left;
}

.ql-align-right {
    text-align: right;
}

.ql-align-center {
    text-align: center;
}

.ql-align-justify {
    text-align: justify;
}

.custom-style {
    border-width: 0 !important;
    background-color: #dedede !important;
}

.custom-style:focus {
    border: 1px solid var(--bs-success) !important;
    box-shadow: none !important;
    background-color: #fafafa !important;
}

.btn-success {
    background-color: var(--bs-primary) !important;
    color: var(--bs-light) !important;
}

.btn-success:hover {
    background-color: green !important;
}

.star-rating {
    width: 20rem;
    direction: rtl;
    display: inline-block;
    cursor: pointer;
}

.star-rating input {
    display: none;
}

.star-rating label {
    width: 2rem;
    color: #ddd;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input:checked~label {
    color: #ffc107;
}

.inputBlock {
    display: none;
}

.policy-section {
    display: flex;
    justify-content: space-evenly;
}

.policy-section a {
    text-decoration: none;
    color: var(--bs-primary);
}
