/* ============================= */
/* ROOT SECTION */
/* ============================= */
.drUniqueHeroSlider_root {
    position: relative;
    height: 100vh;
    overflow: hidden;
    font-family: sans-serif;
}

/* ============================= */
/* SLIDER (SNAP CAROUSEL) */
/* ============================= */
.drSnapSlider_wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Track */
.drSnapSlider_track {
    display: flex;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    /* Hide scrollbar */
    scrollbar-width: none;
}
.drSnapSlider_track::-webkit-scrollbar {
    display: none;
}

/* Slide */
.drSnapSlider_slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
}

@keyframes drSnapSlider_zoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* ============================= */
/* OVERLAY */
/* ============================= */
.drUniqueHeroSlider_overlayLayer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.7)
    );
    z-index: 1;
}

/* ============================= */
/* CONTENT */
/* ============================= */
.drUniqueHeroSlider_contentWrapper {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
}

/* ============================= */
/* TYPOGRAPHY */
/* ============================= */
.drUniqueHeroSlider_heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.drUniqueHeroSlider_subheading {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ============================= */
/* SEARCH BOX */
/* ============================= */
.drSearchBar_root {
    display: flex;
    align-items: center;
    gap: 6px;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 20px;

    padding: 10px;
    max-width: 1100px;
    margin: 100px auto;

    box-shadow: 
        0 12px 40px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.5);
}

/* ITEM */
.drSearchBar_item {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 16px;
    min-width: 180px;

    border-radius: 14px;
    position: relative;

    transition: all 0.25s ease;
}

.drSearchBar_item:hover,
.drSearchBar_item:focus-within {
    background: rgba(255,255,255,0.6);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* ICON */
.drSearchBar_icon {
    font-size: 18px;
    color: #ff3b30;
}

/* FIELD */
.drField {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.drField label {
    font-size: 11px;
    color: #999;
}

/* INPUT */
.drSearchBar_input {
    border: none;
    outline: none;
    background: transparent;

    font-size: 14px;
    font-weight: 500;
    color: #222;
}

/* DATE FIX */
.drSearchBar_input[type="date"] {
    appearance: none;
}

/* DIVIDER */
.drSearchBar_divider {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, #ddd, transparent);
}

/* BUTTON */
.drSearchBar_button {
    background: linear-gradient(135deg, #ff3b30, #ff6a5f);
    color: white;
    border: none;

    padding: 14px 24px;
    border-radius: 14px;

    font-weight: 600;
    cursor: pointer;

    box-shadow: 0 8px 20px rgba(255,59,48,0.35);
    transition: all 0.3s ease;
}

.drSearchBar_button:hover {
    transform: translateY(-2px) scale(1.03);
}

/* DROPDOWN */
.drDropdown {
    cursor: pointer;
}

.drDropdown_selected {
    font-size: 14px;
    font-weight: 500;
    color: #222;
}

.drDropdown_menu {
    position: absolute;
    top: 110%;
    left: 0;

    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);

    width: 100%;
    display: none;
    z-index: 10;
}

.drDropdown.active .drDropdown_menu {
    display: block;
}

.drOption {
    padding: 12px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.drOption:hover {
    background: #f5f5f5;
}

/* MOBILE */
@media (max-width: 768px) {
    .drSearchBar_root {
        flex-direction: column;
        align-items: stretch;
    }

    .drSearchBar_divider {
        display: none;
    }

    .drSearchBar_button {
        width: 100%;
    }
}

/* ============================= */
/* TAGS */
/* ============================= */
.drUniqueHeroSlider_tags {
    margin-top: 18px;
    font-size: 14px;
    opacity: 0.85;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {
    .drUniqueHeroSlider_heading {
        font-size: 32px;
    }

    .drUniqueHeroSlider_subheading {
        font-size: 15px;
    }

    .drUniqueHeroSlider_searchBox {
        flex-direction: column;
        align-items: center;
    }

    .drUniqueHeroSlider_selectPrimary,
    .drUniqueHeroSlider_selectCity,
    .drUniqueHeroSlider_searchBtn {
        width: 90%;
    }
}