@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,700;1,600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
}

.floating-button {
    position: fixed;
    bottom: 80px;
    right: 20px;
    padding: 10px 20px;
    background-color: #bd937a;;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s;
    font-size: medium;
  }
  
  .floating-button.hidden {
    opacity: 0;
    pointer-events: none;
  }

body {
    color: black;
    /* background: #161c2a; */
    /* background: #616447; */
    background: #372718;
}

body header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 120px;
    /* background: #161c2a; */
    background: #372718;
}

.logo {
    /* color: #bd5c20; */
    color: #bd937a;
    font-weight: 510;
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
}

.navbar {
    display: flex;

}

.navbar a {
    color: white;
    font-size: 1rem;
    padding: 10px 15px;
    font-weight: 500;
}

.navbar a:hover {
    /* color: #bd5c20; */
    color: #bd937a;
    transition: .4s;
}


/* notify item has been added to the cart when using laptop */
.navbar li a #cart-notify {
    position: relative;
    display: none;
    visibility: hidden;
}

/* notify item has been added to the cart when using phone or tablet size screen */
header div i {
    position: relative;
    display: none;
    visibility: hidden;
}

#menu-icon {
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

section {
    padding: 70px 17%;
}

.home {
    width: 100%;
    min-height: 99vh;
    display: grid;
    grid-template-columns: repeat(2, 500px);
    grid-gap: 2px;
    align-items: center;
}

.home .home-text {
    /* color: #7f4520; */
    color: #bd937a;
}

.home .home-text h3,
.home .home-text h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: white;
}

.home .home-text h3 {
    font-size: 35px;
    /* color: #bd5c20; */
    color: #bd937a;
}

.home .home-text h4 {
    font-size: 25px;
}

.home img {
    max-width: 100%;
    width: 380px;
    height: auto;
}

/* section .home-img{
    display: flex;
} */

.btn {
    display: inline-block;
    padding: 10px 20px;
    color: #161c2a;
    /* background: #bd5c20; */
    background: #bd937a;
    border-radius: 8px;
    font-weight: bold;
}

.btn:hover {
    transform: scale(1) translateY(8px);
    transition: 0.3s;
}

.about .about-text h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: white;
    font-size: 25px;
}

/* .about .about-text h2{
    font-size: 25px;
} */

.about .about-text span {
    /* color: #bd5c20; */
    color: #bd937a;
    font-weight: bold;
    font-size: larger;
}

.about .about-text p {
    color: white;
    font-size: small;
    margin-bottom: 10px;
}

.about {
    display: grid;
    grid-template-columns: repeat(2, 500px);
    grid-gap: 1.5rem;
    align-items: center;
}

.about-img img {
    max-width: 100%;
    width: 350px;
    height: auto;
}

.heading {
    text-align: center;
    margin: 2%;
}

.heading span {
    color: #bd937a;
    font-weight: bold;
    font-size: larger;
    /* color: #bd5c20; */
}

section .heading h2 {
    font-size: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: white;
}


.menu .menu-container .box {
    width: max-content;
    align-items: center;
    position: relative;
    margin-top: 4rem;
    height: auto;
    justify-content: center;
    display: flex;
    flex-direction: column;
    /* border: 2px solid #bd5c20;*/
    /* border: 2px solid #bd937a;
    border-radius: 8px; */
}

.menu .menu-container .box ul {
    font-family: 'Poppins', sans-serif;
    text-justify: inherit;
    /* text-align: center; */
}

.menu .menu-container .box ul li {
    list-style: circle;
    color: #bd937a;
    cursor: pointer;
}

.menu .menu-container {
    align-items: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, auto));
    grid-gap: 4rem;
    grid-row-gap: 2%;
    /* border-radius: 8px; */
    /* padding-left: 10px; */
}

.menu-container .box  ul .menuopt:hover{
    color: #fff;
    transition: .4s;
}

.order-contsiner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, auto));
    grid-gap: 0.5rem;
    margin-top: 4rem;
}

.o-box {
    text-align: center;
    padding: 20px 30px;
}

.o-box h3 {
    font-family: 'Poppins', sans-serif;
    color: #bd937a;
    font-size: medium;
    font-weight: bold;
}

.o-box p {
    color: white;
}

.o-box i {
    font-size: 70px;
    color: #bd937a;
}

/* Extra Section */
.cta {
    background: #bd937a;
    padding: 70px 0;
    text-align: center;
    width: 60%;
    margin: 100px auto;
    border-radius: 10px;
}

.cta h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: aliceblue;
}


/* Footer */
#instagram,
#credit,
#package {
    cursor: pointer;
}

.main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .footer {
    padding-left: 10px 0;
    align-items: center;

}

.contact .footer .main {
    width: auto;
    align-items: center;
}

