/* ============================================
   SITE.CSS - Color Discovery
   ============================================ */
:root {
    --color-primary: rgb(173, 32, 142);
    --color-primary-hex: #AD208E;
}

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

/* ----------------------
   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;
}

#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 .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%);
}
