/* Hero Section */
.destinations-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.destinations-hero::before {
    content: "";
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-family: var(--bs-font-sans-serif);
}

.hero-subtitle {
    color: var(--rgba-white-95);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

.hero-search {
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid var(--rgba-black-05);
    border-radius: 50px;
    padding: 1rem;
    overflow: hidden;
    position: relative;
    z-index: 2;
    max-width: 400px;
    margin: 0 auto;
}

.search-wrapper {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: none;
    border-radius: 50px;
    background: var(--rgba-white-98);
    backdrop-filter: blur(15px);
    border: 1px solid var(--rgba-white-50);
    font-size: 1rem;
    color: var(--gray-700);
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--white);
}

.search-input::placeholder {
    color: var(--gray-500);
}
