/* Rudrika Travels (Rudrika Travels) - Shared Custom Stylesheet */

/* Mobile Layout Safety & Smooth Tap Behavior */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

/* Material Symbols configuration */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* Responsive Touch Target Helper */
.touch-target {
    min-height: 44px;
    min-width: 44px;
}

/* Dynamic Responsive Text Clamping */
.responsive-hero-heading {
    font-size: clamp(2rem, 6.5vw, 4rem);
    line-height: 1.15;
}

.responsive-heading {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    line-height: 1.25;
}

/* Hero Section Gradients */
.hero-gradient {
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
}

/* Hero Text Cycle Container */
.text-cycle-container {
    display: inline-block;
    min-width: 120px;
    text-align: left;
}

@media (min-width: 640px) {
    .text-cycle-container {
        min-width: 150px;
    }
}

/* Scroll Fade Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar styles for Filters */
.filter-scrollbar::-webkit-scrollbar {
    width: 4px;
}
.filter-scrollbar::-webkit-scrollbar-thumb {
    background: #E5E7EB;
    border-radius: 10px;
}

/* Trip Card Hover effects */
.trip-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.trip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Custom Budget Range Slider */
.custom-range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #E5E7EB;
    border-radius: 5px;
    outline: none;
}
.custom-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: #005252;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.25);
}

/* Active states for filter buttons and chips */
.difficulty-btn.active {
    background-color: #1b6b6b;
    color: #ffffff;
    border-color: #1b6b6b;
}
.month-btn.active {
    background-color: #984700;
    color: #ffffff;
    border-color: #984700;
}
.category-chip.active {
    background-color: #005252;
    color: #ffffff;
}

/* Active State for Tabs in Details Page */
.active-tab {
    border-bottom: 3px solid #005252;
    color: #005252;
    font-weight: 700;
}

/* Header Active link indicators */
.nav-link-active {
    border-bottom: 2px solid #005252;
    color: #005252;
    font-weight: bold;
}
.glass-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
}

/* Booking wizard step indicators */
.step-circle.active {
    background-color: #005252;
    color: #ffffff;
    border-color: #005252;
}
.step-circle.completed {
    background-color: #2ECC71;
    color: #ffffff;
    border-color: #2ECC71;
}

/* Utility to hide scrollbars */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