.main .col {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.col h4 {
    font-family: 'Poppins', sans-serif;
    color: #bd937a;
    font-size: medium;
    font-weight: bold;
    margin-bottom: 18px;
    text-align: center;
}

.main .col .title::before {
    content: " ";
    position: absolute;
    height: 2px;
    width: 50px;
    left: auto;
    margin-top: 24px;
    margin-left: 1.5%;
    /* bottom: -8px; */
    /* top: 2540; */
    background: white;
}

/* .underline{
    border-bottom: 2px solid white;
    display: inline;
} */

/* .col ul li:not(last-child) {
    margin-bottom: 15px;
} */

/* .col ul li {
    color: white;
}

.col ul li:hover {
    color: #bd937a;
} */

.main .col .social {
    width: 220px;
    align-items: center;
    margin-top: 9%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    position: absolute;
}

.col .social a {
    height: 40px;
    width: 40px;
    background: #bd937a;
    display: inline-flex;
    color: white;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
}

.col .social a:hover {
    transform: scale(1);
    color: black;
    background: #5c3f2e;
}

.scroll-up-btn {
    position: fixed;
    height: 45px;
    width: 35px;
    background: #bd937a;
    right: 30px;
    bottom: 10px;
    border-radius: 20px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 99;
    font-size: 25px;
    cursor: pointer;
    display: none;
    transition: all 0.3s ease;
}

#popup{
    position: fixed;
    left: 0;
    top: 30;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    display: none;
}

#popup.show{
    opacity: 1;
    display: block;
}

.popup-content{
    position: relative;
    background-color: white;
    margin: 100px auto;
    padding: 0;
    border: 1px solid #5c3f2e;
    width: 700px;
    max-width: 87%;
    animation: open 0.5s ease;
}

@keyframes open{
    from{
        transform: scale(0);
        opacity: 0;
    }
    to{
        transform: scale(1);
        opacity: 1;
    }
}

.popup-header{
    padding: 2px 16px;
    background-color: #201408;
    color: white;
    display: flex;
}

.popup-header h2{
    font-family: 'Poppins', sans-serif;
    font-size: medium;
    font-weight: bold;
}

.close-btn{
    position: absolute;
    color: #5c3f2e;
    right: 15px;
    font-size: 30px;
    font-weight: bold;
    margin-top: 8px;
    padding: 1px 5px;
    cursor: pointer;
}

.popup-body{
    padding: 2px 16px;
}

.popup-footer{
    padding: 2px 16px;
    color: #5c3f2e;
    display: flex;
}

.popup-footer h3{
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

/* #downloadImage{
    visibility: hidden;
} */

.print{
    position: absolute;
    cursor: pointer;
    right: 15px;
    /* top: 110; */
    margin-top: 10px;
    background: #5c3f2e;
    color: white;
    padding: 5px 5px;
    border-radius: 8px;
}

.close {
    position: absolute;
    right: 0;
    /* top: 0; */
    padding: 2px 30px 12px 16px;
    cursor: pointer;
  }

/* Making the site responsive */

@media (max-width: 1560px) {
    header {
        padding: 15px 40px;
    }
}

@media (max-width: 1140px) {
    section {
        padding: 50px 8%;
    }

    #menu-icon {
        display: initial;
        color: white;
    }

    header .navbar {
        position: absolute;
        top: -400px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        text-align: center;
        background: #201408;
        transition: .3s;
        /* visibility: hidden; */
    }

    header .navbar.active {
        top: 70px;
    }

    .navbar a {
        padding: 1.5rem;
        display: block;
    }

    .col {
        width: 50%;
        margin-bottom: 10px;
    }

    body header {
        padding: 25px 30px;
    }

}

@media (max-width: 1115px) {
    .about {
        display: grid;
        grid-template-columns: repeat(2, 400px);
        grid-gap: 1rem;
        margin-left: 12%;
    }

    .main .col .title::before {
        margin-left: 2%;
    }
}

@media (max-width: 991px) {
    .home-img {
        width: 70%;
        margin-left: 5%;
        margin-top: 30px;
    }

    .home-text h3 {
        font-size: 20px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .home-text {
        width: 80%;
    }

    .home {
        width: 100%;
        min-height: 99vh;
        display: grid;
        grid-template-columns: repeat(2, 350px);
        grid-gap: 2px;
        margin-left: 10%;
    }

    .about {
        display: grid;
        grid-template-columns: repeat(2, 400px);
        grid-gap: 1rem;
        margin-left: 12%;
    }

    .about-text {
        width: 80%;
    }

    .about-img {
        margin-right: 22%;
    }

    .cta h2 {
        font-family: 'Poppins', sans-serif;
        font-weight: bold;
        color: aliceblue;
        font-size: 18px;
        padding: 10px;
    }

    .cta {
        height: fit-content;
    }

    .main .col .title::before {
        margin-left: 2%;
    }
}

@media (max-width: 960px) {
    .about {
        display: grid;
        grid-template-columns: repeat(2, 300px);
        grid-gap: 1rem;
        margin-left: 12%;
    }

    .main .col .title::before {
        margin-left: 2.2%;
    }

    .main .col .social {
        margin-top: 12%;
    }
}

@media (max-width: 720px) {
    header {
        padding: 10px 16px;
    }

    .home {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-img {
        order: 2;
    }

    section {
        padding: 100px 7%;
    }

    .main .col .social {
        margin-top: 15%;
    }

    .main .col .title::before {
        margin-left: 3%;
    }

}

@media (max-width: 575px) {
    .col {
        width: 100%;
    }

    .col h4 {
        font-size: small;
    }

    .main .col .title::before {
        margin-left: 2.5%;
    }

    .main .col .social {
        margin-top: 30%;
    }

    #popup{
        top: -20;
    }
}

@media (max-width: 575px) {

}