body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

html{
    scroll-behavior: smooth;
}

.section{
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1.5s ease-out;
}
.section.visible{
    opacity: 1;
    transform: translateY(0);
}


a{
    text-decoration: none;
    color: inherit;
}
h3{
        font-size: 16px;
        font-family: "Poppins", sans-serif;
        font-weight: 700;
}

header{
    box-shadow: 1px 2px 10px grey;
    text-align: center;
    background-color: rgb(240, 70, 4);
    font-family: "poppins", sans-serif;
    color: white;
    position: fixed;
    top: 30px;
    width: 500px;
    border-radius: 50px;
    z-index: 1000;
    width: 60%;
    left: 270px;
    right: 200px;

    @media (max-width: 1000px) {
        width: 90%;
        left: 20px;
    }
    .hamburger{
        display: none;
    }
    

    nav{
        display: flex;
        justify-content: space-around;
        align-items: center;

    .logo img{
        height: 40px;
    }

    ul{
        list-style: none;
    }
    .navigations{
        display: flex;

        li{
            padding-right: 15px;

            span{
                font-weight: bold;
            }
        }
    }
    .cart{
        padding: 10px 15px;
        background-color: white;
        color: rgb(240, 70, 4);
        border-radius: 100px;
        position: relative;

        .cart-icon img{
            display: none;
        }
    }
}
}
.menu-nav{
    position: relative;


    .drop-down-nav{
        position: absolute;
        top: 25px;
        left: -40px;
        text-align: left;
        list-style: none;
        font-family: "poppins", sans-serif;
        background-color: white;
        box-shadow: 1px 1px 10px grey;
        border-radius: 7px;
        color: rgb(240, 70, 4);
        font-weight: 500;
        opacity: 0;
        transform: translateY(30px);
        transition: .3s ease-in-out;

        

        li{
            line-height: 25px;
            margin-top: 10px;
            margin-bottom: 10px;
            
        }
    }
}
.menu-nav:hover .drop-down-nav{
    opacity: 1;
    transform: translateY(0px);
}

.container {
    display: flex;
    max-width: 1000px;
    margin: 100px auto;
    padding: 20px;
}
.main-content {
    font-family: 'poppins', sans-serif;
    border: 0.5px solid rgb(228, 228, 228);
    border-radius: 10px;
    flex:2;
    margin-left: 0;
    margin-right: 20px;
    background: white;
    padding: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);

    ul{
        font-family: 'poppins', sans-serif;
    }
    li{
        text-align: left;
        font-size: 14px;
    }
}
.sidebar {
    font-family: 'poppins', sans-serif;
    border: 0.5px solid rgb(228, 228, 228);
    flex: 1;
    font-weight: 400;
    color: rgb(34, 34, 34);
    background: white;
    padding: 15px;
    border-radius: 10px;
}
.sidebar li{
    margin-bottom: 10px;
    font-family: 'poppins', sans-serif;
}
.sidebar h3{
    color: rgb(240, 70, 4);
    font-weight: 400;
    font-size: 25px;
    font-family: 'poppins', sans-serif;
}
.sidebar a{
    padding-bottom: 10px;
    color: rgb(34, 34, 34);
    font-size: 15px;
    text-decoration: none;
    font-family: 'poppins', sans-serif;
}
.sidebar div{
    background-color: rgb(87, 87, 87);
    height: 1px;
    width: 100%;
}
.sidebar a:hover{
    color: rgb(240, 70, 4);
}
.sidebar input{
    padding: 15px 25px;
    border: 1px solid rgb(87, 87, 87);
}
.sidebar button{
    border: none;
    color: white;
    border-radius: 10px;
    background-color: rgb(240, 70, 4);
    margin-top: 5px;
    padding: 10px;
    cursor: pointer;
    transition: .3s ease;
}
.sidebar button:hover{
    background-color: rgb(253, 193, 113);
}
.blog-post{
    text-align: center;
}

