/* ============================================================
   Home page — hero search form
   Used only on the homepage banner; loaded via @push('styles')
   in resources/views/frontend/home.blade.php
   ============================================================ */

.advance-search-tab.mt70 {
    margin-top: 35px !important;
}

/* Search-Button hover/active Farbe */
#home-search-form .ud-btn.btn-thm:hover,
#home-search-form .ud-btn.btn-thm:focus,
#home-search-form .ud-btn.btn-thm:active,
#home-search-form .ud-btn.btn-thm:focus-visible {
    background-color: #070D1E !important;
    border-color: #070D1E !important;
    box-shadow: none !important;
}

/* Hero-Inhalt nach oben verschieben - Abstand zum Navigationsrand halbieren */
.home-banner-style1 .home-style1 {
    align-items: flex-start !important;
    padding-top: 160px !important;
}
@media (max-width: 991.98px) {
    .home-banner-style1 .home-style1 {
        padding-top: 100px !important;
    }
}

.search-form-container {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    max-width: 1000px;
    margin: 0 auto;
}

.simple-select {
    width: 100%;
    height: 55px;
    padding: 12px 20px;
    font-size: 15px;
    color: #333;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
    padding-right: 45px;
}

.simple-select:hover {
    background-color: white;
    border-color: #002df5;
    box-shadow: 0 4px 15px rgba(0, 45, 245, 0.1);
}

.simple-select:focus {
    background-color: white;
    border-color: #002df5;
    box-shadow: 0 4px 20px rgba(0, 45, 245, 0.15);
}

.simple-select option {
    padding: 10px;
    background: white;
    color: #333;
}
.simple-select option:hover {
    background-color: #070D1E;
    color: #ffffff;
}
.simple-select option:checked,
.simple-select option:focus {
    background: linear-gradient(#070D1E, #070D1E);
    color: #ffffff;
}

.search-select-wrapper label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .search-form-container {
        padding: 12px 15px;
        border-radius: 15px;
    }

    .search-select-wrapper {
        margin-bottom: 15px;
    }
}
