/* style.css */

/* other css files */
@import "css/first-slider.css";
/* @import "assets/font/font.css"; */
@import "css/navbar.css";
@import "css/about-us.css";
@import "css/outlets.css";
@import "css/our-products.css";
@import "css/contact-section.css";
@import "css/footer.css";

:root {
    --primary-bg: #fffbd4;
    --primary-color: #4d6f33;
    --green: #13481f;
    --secondary-color: #6a923e;
    --text-color: #37352d;
    --secondary-text-color: #373639;
    --primary-yellow: #fff100;
    --font-family: "Poppins";
}

::-webkit-scrollbar {
    width: 0px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    width: 100vw;
    font-family: var(--font-family);
    background-color: #047a3e;
    color: var(--text-color);
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: #047a3e; */
    background: var(--primary-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    transition: opacity 0.6s ease;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    position: relative;
}

.preloader-inner img {
    position: absolute;
    width: 150px;
    height: auto;
    animation: bounce 0.8s infinite;
    z-index: 999;
}

.preloader_text_img {
    position: absolute;
    top: 40%;
    left: 50%;
    translate: -50% -50%;
    height: 120px;
    opacity: 0.3;
    z-index: 1;
    animation: maskWave 3s linear infinite;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        black 50%,
        transparent 100%
    );
    -webkit-mask-size: 200% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        black 50%,
        transparent 100%
    );
    mask-size: 200% 100%;
    mask-repeat: no-repeat;
}

#page-header {
    padding: 130px;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding-bottom: 90px;
}

.inner-pages h3 {
    color: var(--primary-color);
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 30px;
}

.outlet-section-1 {
    background: var(--primary-bg);
}

.inner-pages p {
    text-align: justify;
}

.outlet-section-1 .inner {
    padding: 110px 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.outlet-section-2 {
    padding: 70px 0px;
    background-size: cover;
    background-position: center;
}

.inner-pages .outlet-section-2 h3 {
    color: black;
    margin-bottom: 0px;
}

.outlet-section-3{
    background: var(--primary-bg);
    padding: 110px 0px;
}
.outlet-section-3 .img-outer {
    padding: 30px;
}
.outlet-row {
    background-color: var(--green);
    margin-bottom: 50px;
    border-radius: 30px;
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}
.outlet-section-3 .img-area {
    height: 250px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    border: 7px solid #2b6b0a;
}

.outlet-section-3  .content{
    padding: 30px 0px;
    color: white;
}
.outlet-section-2  .city-dropdown {
    background-color: var(--green);
    color: white;
    padding: 20px;
    border: 3px solid white;
    border-radius: 0px;
    font-size: 19px;
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1120px;
    }
}

@keyframes maskWave {
    0% {
        -webkit-mask-position: 0% 0%;
        mask-position: 0% 0%;
    }

    50% {
        -webkit-mask-position: 100% 0%;
        mask-position: 100% 0%;
    }

    100% {
        -webkit-mask-position: 0% 0%;
        mask-position: 0% 0%;
    }
}

@media (max-width: 1200px) {
    .preloader_text_img {
        position: absolute;
        top: 40%;
        left: 50%;
        translate: -50% -50%;
        height: 60px;
        z-index: 1;
        animation: maskWave 3s linear infinite;
        -webkit-mask-image: linear-gradient(
            90deg,
            transparent 0%,
            black 50%,
            transparent 100%
        );
        -webkit-mask-size: 200% 100%;
        -webkit-mask-repeat: no-repeat;
        mask-image: linear-gradient(
            90deg,
            transparent 0%,
            black 50%,
            transparent 100%
        );
        mask-size: 200% 100%;
        mask-repeat: no-repeat;
    }
}

.loading-text {
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-family: var(--font-family);
}

.dots::after {
    content: "";
    animation: dots 1.2s steps(3, end) infinite;
}

@keyframes dots {
    0% {
        content: "";
    }

    33% {
        content: ".";
    }

    66% {
        content: "..";
    }

    100% {
        content: "...";
    }
}

/* @keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
} */

body.loaded main,
body.loaded .navbar,
body.loaded .footer {
    display: block;
}

main,
.navbar,
.footer {
    display: none;
}

.banavil-footer a i {
    font-size: 1.2rem;
    transition: color 0.3s;
}

.banavil-footer a:hover i {
    color: var(--secondary-color);
}
