/* --- Header & Mobile Menu Logic --- */

header {
    position: relative;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
}

/* Mouse Overlay ඉවත් කිරීම (Menu Links) */
nav ul li a:hover {
    background: transparent !important; /* Overlay එක ඉවත් කරයි */
    color: inherit !important;      /* මුල් font color එකම තබා ගනී */
    text-decoration: none;
}

/* 1. Responsiveness සහ Menu Icon එක පෙන්වීම */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block !important;
        cursor: pointer;
        font-size: 1.8rem;
        color: #333; /* Icon එකේ වර්ණය */
        z-index: 1001;
    }

    /* Mobile Dropdown එක සැකසීම */
    nav ul {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        padding: 15px 0;
        margin: 0;
        list-style: none;
    }

    nav ul.active {
        display: flex !important;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    /* Mobile එකේදීත් hover overlay එක ඉවත් කිරීම */
    nav ul li a:hover {
        background: transparent !important;
    }
}

/* --- Card Mouse Overlay සහ Filters ඉවත් කිරීම --- */
.destination-card::before, 
.destination-card::after,
.destination-info::before,
.package-card::before,
.package-card::after {
    display: none !important;
}

.destination-img img, .package-img img {
    filter: none !important; /* රූප අඳුරු වීම ඉවත් කරයි */
}