/* Namari Landing Page Dynamic Style Index

1. Website Default Styling
2. Navigation
3. Primary and Secondary Colors
4. Banner
5. Typography
6. Buttons
7. Footer


/*------------------------------------------------------------------------------------------*/
/* 0. Rebrand Notification Banner                                                            */
/*------------------------------------------------------------------------------------------*/

/* Body padding to push content below the fixed banner */
body.has-rebrand-banner {
    padding-top: 48px;
}

.rebrand-banner {
    background: #4C531F;
    border-bottom: 3px solid #FB5D16;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000000;
    animation: bannerSlideDown 0.4s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    line-height: 1.4;
    box-sizing: border-box;
}

.rebrand-banner.hidden {
    display: none;
}

.rebrand-banner .banner-text {
    flex: 1;
    text-align: center;
}

.rebrand-banner .banner-text strong {
    font-weight: 800;
    color: #FB5D16;
}

.rebrand-banner .banner-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 2px;
}

.rebrand-banner .banner-dismiss {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    padding: 4px 12px;
    line-height: 1;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.rebrand-banner .banner-dismiss:hover {
    background: #FB5D16;
    border-color: #FB5D16;
    color: #fff;
}

@keyframes bannerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media only screen and (max-width: 600px) {
    body.has-rebrand-banner {
        padding-top: 60px;
    }

    .rebrand-banner {
        font-size: 13px;
        padding: 8px 12px;
        gap: 8px;
    }

    .rebrand-banner .banner-dismiss {
        padding: 4px 8px;
        font-size: 11px;
    }
}

/*------------------------------------------------------------------------------------------*/
/* 1. Website Default Styling */
/*------------------------------------------------------------------------------------------*/


body {
    background: #fff;
}


/* Default Link Color */

a,
.la-ball-triangle-path {
    color: #fb5d16;
}

a:hover,
#header.nav-solid nav a:hover {
    color: #fb5d16;
}

/* Default Icon Color */

.icon i {
    color: #fb5d16;
}

/* Border Color */

#banner .section-heading:before,
.testimonial.classic footer:before {
    background: #fb5d16;
}

.pricing-block-content:hover {
    border-color: #fb5d16;
}


/*------------------------------------------------------------------------------------------*/
/* 2. Navigation */
/*------------------------------------------------------------------------------------------*/


/* Transparent Navigation Color on a Banner */

#header nav a,
#header i {
    color: #4c531f;
}


/* Navigation Colors when the Navigation is sticky and solid */

#header.nav-solid,
#header.nav-solid a,
#header.nav-solid i,
#nav-mobile ul li a {
    color: #4c531f;
}


/* Navigation Active State */

#header.nav-solid .active {
    color: #fb5d16;
    border-color: #fb5d16;
}



/*------------------------------------------------------------------------------------------*/
/* 3. Primary and Secondary Colors */
/*------------------------------------------------------------------------------------------*/


/* Primary Background and Text Colors */

.primary-color,
.featured .pricing {
    background-color: #fb5d16;
}

.primary-color,
.primary-color .section-title,
.primary-color .section-subtitle,
.featured .pricing,
.featured .pricing p {
    color: #fff;
}

.section-heading h2:after {
    background: #fb5d16;
    content: "";
    display: block;
    width: 30px;
    height: 5px;
    margin-top: 30px;
}

.text-center .section-heading h2:after {
    margin: 30px auto 25px auto;
}

/* Primary Icon Colors */

.primary-color .icon i,
.primary-color i {
    color: #fff;
}


/* Secondary Background and Text Colors */

.secondary-color {
    background-color: #f5f5f5;
}


/*------------------------------------------------------------------------------------------*/
/* 4. Banner */
/*------------------------------------------------------------------------------------------*/


/* Banner Background and Text Colors */

#banner {
    /* Fallback for browsers that don't support image-set */
    background: url("../images/banner-images/Banner-Model-Home.webp") no-repeat center top;
    /* Modern browsers will use WebP from image-set */
    background: -webkit-image-set(url("../images/banner-images/Banner-Model-Home.webp") 1x) no-repeat center top;
    background: image-set(url("../images/banner-images/Banner-Model-Home.webp") type("image/webp")) no-repeat center top;
    background-size: cover;
}

