/**
 * Homepage Styles - Rebuild Peradeniya
 */

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Hide Scrollbar Utility */
/* For Chrome, Safari and Opera */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* For IE, Edge and Firefox */
.hide-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
    /* Force the navbar to allow content to spill out (the dropdown) */
#navbar {
    overflow: visible !important;
}
    
    /* Ensure the menu has a solid background and sits on top */
#navMenu {
    position: absolute;
    top: 100%; /* Pushes it exactly below the navbar */
    left: 0;
    width: 100%;
    background-color: white; /* Ensure it's not transparent */
    z-index: 9999;
    border-top: 1px solid #e5e7eb;
}