/* import */
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --white-color: #fff;
    --dark-color: #252525;
    --primary-color:#301231; /*#3b141c; */
    /* --secondary-color: #f3961c; */
    --secondary-color: #fbbf24;
    --light-pink-color: #faf4f5;
    --medium-gray-color: #ccc;

    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    --site-max-width: 1300px;
}

ul {
    list-style: none;
}

a {
     text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

img {
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

.section-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
}
.section-title {
    text-align: center;
    padding: 10px 0 10px;
    text-transform: uppercase;
    font-size: var(--font-size-xl);
}

.section-title::after {
    content:"";
    width: 70px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--secondary-color);
}

.section-title-sm::after {
    content:"";
    width: 70px;
    height: 5px;
    display: block;
    /* margin: 10px auto 0; */
    border-radius: var(--border-radius-s);
    background: var(--secondary-color);
}

.section-title-sm {
    /* padding-bottom: 10px; */
    margin: 15px 0;
    text-transform: uppercase;
    font-size: var(--font-size-s);
}

.text-sm {
    /* line-height: 30px; */
}

header {
    position: fixed;
    width: 100%;
    z-index: 5;
    background: var(--primary-color) ;
    /* box-shadow: 2px 0px 3px; */
        /* border-bottom: 1px solid #dcb549; */
    /* border-bottom-right-radius: 3%; */
    transition: all 0.5s;
}

.bottom-border {
    /* border-bottom: 2px solid #29102a; */
    box-shadow: 0px 0px 3px;
}

header .navbar {
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

.navbar .nav-logo .logo-text {
    color: var(--white-color);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    font-family: 'Great Vibes';
    /* color: gold; */
}

.navbar .nav-menu {
    display: flex;
    gap: 10px;
}

.navbar .nav-menu .nav-link {
    padding: 10px 18px;
    color: var(--white-color);
    font-size: var(--font-size-m);
    border-radius: var(--border-radius-m);
    transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
    color: var(--primary-color);
    background: var(--secondary-color);
}

#menu-close-button, #menu-open-button {
    display: none;
}

/*  */
.hero-section {
    min-height: 100vh;
    background: var(--primary-color);
}

.hero-section .section-content {
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--white-color);
    justify-content: space-between;
}

.hero-section .hero-details .title {
    font-size: var(--font-size-xxl);
    color: var(--secondary-color);
    font-family: "Miniver", sans-serif;
}

.hero-section .hero-details .subtitle {
    margin-top: 8px;
    max-width: 70%;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}

.hero-section .hero-details .description {
    max-width: 70%;
    margin: 24px 0 40px;
    font-size: var(--font-size-m);
    text-transform: capitalize;
}

.hero-section .hero-details .buttons {
    display: flex;
    gap: 23px;
}

.hero-section .hero-details .button {
    padding: 10px 26px;
    border: 2px solid transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius-m);
    background: var(--secondary-color);
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
}

.hero-section .hero-details .button:hover,
.hero-section .hero-details .contact-us {
    color: var(--white-color);
    border-color: var(--white-color);
    background: transparent;
}

.hero-section .hero-details .contact-us:hover {
    color: var(--primary-color);
    border-color: var(--secondary-color);
    background: var(--secondary-color);
}

.hero-section .hero-image-wrapper {
    max-width: 500px;
    margin-right: 30px;
}

/*  */
.about-section {
    padding: 120px 0;
    /* background: var(--light-pink-color); */
    /* background-image: url("images/backgrund.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.4; */
    position: relative;
}

.about-section::before {
    content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('images/light gray background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5; /* Adjust opacity here */
  z-index: 0;
}

.about-section .section-content {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    position: relative;
}

.about-section .about-image-wrapper .about-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-m);
}

.about-section .about-details .section-title {
    padding: 0;
}

.about-section .about-details {
    max-width: 50%;
}

.about-section .about-details .text {
    line-height: 30px;
    margin: 50px 0 30px;
    text-align: left;
    font-size: var(--font-size-m);
}

 .social-link-list {
    display: flex;
    gap: 25px;
    justify-content: center;
}

 .social-link-list .social-link {
    color: var(--primary-color);
    font-size: var(--font-size-l);
    transition: 0.2s ease;
}

 .social-link-list .social-link:hover {
    color: var(--secondary-color);
}

/*  */
/* .menu-section {
    color: var(--white-color);
    background: var(--dark-color);
    padding: 30px 0 50px;
}

.menu-section .menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 110px;
    align-items: flex-start;
    justify-content: space-between;
}

.menu-section .menu-list .menu-item {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% / 3 - 110px);
    text-transform: capitalize;
}

.menu-section .menu-list .menu-item .menu-image {
    max-width: 83%;
    aspect-ratio: 1;
    margin-bottom: 15px;
    object-fit: contain;
    height: auto;
}

.menu-section .menu-list .menu-item .name {
    margin: 12px 0;
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-semibold);
}

.menu-section .menu-list .menu-item .text {
    font-size: var(--font-size-m);
} */


