@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Quicksand:wght@300..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
}


body{
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
body a{
    text-decoration: none;
    color: black;
}

/* #023279 #ba8450 */ 
nav{
    /* position: fixed; */
    height: 100px;
    width: 100vw;
    padding-top: 10px;
    padding-left: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    color: #023279;
    font-size: 20px;
    background-color: white;
}
nav a{
    color: #023279;
    text-decoration: none;
}
nav img{
    height: 90px;
    user-select: none;
}
nav ul{
    list-style: none;
    display: flex;
    gap: 35px;
}


.dropdown:hover .dropdown-menu {
    display: block;
    transition: 0.5s ease;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
    padding: 0;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 20px 10px;
    text-decoration: none;
    color: #023279;
    font-size: 18px;
    border-bottom: 1px solid black;
}

.dropdown-menu li a:hover {
    background-color: #f4f4f4;
    transition: 0.5s ease;
}

main{
    width: 100vw;
    height: 100%;
    background:url(./images/pexels-ian-16276469.jpg) no-repeat 0 0;
    background-size: cover; /* Cover the entire viewport */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Fixed background scrolling */
    display: flex;
    flex-direction: column;
}
main .welcome{
    width: 100vw;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.welcome img{
    height: 150px;
}


main .about{
    height: 100%;
    width: 100%;
    background-color: white;
    padding: 20px 0 20px 20px;
    display: flex;
    flex-direction: column;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.about .aboutTitle{
    height: fit-content;
    width: 80vw;
    padding: 20px 0;
    border-bottom: 2px solid #ba8450;
    font-size: 28px;
    color: #023279;
}
.about .aboutContent{
    height: fit-content;
    width: 80vw;
    padding-top: 20px;
    font-size: 17px;
    line-height: 1.3;
}



main .testimonials{
    width: 100vw;
    height: fit-content;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    gap: 20px;
    font-size: 25px;
}


main .featured{
    width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background-color: white;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.featured .featuredTitle{
    width: 80vw;
    border-bottom: 2px solid #ba8450;
    height: fit-content;
    padding: 10px 0;
    font-size: 28px;
    color: #023279;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
}
.featured .featuredMatter{
    padding: 20px 0;
}
.featured .featuredProducts{
    height: 200px;
    width: 100vw;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.featuredProducts img{
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 100px;
}
.featuredProducts img:hover{
    border-radius: 0;
    transition: 0.5s ease;
}
.featured a{
    background-color: #023279;
    color: #ffaa5a;
    height: 50px;
    width: fit-content;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    animation: moveLeftRight 1s ease infinite alternate; 
}

@keyframes moveLeftRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(30px); 
    }
}



main .exclusive{
    width: 100vw;
    height: 100%;
    background:url(./images/top-view-meat-concept-with-copy-space.jpg) no-repeat 0 0;
    background-size: cover; /* Cover the entire viewport */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: flex-end;
    color: white;
}
.exclusive .exclusiveDiv{
    width: 50%;
    height: 100%;
    padding: 50px 0;
    margin-right: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.exclusive .exclusiveTitle{
    font-size: 28px;
    width: 50%;
    border-bottom: 2px solid white;
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
}
.exclusive .exclusiveContent{
    margin-top: 10px;
    font-size: 20px;
}
.exclusive .exclCard{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 15px;
}
.exclCard a{
    color: white;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}
.exclCard img{
    height: 150px;
    width: 150px;
    border-radius: 100px;
}
.exclCard img:hover{
    border-radius: 0px;
    transition: 0.5s ease;
}
.exclusive a{
    color: white;
    text-decoration: underline;
}



main .deliver{
    width: 100vw;
    height: 500px;
    background:url(./images/top-view-truck-boxes.jpg) no-repeat 0 0;
    background-size: cover; /* Cover the entire viewport */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: rgb(84, 84, 84);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.deliver .deliverTitle{
    font-size: 28px;
    width: 100%;
    border-bottom: 2px solid rgb(84, 84, 84);
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
    margin-top: 20px;
}
.deliver .deliverMatter{
    width: 80vw;
    justify-content: center;
    display: flex;
    margin-top: 20px;
    font-size: 20px;
}




@media screen and (max-width: 756px) {
    .exclusive{
        width: 100vw;
    }
    .exclusiveDiv{
        width: 100vw;
    }
    main .exclusiveTitle{
        width: 90vw !important;
    }
    .exclusiveContent{
        width: 90vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }


}

@media screen and (max-width: 756px) {

    main .about{
        overflow-x: hidden;
        width: 100vw;
        padding: 20px 0 20px 5px;
    }
    .welcome img{
        height: 70px;
    }
    main .testimonials{
        font-size: 18px;
    }
    main .featuredProducts{
        height: fit-content !important;
        display: flex;
        flex-direction: column;
    }
    .featuredMatter{
        width: 90vw;
    }
}