.blog-post h2 {
    text-transform: capitalize;
    line-height: 35px;
    text-align: left;
    color: #222;
}
.blog-post p{
    text-align: left;
    font-size: 14px;
    color: rgb(0, 0, 0);
    font-weight: 300;
    line-height: 30px;
    font-family: 'poppins', sans-serif;
}
.blog-post img{
    text-align: center;
    justify-content: center;
    height: 300px;
}
details summary{
    font-weight: bold;
    cursor: pointer;
}
details ul{
    list-style: none;
    text-align: left;
    padding: 10px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
details ul li{
    padding-bottom: 8px;
}
.cta {
    background: rgb(240, 70, 4);
    color: white;
    text-align: center;
    padding: 15px;
    margin: 20px 0;
    font-size: 18px;
}
.cta a {
    color: white;
    font-weight: bold;
}
/* .comment-section {
    margin-top: 30px;
}
.comment-section input, .comment-section textarea {
    width: 90%;
    border-radius: 5px;
    padding: 30px;
    margin-top: 10px;
    border: 1px solid #c4c4c4;
    font-family: sans-serif;
}
.comment-section button {
    background: rgb(240, 70, 4);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: .3s ease;
}
.comment-section button:hover{
    background: rgb(253, 193, 113);
    box-shadow: 0.5px 0.5px 5px rgb(68, 68, 68);
}
#commentList{
    overflow-y: scroll;
    max-height: 60vh;
    text-align: left;
    background-color: rgb(241, 241, 241);

    p{
        margin-top: 0;
        margin-bottom: 5px;
        border-top: 1px solid grey;
        color: #ff9800;
        font-size: 12px;
    }
}
.comment-box{
    font-size: 15px;
    background: #ffffff;
    padding: 10px;
    margin-top: 10px;
    border-left: 4px solid rgb(24, 0, 32);
} */



footer{
    background-color: rgb(253, 193, 113);
    color: black;
    padding: 20px;
    font-family: "Poppins", sans-serif;
    position: relative;

    h3{
        text-align: center;
        font-size: 19px;
    }

    .footer-container{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        
        

        .footer-logo-text{
            text-align: center;
            width: 100%;
            margin-bottom: 20px;

            img{
                height: 50px;
                margin-bottom: 10px;
            }
            div{
                font-family:cursive;
                font-style: italic;
            }
            p{
                font-size: 14px;
                line-height: 1.5;
            }
        }

        .footer-menu{
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            margin-right: 30px;

            h3{
                font-size: 18px;
                margin-bottom: 10px;
            }
            ul{
                list-style: none;
                li{
                    margin-bottom: 10px;
                    font-size: 15px;
                    color: black;
                    transition: .3s ease-in-out;

                    &:hover{
                        color: rgb(240, 70, 4);
                    }
                }
            }
        }

        .footer-contact{
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;

            ul{
                list-style: none;
                padding: 0;
                li{
                    font-size: 15px;
                    color: black;
                    margin-bottom: 10px;
                }
            }

            h3{
                font-size: 18px;
                margin-bottom: 10px;
            }
            p{
                font-size: 15px;
                line-height: 1.5;
            }
            a{
                color: black;
                text-decoration: none;
                transition: .3s ease-in-out;

                &:hover{
                    color: rgb(240, 70, 4);
                }
            }
        }


        .footer-useful-links{
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            margin-right: 30px;

            h3{
                font-size: 18px;
                margin-bottom: 10px;
            }
            ul{
                list-style: none;
                li{
                    margin-bottom: 10px;
                    font-size: 15px;
                    color: black;
                    transition: .3s ease-in-out;

                    &:hover{
                        color: rgb(240, 70, 4);
                    }
                }
            }
        }


    }

    .copyright{
            width: 100%;
            text-align: center;
            margin-top: 20px;
            font-size: 14px;
            color: black;
        }
}







@media screen and (max-width: 850px) {
    header{
        background-color: rgb(240, 70, 4);

        nav{
            
        .navigations{
            pointer-events: none;
            height: 70vh;
            width: 100%;
            position: absolute;
            top: 70px;
            left: 0;
            right: 0;
            background-color: white;
            padding: 20px 0;
            border-radius: 0 0 20px 20px;
            box-shadow: 1px 2px 10px grey;
            z-index: 1000;
            transition: .3s ease-in-out;
            opacity: 0;
            transform: translateY(-30px);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            li{
                padding: 10px 0;
                margin: 0;
                font-size: 16px;
                font-weight: bold;
                color: rgb(240, 70, 4);
            }
        }

        .cart{
            
            li{
                display: none;
            }
            .cart-icon img{
                height: 30px;
                text-align: center;
                display: block;
            
            }
        }
    }

    .hamburger{
        display: block;
        color: rgb(240, 70, 4);
        font-weight: bold;
        background-color: white;
        padding: 5px 12px;
        border-radius: 50px;
        cursor: pointer;
    }
}

.navigations.visible{
    opacity: 1;
    transform: translateY(0px);
    z-index: 1000;
    pointer-events: visible;
}
.menu-nav{
    .drop-down-nav{
        display: none;
    }
}



    .blog-post img{
        height: 250px;
        max-width: 450px;
    }
    .container {
        display: block;
        max-width: 600px;
        margin: 130px 0 80px 0;
        padding: 0px;
    }
    .main-content{
        border-top: 0px;
        box-shadow: 0px 0px;
        margin-right: 0;
        border-radius: 0px;
    }
    .sidebar{
        border-radius: 0px;
        margin-top: 60px;
    }




    footer{
        padding: 20px;
        text-align: center;

        .footer-container{
            flex-direction: column;
            align-items: center;

            .footer-logo-text{
                margin-bottom: 30px;
            }

            .footer-menu, .footer-useful-links, .footer-contact{
                margin-right: 0;
                margin-bottom: 20px;
                margin-left: 0;
                width: 100%;
                text-align: center;
                h3{
                    font-size: 18px;
                    margin-bottom: 10px;
                }
                ul{
                    list-style: none;
                    padding: 0;
                    li{
                        font-size: 15px;
                        color: black;
                        margin-bottom: 5px;
                        text-align: center;

                        &:hover{
                            color: rgb(240, 70, 4);
                        }
                    }
                }
            }
        }
    }





}



@media screen and (max-width: 450px) {
    

    .blog-post img{
        height: 200px;
        max-width: 300px;
    }
    .main-content{
        margin-right: 0;
    }

    .container {
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 0px;
        margin: 100px 0 80px 0;
    }
}