/* ============================================
   SITE.CSS - Color Discovery
   ============================================ */
:root {
    --color-primary: rgb(204, 0, 0);
    --color-primary-hex: #cc0000;
  
    --color-primary-light: #d44ab8;
    --color-link: #333;
    --color-footer-copyright: #000;
}

html {
    scroll-behavior: smooth;
}
/* ----------------------
   Base
---------------------- */
body {
    font-family: 'Montserrat', sans-serif;
    color: #000;
}

a, a:link, a:visited {
    color: var(--color-link);
    text-decoration: none;
    font-weight: 500;
   
}

    a:hover {
        color: var(--color-primary) ;
        text-decoration: none !important;
    }


h1, h2, h3, h4, h5 {
    letter-spacing: 6px;
    font-weight: 300;
    border: none;
    color: #333;
    margin-bottom: 2rem;
}



.lead {
    background: linear-gradient(to right, #e0e0e0, transparent);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
}


#header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}


.inner-page #mainNav {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

    .inner-page #mainNav .navbar-nav > .nav-item > .nav-link {
        color: #444;
        text-shadow: none;
    }

    .inner-page #mainNav .navbar-brand img {
        height: 80px;
    }

/* ----------------------
   Navbar
---------------------- */

    #header.scrolled #mainNav {
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        padding:0px;
    }


        #header.scrolled #mainNav .navbar-nav > .nav-item > .nav-link {
            color: #444;
            text-shadow: none;
        }

#mainNav {
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

#header.scrolled #mainNav {
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }





.navbar, .navbar-brand {
    padding: 0px;
}

#mainNav .navbar-brand img {
    height: 140px;
    width: auto;
    object-fit: contain;
    transition: height 0.4s ease;
}

/* After scroll */
#header.scrolled #mainNav .navbar-brand img {
    height: 80px;
}



/* TOP MENU ONLY */
#mainNav .navbar-nav > .nav-item > .nav-link {
    color: #fff;
    font-weight: 300;
    font-size: 1.1rem;
    text-transform: uppercase;
    padding: 0.5rem 0.85rem;
    letter-spacing: 1.5px;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.8), 0 0 12px rgba(0, 0, 0, 0.6);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

    #mainNav .navbar-nav > .nav-item > .nav-link:hover,
    #mainNav .navbar-nav > .nav-item > .nav-link.active {
        color: #ccc;
        text-shadow: 0 0 6px rgba(255, 255, 255, 0.8), 0 0 12px rgba(255, 255, 255, 0.6);
    }


/*we are homepage, NOT SCROLLED  */
    .home-page:not(.scrolled) #mainNav {
        background: transparent;
        box-shadow: none;
    }

    .home-page:not(.scrolled) #mainNav .navbar-brand img {
        height: 120px;
    }
/*ok*/

.megamenu hr {
    width: 85%;
    margin-right: 10px;
    opacity: 0.15;
}


.megamenu .nav-link-category {
    color: #111;
    text-transform: uppercase;
    font-weight: 300;
    transition: color 0.7s ease, text-shadow 0.7s ease;
}

    .megamenu .nav-link-category:hover {
        color: #000;
        text-shadow: 0 0 6px rgba(0, 0, 0, 0.8), 0 0 12px rgba(0, 0, 0, 0.6);
    }

#mainNav .dropdown-menu {
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    border-left: 1px solid #e0e0e0 !important;
    border-right: 1px solid #e0e0e0 !important;
    border-bottom: 1px solid #e0e0e0 !important;
    opacity: 0;
    transition: opacity 0.25s ease;
}

    #mainNav .dropdown-menu.show {
        opacity: 1;
    }

   

    #mainNav .dropdown-item {
        font-size: 0.9rem;
        font-weight: 600;
        color: #333;
        padding: 0.5rem 1.2rem;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

        #mainNav .dropdown-item:hover {
            background-color: #ccc;
            color: var(--color-primary) !important;
        }
    /* =========================
   MEGA MENU
========================= */

    @media (min-width: 992px) {

        .navbar .has-megamenu {
            position: static !important;
        }

        .navbar .megamenu {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 1200px;
            padding: 2rem;
            border: none;
            border-radius: 0;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
    }
    /* Mobile */
    @media (max-width: 991px) {

        .navbar.fixed-top .navbar-collapse,
        .navbar.sticky-top .navbar-collapse {
            overflow-y: auto;
            max-height: 90vh;
            margin-top: 10px;
        }

        .navbar .megamenu {
            border: none;
            box-shadow: none;
            padding: 0rem 0;
        }

        #navbarMain {
            overflow-y: auto;
            max-height: calc(100vh - 100px);
        }
    }
    /* Titles */
