/* Hero Search Bar - Magical Trip Style */

.hero-search-bar {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    z-index: 10;
}

.search-bar-container {
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    padding: 8px;
    transition: box-shadow 0.3s ease;
}

.search-bar-container:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.search-field {
    flex: 1;
    padding: 16px 20px;
    border: none;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.search-field:not(:last-child) {
    border-right: 1px solid #e0e0e0;
}

.search-field-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    display: block;
    margin-bottom: 4px;
    text-transform: capitalize;
}

.search-field-value {
    font-size: 15px;
    font-weight: 500;
    color: #222;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-field-value.placeholder {
    color: #999;
}

.search-field input,
.search-field select {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    outline: none;
    padding: 0;
    cursor: pointer;
}

.search-field input::placeholder {
    color: #999;
}

.search-field input[type="date"] {
    cursor: pointer;
}

.search-btn {
    background: linear-gradient(135deg, #ff5757 0%, #ff3b3b 100%);
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 59, 59, 0.4);
}

.search-btn:active {
    transform: scale(0.95);
}

.search-btn i {
    color: white;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .search-bar-container {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
        gap: 15px;
    }
    
    .search-field {
        border-right: none !important;
        border-bottom: 1px solid #e0e0e0;
        padding: 12px 0;
    }
    
    .search-field:last-of-type {
        border-bottom: none;
    }
    
    .search-btn {
        width: 100%;
        border-radius: 30px;
        height: 48px;
    }
    
    .search-btn span {
        display: inline;
        margin-left: 10px;
        color: white;
        font-weight: 600;
    }
}

/* Desktop: hide button text */
.search-btn span {
    display: none;
}

@media (max-width: 768px) {
    .search-btn span {
        display: inline;
    }
}
