/* Custom Styles for Dorje Camps Sarchu */
body {
    font-family: 'Inter', sans-serif;
}

.hero-section {
    position: relative;
    background-image: url('../images/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 50px;
}

/* Fix for Tailwind/Bootstrap conflict on Nav menus */
.navbar-collapse.show,
.navbar-collapse.collapsing {
    visibility: visible !important;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        visibility: visible !important;
    }
}