/* .product-container {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 20px;
    width: 80%;
    max-width: 1200px;
    padding: 20px;
}
.product-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.product-image {
    width: 100%;
    height: auto;
}
.product-info {
    padding: 15px;
}
.product-info h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}
.product-info p {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
} */

/* .product-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: green;
    height: 600px;
}
.product-container .product-item {
    background-color: #6b46c1;
    width: 60%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    height: 50%;
    /* margin: 10px auto;
    flex-direction: row;
}
.product-container .product-item .product-info {
    width: 50%;
    /* height: 100%;
}
.product-container .product-item img {
    /* float: left;
    width: 50%;
    /* height: 50%;
    object-fit: contain;
} */

/* working-product container new design */
/* .product-container {
    display: grid;
    grid-template-columns: repeat(2, 4fr);
    background-color: #fff;
    gap: 10px;
    margin: 10px;
    padding: 2px;
}
.product-container .product-item {
    gap: 2px;
    display: flex;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 5px;
    height: 300px;
} */
/* .product-container .product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #fbbf24;
    transition: 0.5s;
    z-index: -1;
} */
/* .product-container .product-item:hover::before {
    width: 100%;
} */
/* .product-container .product-item:hover {
    background-color: #fbbf24;
    width: 100%;
    border-radius: 5px;
} */
/* .product-container .product-item:hover .product-info {
    background-color: transparent;
}
.product-container .product-item img {
    width: 40%;
    height: auto;
    z-index: 4;
}
.product-container .product-item .product-info {
    background-color:#f2f6f6;
    align-content : center;
    padding: 3px;
    border-radius: 3px;
    width: 50%;
} */
.product-container {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
    margin: auto;
    /* padding: 2px; */
    width: 80%;
    padding-bottom: 15px;
    border-bottom: 2px solid #fbbf24;
}
.product-container .product-item {
    display: flex;
    /* border-radius: 2px; */
    position: relative;
    z-index: 1;
    text-transform: capitalize;
}
.product-container .product-item .product-info {
    width: 50%;
    background: #cdbfd4;
    align-content: center;
    padding: 10px;
    border-radius: 2px;
    /* word-break: break-all; */
}
.product-container .product-item .product-item-img {
    width: 50%;
}
.product-container .product-item .product-item-img img {
    height: 50%;
  position: relative;
  height: 260px;
  display: flex;
  justify-content: flex-end;
  object-fit: contain;
}
.product-container .product-item::before {
    content: '';
    position: absolute;
    top:0;
    left:0;
    width: 0;
    height: 100%;
    background-color: #fbbf24;
    transition: 0.5s;
    z-index: -1;
    border-radius: 2px;
}
.product-container .product-item:hover::before {
    width: 100%;
}
.product-container .product-item:hover .product-info {
    background-color: transparent;
}


.testimonials-section {
    /* padding: 50px 0 100px; */
    background: #fff;
    padding-bottom: 30px;
}

.border-testi {
    border-bottom: 1px solid var(--primary-color);
    /* height:4px; */
    background: var(--primary-color);
    width: 300px;
    margin: auto;
}

.testimonials-section .slide-wrapper {
    overflow: hidden;
    /* margin: 0 60px 50px; */
}

.testimonials-section .testimonial {
    display: flex;
    /* padding: 35px; */
    text-align: center;
    flex-direction: column;
    align-items: center; justify-content: center; height: 200px;
}

.swiper {
    height: 300px;
}

.testimonials-section .testimonial .user-image {
    width: 50%;
    /* height: 150px; */
    object-fit: cover;
    /* margin-bottom: 30px; */
    /* border-radius: var(--border-radius-circle); */
}

.testimonials-section .testimonial .name {
    /* margin-bottom: 16px; */
    font-size: var(--font-size-m);
}

.testimonials-section .testimonial .feedback {
    /* line-height: 25px; */
}

.testimonials-section .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    opacity: 1;
    background: var(--secondary-color);
}

.testimonials-section .swiper-slide-button {
    margin-top: -30px;
    color: var(--secondary-color);
    transition: 0.3s ease;
}

.testimonials-section .swiper-slide-button:hover {
    color: var(--primary-color);
}

.gallery-section {
    padding: 50px 0 100px;
}

.gallery-section .gallery-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.gallery-section .gallery-list .gallery-item {
    overflow: hidden;
    border-radius: var(--border-radius-s);
    width: calc(100% / 3 - 32px);
}

.gallery-section .gallery-item .gallery-image {
    width: 100%;
    height: 100%;
    cursor: zoom-in;
    transition: 0.3s ease;
}

.gallery-section .gallery-item:hover .gallery-image {
    transform: scale(1.3);
}

.contact-section {
    padding-top: 30px;
    background: var(--light-pink-color);
}

.contact-section .section-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;
}

.contact-section .contact-info-list .contact-info {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
}

