/* SangBleu Sunrise Font */
@font-face {
    font-family: "SangBleu Sunrise";
    src: url("https://db.onlinewebfonts.com/t/5ebc09361aef4dbfa14ad8492b8cca11.eot");
    src: url("https://db.onlinewebfonts.com/t/5ebc09361aef4dbfa14ad8492b8cca11.eot?#iefix") format("embedded-opentype"),
         url("https://db.onlinewebfonts.com/t/5ebc09361aef4dbfa14ad8492b8cca11.woff2") format("woff2"),
         url("https://db.onlinewebfonts.com/t/5ebc09361aef4dbfa14ad8492b8cca11.woff") format("woff"),
         url("https://db.onlinewebfonts.com/t/5ebc09361aef4dbfa14ad8492b8cca11.ttf") format("truetype"),
         url("https://db.onlinewebfonts.com/t/5ebc09361aef4dbfa14ad8492b8cca11.svg#SangBleu Sunrise") format("svg");
    font-weight: normal;
    font-style: normal;
}

/* Hero Section */
.clean-search-hero {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: "SangBleu Sunrise", serif;
    margin: 0;
}

.clean-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clean-content {
    position: relative;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 60px 0;
}

.clean-heading {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 80px;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.1;
    font-family: "SangBleu Sunrise", serif;
    position: relative;
    z-index: 15;
    color: #ffffff !important;
}

.clean-heading::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 0px;
    background: #d4af37;
}

/* Search Form */
.search-form-container {
    position: relative;
    z-index: 20;
    width: 100%;
    max-width: 800px;
    margin-top: 0;
}

.search-box {
    display: flex;
    background: #f8f9fa;
    border-radius: 0px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
    width: 100%;
}

.search-box:focus-within {
    border-color: #d4af37;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

#country-search {
    flex: 1;
    padding: 25px 30px;
    border: none;
    outline: none;
    font-size: 20px;
    font-weight: 400;
    background: transparent;
    color: #2c3e50;
    text-align: center;
    transition: all 0.9s ease;
    font-family: "SangBleu Sunrise", serif;
    letter-spacing: 1px;
    width: 100%;
}

#country-search::placeholder {
    color: #6c757d;
    font-style: italic;
}

.go-btn {
    padding: 25px 40px;
    color: #1a1a1a;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    font-family: "SangBleu Sunrise", serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    background: #d4af37;
}

.go-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.go-btn:hover::before {
    left: 100%;
}

.go-btn:hover {
    background: transparent !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	border-color: #ffffff;
}

/* Single Visible Destination */
.single-destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
}

.destination-track {
    position: relative;
    width: 70%;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Make clickable destinations */
.destination-item {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    line-height: 36px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    opacity: 0;
    text-align: center;
    font-family: "SangBleu Sunrise", serif;
    white-space: nowrap;
    padding: 12px 60px;
    border-radius: 0px;
    background: transparent;
    border: 0px solid rgba(233, 236, 239, 0.8);
    min-width: 500px;
    max-width: 600px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    color: #000000;
    margin: 0;
    z-index: 25;
    pointer-events: auto; /* Enables clicks */
    cursor: pointer;
}

/* Hover */
.destination-item:hover {
	margin:60px;
    color: #000000 !important;
    opacity: 1 !important;
    transform: translateX(-60%) scale(1.05) !important;
    background: #d4af37 !important;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
    letter-spacing: 3px;
}

/* Animation */
@keyframes singleDestinationScroll {
    0%, 10% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px) scale(0.95);
        filter: blur(2px);
    }
    11%, 25% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
        filter: blur(0);
    }
    26%, 100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px) scale(0.95);
        filter: blur(2px);
    }
}

/* Staggered Animations */
.destination-item:nth-child(1) { animation: singleDestinationScroll 18s infinite 0s; }
.destination-item:nth-child(2) { animation: singleDestinationScroll 18s infinite 2s; }
.destination-item:nth-child(3) { animation: singleDestinationScroll 18s infinite 4s; }
.destination-item:nth-child(4) { animation: singleDestinationScroll 18s infinite 6s; }
.destination-item:nth-child(5) { animation: singleDestinationScroll 18s infinite 8s; }
.destination-item:nth-child(6) { animation: singleDestinationScroll 18s infinite 10s; }
.destination-item:nth-child(7) { animation: singleDestinationScroll 18s infinite 12s; }
.destination-item:nth-child(8) { animation: singleDestinationScroll 18s infinite 14s; }
.destination-item:nth-child(9) { animation: singleDestinationScroll 18s infinite 16s; }
.destination-item:nth-child(10) { animation: singleDestinationScroll 18s infinite 18s; }

/* Responsive Design */

/* Laptop */
@media (max-width: 1024px) {
    .clean-heading {
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin-bottom: 80px;
    }
    .destination-item {
        font-size: 18px;
        min-width: 256px;
        max-width: 400px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .clean-heading {
        font-size: 1.6rem;
        margin-bottom: 180px;
    }
    .destination-item {
        font-size: 18px;
        min-width: 350px;
        max-width: 450px;
        padding: 8px 25px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .clean-heading {
        font-size: 1.6rem;
        margin-bottom: 50px;
    }
    .destination-item {
        font-size: 16px;
        min-width: 280px;
        max-width: 320px;
        padding: 26px 68px;
    }
    .search-box {
        flex-direction: column;
        border-radius: 0px;
    }
    #country-search {
        font-size: 18px;
        padding: 22px;
    }
    .go-btn {
        padding: 16px;
        font-size: 14px;
    }
    .destination-track {
        height: 20px;
    }

    /* Mobile-Optimized Non-Overlapping Animation */
    @keyframes singleDestinationScroll {
        0%, 15% {
            opacity: 0;
            transform: translateX(-50%) translateY(12px) scale(0.96);
            filter: blur(1px);
        }
        16%, 30% {
            opacity: 1;
            transform: translateX(-50%) translateY(0) scale(1);
            filter: blur(0);
        }
        31%, 100% {
            opacity: 0;
            transform: translateX(-50%) translateY(-12px) scale(0.96);
            filter: blur(1px);
        }
    }
}

/* Elementor Fix */
#page > div > div > div.elementor-element.elementor-element-2b0bacf.e-con-full.e-flex.e-con.e-child > div > div > div {
    background: transparent !important;
}
