@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cause:wght@100..900&family=Dancing+Script:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.animated-element {
    opacity: 0;
    position: relative;
    top: 5rem;
    transition: all .8s ease;
    transition-delay: 2.7;
}
.animated-element.visible {
    opacity: 1;
    position: relative;
    top: 0rem;
    transition: all .9s ease;
}

:root{
    --black-color: rgb(0,0,0);
    --main-color: rgb(45, 27, 78);
    --main-color-lite: rgba(45, 27, 78, .12);
    --secondary-color: rgb(212, 175, 55);
    --secondary-color-lite: rgba(212, 175, 55, .12);
    --tertiary-color: rgb(235, 2, 146);
    --tertiary-color-lite: rgba(235, 2, 146, .12);
    --sub-color-green: green;
    --text-color-one: #555555;
    --main-font-family: "Inter", sans-serif;
    --header-font-family: "Playfair", sans-serif;
    --animate-delay: 0.7s;
    --logo-width: 350px; /* Base width per logo; adjust for your designs */
    --slider-max-width: 90%; /* Controls how many logos are visible (e.g., 4 at 200px) */
    --slider-height: 250px; /* Logo container height */
    --animation-duration: 20s; 
}
a{
    text-decoration: none;
    font-family: var(--main-font-family)
}
.lite-red{
    background-color: var(--main-color-lite);
}
.lite-green{
    background-color: var(--secondary-color-lite);
}
.lite-yellow{
    background-color: var(--tertiary-color-lite);
}
.hide-menu{
    transform: scale(0,0);
    transform-origin: right;
    transition: transform .5s ease-in-out;
}
.lite-red > div > i{
    background-color: var(--main-color);
}
.lite-green > div > i{
    background-color: var(--secondary-color);
}
.lite-yellow > div > i{
    background-color: var(--tertiary-color);
}
.show-menu{
    transform: scale(1, 1);
    transform-origin: right;
    transition: transform .5s ease-in-out;
}

div#mobile-nav{
    z-index: 9999;
    width: 100%;
    height: 100vh;
    background-color: rgba(70, 70, 70, 1);
    position: fixed;
    display: flex;
    justify-content: center;
    padding-block: 1.2rem;
    overflow: scroll;
}
#mobile-nav-div{
    width: 65%;
}
#mobile-nav ul{
    list-style: none;
    margin-block-start: 1.5rem;
}
div#mobile-nav i{
    color: #ffffff;
}
#mobile-nav-div > ul >li > a{
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: .5rem;
    font-weight: 500;
    font-size: 1rem;
}
.mobile-menu p{
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    padding: .5rem;
    font-weight: 500;
    font-size: 1rem;
}
#mobile-menu{
    display: none;
}
#mobile-menu i{
    color: var(--secondary-color);
}
#close-menu{
    font-size: 1.5rem;
    text-align: right;
    display: inline-block;
    width: 100%;
    color: #ffffff;
}


nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 4rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9;
}
nav.scrolled {
  background-color: #ffffff; /* New color */
  /*padding: 10px 20px; /* Shrink it a bit for effect */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
nav.scrolled a{
    color: var(--main-color);
}
nav img{
    width: 100px;
}
nav ul{
    display: flex;
    gap: .75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
nav a{
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding: 1rem;
    padding-inline: .5rem;
    font-size: .9rem;
}
nav a:hover{
    color: var(--secondary-color)
}
nav i{
    color: #000000;
}
#order-request{
    color: #ffffff;
    background-color: var(--secondary-color);
    padding: .65rem 2rem;
    border-radius: 40px;
    font-size: .9rem;
}
#order-request:hover{
    background-color: var(--main-color);
    color: #ffffff;
}

.menuList{
    display: none;
}
#menu .menuList{
    top:37px;
    position: absolute;
    background-color: #ffffff;
    z-index: 99;
    width: 450px;
    border-radius: 6px;
    padding: 1rem 2rem;
}
#menu .menuList ul li{
    margin-top: .5rem;
}
.menuList a{
    color: var(--main-color);
    display: block;
    margin-block: .25rem;
}
.menuList a:hover{
    color: rgba(210, 210, 210, .95)
}
.dropdown:hover > .menuList{
    display: block;
}









.footer{
    background-color: rgb(247 247 247);
    font-family: var(--main-font-family);
    color: #ffffff;
    padding: 3rem 2rem;
}
.footer img{
    max-width: 100px;
}
.footer-enclosed{
    background-color: #ffffff;
    padding: 2.75rem;
    width: 100%;
    border-radius: 2rem;
    box-shadow: 2px 2px 5px #9b9b9b5d;
}

.footer-section-two{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-section-two > div{
    width: 23%;
}
.footer-section-two ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-section-two .explore{
    display: flex;
    gap: 1.5rem;
}
.footer-section-two .explore p{
    font-size: .9rem;
    color: var(--text-color-one);
    margin-top: 1rem;
}
.footer-section-two ul li{
    margin-top: .75rem;
}
.footer-section-two ul a{
    display:inline-block;
    color: var(--text-color-one);
    font-size: .9rem;
    padding-block-end: .3rem;
    text-decoration: none;
    font-family: var(--main-font-family)
}
.footer-section-two ul a:hover{
    color: var(--secondary-color);
}
.footer-section-two h5{
    color: var(--main-color);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.footer-socials{
    display: flex;
    gap: 1rem;
}
.footer-socials a{
    background-color: var(--secondary-color);
    padding: .25rem .55rem;
    font-size: 1.15rem;
    border-radius: 50%;
    text-decoration: none;
    color: #ffffff;
}
.footer-address p{
    display: flex;
    gap: .7rem;
    color: var(--text-color-one);
    font-size: .9rem;
}
.footer-address p i{
    color: var(--secondary-color);
}
.footer hr{
    margin-block: 3rem;
    background-color: #808080;
}
.footer-bottom p{
    color: var(--text-color-one);
    font-size: .9rem;
}
@media screen and (max-width: 768px) {
    nav{
        padding: .5rem .75rem; 
        justify-content: space-between;
    }
    nav #orders{
        display: none;
    }
    nav ul{
        display: none;
    }
    nav img{
        width: 60px;
    }
    #mobile-menu{
        display: inline-block;
        color: var(--secondary-color);
    }
    .footer{
        padding: 1rem 1.2rem;
    }
    .footer-enclosed{
        padding-inline: 1.5rem;
    }
    .footer-section-two{
        display: block;
        padding: .2rem .5rem;
    }
    .footer-section-two > div{
        width: 100%;
        margin-top: 1.5rem;
    }
    .footer-section-two ul li{
        margin-top: .3rem;
    }
}