.contact-container {
    max-width: 1170px;
    margin:auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.footer-col {
    width: 50%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: var(--primary-color);
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.contact-info {
    word-break: break-all;
}

.social-links {
    width: 100%;
}

.social-links .social-link {
    color: var(--primary-color);
    font-size: var(--font-size-xl);
    margin-right: 20px;
}

.product-table-container {
    /* background-color: rgba(50, 48, 53, 0.5);
    border-radius: 0.5rem;
    padding: 1rem; */
    /* margin-top: 2px; */
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    /* overflow: hidden; */
    border-radius: 0.5rem;
    border: 1px solid #6b46c1;
}

.table-header {
    background-color: rgba(51, 49, 56, 0.7);
}

.table-header th {
    padding: 0.75rem 1rem;
    text-align: left;
    color: #fbbf24;
    font-weight: 600;
    font-size: 0.875rem;
}

.table-row {
    border-top: 1px solid rgba(107, 70, 193, 0.3);
}

.table-cell {
    padding: 0.75rem 1rem;
}

.table-cell.size {
    color: black;
    font-weight: 500;
}

.table-cell.quantity {
    /* color: #c4b5fd; */
    color: black;
}

table, th, tr, td {
    border: 1px solid #000;
    border-collapse: collapse;
}

@media screen and (max-width: 1024px) {
    .menu-section .menu-list {
        gap: 60px;
    }

    .menu-section .menu-list .menu-item {
        width: calc(100% / 3 - 60px);
    }

    /* .product-table {
        width:50%;
    } */
}

@media screen and (max-width: 900px) {
    :root {
        --font-size-m: 1rem;
        --font-size-l: 1.3rem;
        --font-size-xl: 1.5rem;
        --font-size-xxl: 1.8rem;
    }

    body.show-mobile-menu header::before {
        content: "";
        position: fixed;
        left:0;
        top:0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(5px);
        background:rgba(0, 0, 0, 0.2);
    }

    #menu-close-button, #menu-open-button {
        display: block;
        font-size: var(--font-size-l);
    }

    .navbar #menu-close-button {
        position: absolute;
        right: 30px;
        top: 30px;
    }

    .navbar #menu-open-button {
        color: var(--white-color);
    }

    .navbar .nav-menu {
        display: block;
        position: fixed;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        background: var(--white-color);
        transition: left 0.2s ease;
    }

    body.show-mobile-menu .navbar .nav-menu {
        left: 0;
    }

    .navbar .nav-menu .nav-link {
        color: var(--dark-color);
        display: block;
        margin-top: 17px;
        font-size: var(--font-size-l);
    }

    .hero-section .section-content {
        gap: 50px;
        text-align: center;
        padding: 30px 20px 20px;
        flex-direction: column-reverse;
        justify-content: center;
    }

    .hero-section .hero-details :is(.subtitle, .description), .about-section .about-details {
        max-width: 100%;
    }

    .hero-section .hero-details .buttons {
        justify-content: center;
    }

    .hero-section .hero-image-wrapper {
        max-width: 270px;
        margin-right: 0;
    }

    .about-section .section-content {
        gap: 70px;
        flex-direction: column-reverse;
    }

    .about-section .about-image-wrapper .about-image {
        width: 100%;
        height: 100%;
        max-width: 250px;
        aspect-ratio: 1;
    }

    .menu-section .menu-list {
        gap: 30px;
    }

    .menu-section .menu-list .menu-item {
        width: calc(100% / 2 - 30px);
    }

    .menu-section .menu-list .menu-item .menu-image {
        max-width: 200px;
    }

    .gallery-section .gallery-list {
        gap: 30px;
    }

    .gallery-section .gallery-list .gallery-item {
        width: calc(100% / 2 - 30px);
    }
}

@media screen and (max-width: 640px) {
    .menu-section .menu-list {
        gap: 60px;
    }
    
    .menu-section .menu-list .menu-item, 
    .gallery-section .gallery-list .gallery-item {
        width: 100%;
    }

    .testimonials-section .slide-wrapper {
        margin: 0 0 30px;
    }

    .testimonials-section .swiper-slide-button {
        display: none;
    }

    .product-container .product-item .product-info {
        background-color: white;
    }

    /* table {
        width: 100%;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    } */

    /* table th, table td {
        display: block;
        width: 100%;
    } */

    /* .product-container {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    } */

    /* .product-table {
        width: 500px;
    } */

}

/* Media Query for Mobile Screens */
@media (max-width: 640px) { /* Adjust the breakpoint as needed */
    .product-container {
        width: 95%; /* Make it slightly wider on mobile */
        padding: 10px; /* Increase padding for better touch targets */
        display: grid;
        grid-template-columns: repeat(1,3fr);
    }

    .product-container .product-item {
        flex-direction: column; /* Stack items vertically */
    }

    .product-container .product-item .product-info {
        width: 100%; /* Full width */
        margin-bottom: 10px; /* Add space between info and image */
    }

    .product-container .product-item .product-item-img {
        width: 100%; /* Full width */
    }

    .product-container .product-item .product-item-img img {
        height: auto; /* Let the image scale naturally */
         max-height: 300px; /*Set a max height to prevent it from being too large */
        width: 100%; /* Ensure it fills the container width */
        object-fit: contain; /* Or 'contain' depending on your preference */
        object-position: center; /* Center the image if using 'cover' */
    }
}

/* https://www.youtube.com/watch?v=MYFgtnKMDp4&list=PLpwngcHZlPac0R1SCOLMRu6FBZTTuEyF2 */