/* Hide banner background image on mobile */
@media screen and (max-width: 768px) {
    #banner {
        background: none;
        background-color: #fff;
        /* or any other color you prefer */
    }
}


/*------------------------------------------------------------------------------------------*/
/* 5. Typography */
/*------------------------------------------------------------------------------------------*/


body {
    font-family: 'Montserrat', sans-serif, Arial, Helvetica;
    font-size: 15px;
    font-weight: 600;
    color: #4c531f;
}

/* Logo, if you are using Fonts as Logo and not image

#logo h1 {
    font-family:;
    font-size:; 
    font-weight:;
    color:;
}

#logo h2 {
    font-family:;
    font-size:; 
    font-weight:;
    color:;
}

*/


/* Banner Typography */

#banner h1 {
    font-family: 'Montserrat', sans-serif, Arial, Helvetica;
    font-size: 62px;
    line-height: 65px;
    font-weight: 800;
    color: #4c531f;
}

#banner h2 {
    font-family: 'Montserrat', sans-serif, Arial, Helvetica;
    font-size: 18px;
    font-weight: 600;
    color: #4c531f;
}


/* Section Title and Subtitle */

.section-title {
    font-family: 'Montserrat', sans-serif, Arial, Helvetica;
    font-size: 34px;
    font-weight: 800;
    color: #4c531f;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif, Arial, Helvetica;
    font-size: 16px;
    font-weight: 600;
    color: #4c531f;
}

/* Testimonial */

.testimonial q {
    font-family: 'Montserrat', sans-serif, Arial, Helvetica;
    font-size: 17px;
    font-weight: 300;
}

.testimonial.classic q,
.testimonial.classic footer {
    color: #4c531f;
}


/* Standard Headings h1-h6 */

h1 {
    font-family: 'Montserrat', sans-serif, Arial, Helvetica;
    font-size: 40px;
    font-weight: 800;
    color: #4c531f;
}

h2 {
    font-family: 'Montserrat', sans-serif, Arial, Helvetica;
    font-size: 34px;
    font-weight: 800;
    color: #4c531f;
}

h3 {
    font-family: 'Montserrat', sans-serif, Arial, Helvetica;
    font-size: 30px;
    font-weight: 800;
    color: #4c531f;
}

h4 {
    font-family: 'Montserrat', sans-serif, Arial, Helvetica;
    font-size: 18px;
    font-weight: 800;
    color: #4c531f;
}

h5 {
    font-family: 'Montserrat', sans-serif, Arial, Helvetica;
    font-size: 16px;
    font-weight: 800;
    color: #4c531f;
}

h6 {
    font-family: 'Montserrat', sans-serif, Arial, Helvetica;
    font-size: 14px;
    font-weight: 800;
    color: #4c531f;
}


/*------------------------------------------------------------------------------------------*/
/* 6. Buttons */
/*------------------------------------------------------------------------------------------*/

/* ----------Default Buttons---------- */


/* Button Text */

.button,
input[type="submit"] {
    font-family: 'Montserrat', sans-serif, Arial, Helvetica;
    font-size: 14px;
    font-weight: bold;
    color: #4c531f;
}


/* Button Color */

.button,
input[type="submit"] {
    border-color: #4c531f;
}


/* Button Hover Color */

.button:hover,
input[type="submit"]:hover {
    border-color: #fb5d16;
    color: #fb5d16;
}


/* ----------Banner Buttons---------- */


/* Button Text */

#banner .button {
    font-family: 'Montserrat', sans-serif, Arial, Helvetica;
    font-size: 16px;
    color: #4c531f;
}


/* Button Color */

#banner .button {
    border-color: #4c531f;
}


/* Button Hover Color */

#banner .button:hover {
    color: #fb5d16;
    border-color: #fb5d16;
}


/*------------------------------------------------------------------------------------------*/
/* 7. Footer */
/*------------------------------------------------------------------------------------------*/

#landing-footer,
#landing-footer p,
#landing-footer a {
    font-family: 'Montserrat', sans-serif, Arial, Helvetica;
    font-size: 12px;
    font-weight: 600;
    color: #999;
}

/* Footer Icon Color */

#landing-footer i {
    color: #999;
}