body {
    font-family: 'Inter', sans-serif;
    background: #F7F1E8;
    margin: 0;
    padding: 0;
}

/* HEADER */
.lux-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(247, 241, 232, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar {
    min-height: 80px;
}

.lux-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #2E2217 !important;
    letter-spacing: 4px;
    font-weight: 600;
    text-decoration: none;
}

.lux-nav .nav-link {
    color: #2E2217 !important;
    font-weight: 500;
    margin: 0 12px;
    position: relative;
    transition: 0.3s ease;
    white-space: nowrap;
}

.lux-nav .nav-link:hover {
    color: #A47C48 !important;
}

/* MEGA MENU */
.mega-parent {
    position: static;
}

.mega-menu {
    position: fixed;
    top: 92px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: min(95vw, 1280px);
    max-height: 80vh;
    overflow-y: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 99999;
}

.mega-parent:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.destination-mega .row,
.tours-mega .row {
    align-items: start;
}

.mega-menu h5 {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 18px;
    font-size: 1.6rem;
    color: #2E2217;
}

.mega-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu ul li {
    margin-bottom: 10px;
}

.mega-menu ul li a {
    text-decoration: none;
    color: #2E2217;
    font-size: 15px;
    transition: 0.3s ease;
}

.mega-menu ul li a:hover {
    color: #A47C48;
    padding-left: 6px;
}

/* IMAGE CARDS */
.mega-image-card,
.tour-mega-card {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
}

.mega-image-card img,
.tour-mega-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.mega-image-card:hover img,
.tour-mega-card:hover img {
    transform: scale(1.08);
}

.tour-mega-card h5 {
    margin-top: 15px;
    margin-bottom: 8px;
}

.tour-mega-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* IMAGE OVERLAY */
.mega-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 1.3rem;
    font-family: 'Cormorant Garamond', serif;
}

.mega-image-card {
    position: relative;
}

/* BOOK BUTTON */
.paw-btn {
    background: #2E2217;
    color: white;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    font-weight: 600;
    white-space: nowrap;
}

.paw-btn:hover {
    background: #A47C48;
    transform: translateY(-3px);
    color: white;
}

.paw-mark {
    margin-left: 8px;
    display: inline-block;
    animation: pawBounce 1.5s infinite;
}

@keyframes pawBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* MOBILE */
@media (max-width: 991px) {
    .lux-header {
        padding: 8px 0;
    }

    .mega-menu {
        position: static;
        width: 100%;
        max-height: none;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-radius: 0;
        padding: 20px;
        display: none;
        margin-top: 10px;
    }

    .mega-parent:hover .mega-menu {
        display: block;
    }

    .lux-nav .nav-link {
        margin: 10px 0;
    }

    .paw-btn {
        display: none;
    }

    .tour-mega-card,
    .mega-image-card {
        margin-bottom: 20px;
    }
}