/* ============================================
   SITE.CSS - Color Discovery
   ============================================ */
:root {
    --color-primary: rgb(173, 32, 142);
    --color-primary-hex: #AD208E;
    --color-primary-rgb: 173, 32, 142;
    --color-primary-light: #d44ab8;
    --color-link: #1a3a5c;
    --color-footer-copyright: #2c1654;
}

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

a, a:link, a:visited {
    color: var(--color-link) !important;
    text-decoration: none !important;
    font-weight: 700;
    transition: -webkit-text-stroke 0.1s ease, color 0.2s ease;
}

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

h2, h3, h4, h5 {
    color: #666 ;
    border: none;
    padding-left: 0;
    display: inline-block;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(to right, var(--color-primary-hex), #fff) 1;
    padding-bottom: 0.3rem;
    margin-bottom: 1rem;
}




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


/* ----------------------
   Navbar
---------------------- */
#mainNav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 0px;
}

    #mainNav .navbar-brand img {
        height: 80px;
        width: auto;
        object-fit: contain;
    }

    #mainNav .nav-link {
        font-weight: 500;
        font-size: 1.1rem;
        color: #444;
        padding: 0.5rem 0.85rem;
        transition: color 0.2s ease;
    }

        #mainNav .nav-link:hover,
        #mainNav .nav-link.active {
            color: var(--color-primary) !important;
        }

    #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;
        display: block;
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
    }

        #mainNav .dropdown-menu.show {
            opacity: 1;
            visibility: visible;
            height: auto;
            overflow: visible;
            pointer-events: all;
        }

    #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: #f3edf7;
            color: var(--color-primary) !important;
        }

/* ----------------------
   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: 85vh;
    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: var(--color-primary);
    opacity: 1;
}

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

#hero .carousel-control-prev:hover .carousel-control-prev-icon,
#hero .carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(27%) sepia(80%) saturate(800%) hue-rotate(270deg) brightness(80%);
}

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

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


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

/* Intro & Events Section */


.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;
}

/* YouTube slot */
.product-card-video {
    background-image: none;
}

    .product-card-video iframe {
        width: 100%;
        height: 280px;
        display: block;
    }

/* Order Now button */
.btn-cd,
.btn-cd:link,
.btn-cd:visited {
    display: inline-block;
    background-color: #ccc;
    border: 1px solid #e0e0e0 !important;
    color: #333 !important;
    border-radius: 6px;
    padding: 0.375rem 0.75rem;
    transition: background-color 0.9s ease, box-shadow 0.9s ease;
    text-decoration: none !important;
}

    .btn-cd:hover,
    .btn-cd:focus,
    .btn-cd:active {
        background-color: rgba(var(--color-primary-rgb), 0.3) !important;
        border: 1px solid #e0e0e0 !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        outline: none !important;
    }




/* Footer */
#footer {
    background: linear-gradient(to bottom, var(--color-primary-light), var(--color-primary));
    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;
        text-decoration: none !important;
    }

        #footer a:hover {
            color: var(--color-link) !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;
    }
}