.mega-title {
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

    .mega-title a {
        color: inherit;
        transition: color 0.3s ease, text-shadow 0.3s ease;
    }

        .mega-title a:hover {
            color: #ccc;
            text-shadow: 0 0 6px rgba(255, 255, 255, 0.8), 0 0 12px rgba(255, 255, 255, 0.6);
        }

    /* Lists */
    .megamenu ul {
        padding-left: 0;
        padding-right: 0.8rem;
        line-height: 1.8rem;
    }
    /* Links */
    .megamenu li a {
        margin-bottom: 0;
        text-decoration: none;
    }
    /* Icons */
    .mega-icon {
        width: 35px;
        height: 22px;
        object-fit: contain;
    }


.mega-new {
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 10px;
    margin-top: 3px;
    letter-spacing: 1px;
}
    /* =========================
  END MEGA MENU
========================= */
    /* ----------------------
   Hero Shades
---------------------- */
    .hero-shade {
        width: 100%;
        height: 3px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    }

    .hero-shadeB {
        width: 100%;
        height: 3px;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    }
    /* ----------------------
   Hero Carousel
---------------------- */
    #hero .carousel-item img {
        height: 100vh;
        object-fit: cover;
        object-position: center;
    }

    .carousel-item {
        transition: opacity 1.5s ease-in-out !important;
    }

    #hero .carousel-caption {
        bottom: 50%;
        transform: translateY(50%);
    }

        #hero .carousel-caption h1,
        #hero .carousel-caption h2,
        #hero .carousel-caption p,
        #hero .carousel-caption .btn {
            background-color: rgba(0, 0, 0, 0.55);
            padding: 0.4rem 1.2rem;
            border-radius: 4px;
            color: #ffffff;
            text-shadow: none;
            display: block;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 0.75rem;
        }

        #hero .carousel-caption h1,
        #hero .carousel-caption h2 {
            font-weight: 700;
            font-size: clamp(1.8rem, 4vw, 3rem);
        }

        #hero .carousel-caption p {
            font-weight: 400;
            font-size: clamp(1rem, 2vw, 1.25rem);
            max-width: 600px;
        }

        #hero .carousel-caption h3 {
            border-bottom: none;
        }


    .carousel-caption .btn {
        font-weight: 600;
        letter-spacing: 0.05em;
        padding: 0.6rem 1.8rem;
        border: 2px solid #ffffff;
        border-radius: 4px;
        color: #ffffff;
    }

    #hero .carousel-caption .btn:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    #hero .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: none;
        opacity: 0.5;
    }

    #hero .carousel-indicators .active {
        background-color: #000;
        opacity: 1;
    }

#hero .carousel-control-prev-icon,
#hero .carousel-control-next-icon {
    filter: invert(50%);
    transition: filter 0.8s ease;
}

#hero .carousel-control-prev:hover .carousel-control-prev-icon,
#hero .carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(0%);
}

    .carousel-caption a,
    .carousel-caption a:link,
    .carousel-caption a:visited {
        color: #fff ;
    }

        .carousel-caption a:hover {
            color: #fff;
            -webkit-text-stroke: 0.4px;
        }


    @media (max-width: 992px) {
        #heroCarousel .carousel-item img {
            height: 50vh;
            object-fit: cover;
        }
    }


.home-product-categories {
    background: #f5f5f5;
}

.section-title {
    text-transform: lowercase;
    letter-spacing: 6px;
    font-weight: 300;
    border: none;
}

.home-product-link {
    text-decoration: none;
}

.home-product-icon-wrap {
    width: 70px;
    height: 70px;
    border: 1px solid #444;
    background: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease, box-shadow 0.6s ease, background-color 0.6s ease;
}

.home-product-icon {
    width: 35px;
    height: 20px;
    object-fit: contain;
}

