/*
 * Luxury Custom CSS for Zahaa Tourism Services
 */

html {
    scroll-behavior: smooth;
}

/* Background image for hero section */
/* UPDATE IMAGE HERE: Add your own high-quality luxury travel background image url */
.hero-bg {
    background-image: url('https://images.unsplash.com/photo-1540541338287-41700207dee6?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Parallax effect */
}

/* Navbar scroll effect classes */
.nav-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.1);
}

.nav-scrolled .logo-text {
    color: #1e3a8a !important;
    /* Deep Blue (primary) */
}

.nav-scrolled .nav-link {
    color: #1e3a8a !important;
    /* Deep Blue */
    font-weight: 500;
}

.nav-scrolled .nav-link:hover {
    color: #d4af37 !important;
    /* Luxury Gold (secondary) */
}

.nav-scrolled #mobile-menu-btn {
    color: #1e3a8a !important;
    /* Deep Blue */
}

/* Loader for button */
.loader {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Custom Scrollbar for Luxury Feel */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1e3a8a;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0f172a;
}