/* Hero Section with Hotel Background */
.hero-section {
    position: relative;
    min-height: 85vh;
    background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(44, 95, 65, 0.85) 0%,
        rgba(27, 54, 93, 0.75) 100%
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    margin-bottom: 4rem;
    animation: fadeInDown 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-badge i {
    font-size: 1.1rem;
}

/* Search Wrapper */
.hero-search-wrapper {
    position: relative;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.floating-search-bar {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.floating-search-bar:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.floating-search-bar .input-group-text {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1rem;
}

.floating-search-bar .form-control {
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.floating-search-bar .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 95, 65, 0.15);
}

.floating-search-bar .btn-primary {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.floating-search-bar .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 95, 65, 0.4);
}

.floating-search-bar .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.floating-search-bar .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Styles */
@media (max-width: 991px) {
    .hero-section {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .hero-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .floating-search-bar {
        padding: 1.25rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-section {
        min-height: 75vh;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem !important;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .hero-badge i {
        font-size: 1rem;
    }

    .hero-search-wrapper {
        margin-bottom: 2rem;
    }

    .floating-search-bar {
        padding: 1rem;
        border-radius: 12px;
    }

    .floating-search-bar .input-group-text,
    .floating-search-bar .form-control {
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
    }

    .floating-search-bar .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .search-btn .btn-text {
        display: none;
    }

    .search-btn i {
        margin: 0 !important;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .hero-section {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .floating-search-bar {
        padding: 0.875rem;
    }

    .hero-search-wrapper {
        margin-bottom: 1.5rem;
    }
}

/* Filter Dropdown Styling */
.search-filters-dropdown {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 0;
}

.search-filters-dropdown .dropdown-header {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    padding-top: 0;
}

.search-filters-dropdown .form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.search-filters-dropdown .form-control-sm {
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.search-filters-dropdown .form-control-sm:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 95, 65, 0.15);
}

.search-filters-dropdown .dropdown-divider {
    margin: 1rem 0;
    opacity: 0.2;
}