.home-product-name {
    color: #222;
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.home-product-link:hover .home-product-icon-wrap {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.12);
    background: #fff;
}

.home-product-link:hover .home-product-name {
    color: var(--color-primary);
}


/*home-project*/

.home-project-card {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.home-project-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
}
.home-project-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1.3rem;
    min-height: 20rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: linear-gradient( to top, rgba(255,255,255,0.98), rgba(255,255,255,0) );
    display: flex;
    align-items: flex-end;
}

.home-project-title {
    color: #111;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;

}

.home-project-card:hover .home-project-overlay {
    opacity: 1;
}

.home-project-card:hover .home-project-image {
    opacity: 0.45;
    transform: scale(1.03);
}

/*home-project END*/
.page-header {
    background: #f5f5f5;
}

.breadcrumb {
    background: #f5f5f5;
    margin-top: 5rem;
    padding: 2rem 0;
    /* text-transform: uppercase;*/
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-size: 1.5rem;
    font-weight: 100;
    color: #000;
    margin-bottom:23px;
}

    .breadcrumb li,
    .breadcrumb .active {
      
        padding-left:1rem
       
    }

    .breadcrumb .active {
        font-weight: 300;
        color: #111;
    }

    .breadcrumb a {
        color: #777;
        transition: color 0.3s ease;
        font-weight: 300;
        padding:0 1rem;
        font-size: 1.2rem;
    }

        .breadcrumb a:hover {
            color: #000;
        }



/*Text page*/


.text-page-image {
    width: 100%;
    height: auto;
    display: block;
}

.text-page-image-wrap {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}


.text-page-body {
    color: #333;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
}

    .text-page-body p strong {
       
        font-weight: 500;
        margin: 3rem 0 1rem 0;
    }


    .text-page-body h3, .text-page-body h4 {
        margin-top: 50px;
        font-weight:500;
    }


    .text-page-body h4 {
        font-size: 1.3rem;
    }


        /*end Text page*/
        .events-section .card {
            border: 1px solid #ccc;
            border-radius: 8px;
            transition: box-shadow 0.3s ease, background-color 0.3s ease;
            background-color: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }


    .events-section .event-date {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .events-section.event-day {
        font-size: 0.8rem;
        text-transform: uppercase;
        color: #888;
        font-weight: 500;
    }

    .events-section .event-number {
        font-size: 1rem;
        font-weight: 700;
        color: var(--color-primary);
    }

    .events-section .card-title a {
        text-decoration: none;
        color: #333;
        font-size: 0.95rem;
    }

        .events-section .card-title a:hover {
            color: var(--color-primary);
        }



    .events-section .card:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
        background-color: rgba(var(--color-primary-rgb), 0.3);
    }

    .events-section .card-title a,
    .events-section .card-title a:link,
    .events-section .card-title a:visited {
        color: #000 !important;
        font-weight: 600;
    }

        .events-section .card-title a:hover {
            color: var(--color-primary) !important;
        }

    .events-section h5, .product-card-overlay h5, .product-card-title h5 {
        border-bottom: none;
    }
    /* Products Section */
    .product-card {
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: box-shadow 0.3s ease;
        background: linear-gradient(to bottom, #e0e0e0, #f5f5f5);
    }

        .product-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

    .product-card-img {
        position: relative;
        width: 100%;
        height: 280px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .product-card-overlay {
        position: absolute;
        bottom: 0rem;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.4rem 0.75rem;
        background-color: rgba(0, 0, 0, 0.55);
        color: #fff;
        border-radius: 4px;
        display: inline-block;
        white-space: nowrap;
    }

    .product-card-title {
        font-size: 1rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0;
    }

    .product-card-footer {
        padding: 0.75rem;
        text-align: center;
    }



    /*Products category*/
.product-list-card {
    position: relative;
    overflow: hidden;
    background: #f7f7f7;
}

.product-list-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.6s ease, filter 0.6s ease;
}

.product-list-number {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    background: rgba(255,255,255,0.75);
    padding: 0rem 0.45rem;
    font-size: 0.75rem;
    font-weight: 300;
    color: #000;
}

.product-list-new {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 5;
    background: #cc0000;
    color: #fff;
    padding: 0.2rem 0.55rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.product-list-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1.3rem;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: linear-gradient( to top, rgba(255,255,255,0.99), rgba(255,255,255,.6) );
    display: flex;
    align-items: flex-end;
}

.product-list-title {
    font-size: 1.3rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height: 1.25;
    min-height: 3.2rem;
}

.product-list-dimensions {
    color: #cc0000;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-list-description {
    color: #111;
    font-size: 0.9rem;
    line-height: 1.5;
}

.product-list-card:hover .product-list-overlay {
    opacity: 1;
}

.product-list-card:hover .product-list-image {
    transform: scale(1.03);
    filter: brightness(1.08);
}


/*.single-product*/
.single-product-image {
    width: 100%;
    max-width: 750px;
    height: auto;
    display: inline-block;
}

.single-product-title {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 0;
}

.bigger {
    font-size: 1.6rem;
}

.single-product-dimensions {
    display: flex;
    align-items: flex-end;
    gap: 0.4rem;
    color: #777;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.3;
}

.single-product-dim-icon {
    height: 18px;
    width: auto;
    display: block;
}

.single-product-description {
    color: #777;
    font-size: 1.0rem;
    font-weight: 300;
    line-height: 1.6;
}

.single-product-gallery-thumb-wrap {
    overflow: hidden;
    cursor: zoom-in;
}

.single-product-gallery-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.single-product-gallery-thumb-wrap:hover .single-product-gallery-thumb {
    opacity: 0.75;
    transform: scale(1.06);
}


.single-theme-gallery .row {
    --bs-gutter-x: 12rem;
    --bs-gutter-y: 8rem;
}

  
    /* Footer */
#footer {
    background: linear-gradient(to bottom, #666, #000);
    color: #fff;
    padding: 2.5rem 0 0rem;
    margin-top: 3rem;
}


    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }



#footer a,
#footer a:link,
#footer a:visited {
    color: #fff !important;
    transition: color 0.3s ease;
    font-weight:300;
}

    #footer a:hover {
        color: #999 !important;
    }



    .footer-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        margin-bottom: 1.5rem;
    }

        .footer-logos img {
            height: 70px;
            object-fit: contain;
        }

    .footer-contact {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        margin-bottom: 1.5rem;
    }

    .footer-copyright {
        text-align: center;
        font-size: 0.85rem;
        background-color: var(--color-footer-copyright);
        padding: 1rem;
        margin-top: 1.5rem;
        width: 100%;
    }

        .footer-copyright p {
            margin-bottom: 0;
            color: #fff;
            opacity: 0.85;
        }
    /* Event Gallery */
    .gallery-thumb {
        width: 100%;
        height: 150px;
        object-fit: cover;
        transition: opacity 0.3s ease, transform 0.3s ease;
        cursor: pointer;
    }

        .gallery-thumb:hover {
            opacity: 0.85;
            transform: scale(1.03);
        }

    .back-to-top {
        position: fixed;
        bottom: 60px;
        right: 20px;
        width: 45px;
        height: 45px;
        background: #ccc;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999;
        opacity: 0;
        transform: translateY(20px);
        pointer-events: none;
        transition: all 0.4s ease !important;
    }

        .back-to-top.show {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

/* Mobile tweak */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 60px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}
    /* Mobile: always use "scrolled" look */
    @media (max-width: 991.98px) {

        #header {
            position: fixed;
        }

        #mainNav .navbar-brand img {
            height: 80px !important;
        }

        #mainNav {
            background: #fff !important;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

            #mainNav .nav-link {
                color: #444 !important;
                text-shadow: none;
            }

        #header i {
            color: var(--color-primary);
        }

        body {
            padding-top: 80px; /* match navbar height */
        }



        .breadcrumb {
            margin-top: 0;
            padding: 1rem 0;
            margin-bottom: 1rem;
            font-size: 1rem;
            letter-spacing: 1px;
        }

            .breadcrumb a {
                font-size: 0.95rem;
                padding: 0 0.4rem;
            }

            .breadcrumb li,
            .breadcrumb .active {
                padding-left: 0.4rem;
            }


        .megamenu hr {
            width:100%;
        }

        .megamenu ul {
            padding-right: 0;
        }


        .single-theme-gallery .row {
            --bs-gutter-x: 8rem;
            --bs-gutter-y: 4rem;
        }


    }