/* === Font Imports === */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

/* === Base Styles === */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 400;
    color: #051036;
}

a {
    text-decoration: none;
}

/* === Navbar Styles === */
header .navbar {
    background-color: #ffffff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    height: 8.5vh;
}

.navbar .navbar-nav .nav-link {
    display: block;
    width: fit-content;
    color: #222222;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 400;
    font-size: 13.5px;
    padding: 10px;
    margin-right: 10px;
}

.navbar .navbar-nav .nav-link i {
    color: #59595B;
    margin-right: 3px;
}

.navbar .navbar-nav .nav-link:hover {
    color: #F26924;
}

/* === Dropdown Styles === */
.nav-item .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 18px 50px -10px rgba(0, 0, 0, 0.2);
    padding: 35px 20px !important;
}

.dropdown-item {
    padding: 18px 16px;
    color: #333;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
}

/* === Search Form Styles === */
.search-formsection {
    margin-top: -150px;
    z-index: 9;
}

.search-form {
    background: rgba(255, 255, 255, 0.32);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.6px);
    -webkit-backdrop-filter: blur(8.6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 100;
}

.search-container {
    max-width: 1200px;
    margin: 20px auto;
}

.search-form .form-group {
    flex: 1;
    min-width: 200px;
    margin: 5px;
    position: relative;
}

.form-control {
    border: none;
    padding: 12px 5px;
    font-size: 14px;
}

.form-control:focus {
    box-shadow: none;
    border-color: transparent;
}

.input-label {
    display: block;
    font-size: 12px;
    color: #FFFFFF;
    margin-bottom: 2px;
    font-weight: 600;
}

.date-range {
    display: flex;
    align-items: center;
}

.date-separator {
    margin: 0 5px;
    color: #999;
    padding-top: 10px;
}

.btn-dark {
    background-color: #018ACD !important;
    border: none !important;
}

.btn-danger {
    background-color: #F26924 !important;
    border: none !important;
}

.search-btn {
    color: #fff;
    background: linear-gradient(135deg, #00aef0 0%, #0098d6 100%);
    border: none;
    border-radius: 6px;
    min-height: 42px;
    min-width: 50px;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 500;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background-color: #0a85b9;
}

/* === Language Dropdown Styles === */
.language-dropdown {
    position: relative;
}

.language-button {
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    font-weight: bold;
    font-size: 16px;
    color: #222;
    cursor: pointer;
}

.language-button img,
.language-card img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    border-radius: 50%;
}

.language-card {
    position: absolute;
    top: 40px;
    right: 0;
    background: white;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.language-option {
    display: flex;
    align-items: center;
    padding: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.language-option:hover {
    background: #f4f4f4;
}

input[type="checkbox"] {
    accent-color: #E09169;
    border-radius: 3px;
    border: 2px solid #E09169 !important;
    color: white;
}

input[type="checkbox"]:checked {
    accent-color: #E09169;
    color: white;
}

.generalbutton2 {
    border: 1px solid #f26436;
    color: white !important;
    font-weight: 600;
    font-size: 15px;
    background: linear-gradient(135deg, #f26436 0%, #f58a68 100%);
    margin: 0 10px;
    border-radius: 10px;
    padding: 6px 12px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 6px rgba(242, 100, 54, 0.15);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.generalbutton2:hover {
    border-color: transparent !important;
    background: linear-gradient(135deg, #ff8a66 0%, #ff6b6b 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(255, 94, 98, 0.25);
}

.generalbutton2:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(242, 100, 54, 0.2);
}

.generalbuttonwhite2 {
    background-color: white !important;
    border: 1px solid #f26436 !important;
    color: #f26436 !important;
    font-weight: 600;
    font-size: 15px;
    margin: 0 10px;
    border-radius: 10px;
    padding: 6px 12px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.generalbuttonwhite2:hover {
    background: linear-gradient(135deg, white 0%, #ffece4 100%) !important;
    color: #e04b1a !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(242, 100, 54, 0.15);
    border-color: #e04b1a !important;
}

.generalbuttonwhite2:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.generalbutton {
    border: 1px solid #f26436;
    color: white !important;
    font-weight: 500;
    font-size: 15px;
    background: #f26436;
    margin: 0 10px;
    border-radius: 5px;
    padding: 5px 10px;
}

.generalbutton:hover {
    background: linear-gradient(90deg, #ff9966 0%, #ff5e62 100%) !important;
    border-color: transparent !important;
}

.generalbuttonwhite {
    background-color: white !important;
    border: 1px solid #f26436 !important;
    color: rgb(64, 64, 66) !important;
    font-weight: 500;
    font-size: 15px;
    margin: 0 10px;
    border-radius: 5px;
    padding: 5px 10px;
}

.generalbuttonwhite:hover {
    background: linear-gradient(90deg, white 0%, #ffc09f 100%) !important;
    font-weight: 600;
}

/* ==========================================================================
         Subscribe Area
         ========================================================================== */
.subscribe-area {
    background-color: #EFEFF2 !important;
    border: 2px solid #EFEFF2;
}

#check-in-wrapper, #check-out-wrapper {
    width: 200px !important;
}
/* === Media Queries === */

/* === Small Devices (Phones) === */
@media (max-width: 576px) {
    #home_one_banner {
        padding: 100px 0;
        position: relative;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-blend-mode: multiply;
        height: 60vh;
    }

}

/* === Medium Devices (Tablets) === */
@media (min-width: 577px) and (max-width: 991px) {
    #home_one_banner {

        padding: 130px 0 170px 0;
        position: relative;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-blend-mode: multiply;
        height: 60vh;
    }

    .dropdown__none {
        display: none !important;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        padding: 1rem;
    }

    .h1 {
        font-size: 3rem;
    }

    .prices {
        width: 100%;
    }
}

/* === Large Devices (Desktops) === */
@media (min-width: 992px) {
    :root {
        --section-padding: 60px;
    }

    .container {
        max-width: 1180px;
        margin-inline: auto;
    }

    .h1 {
        --fs-3: 12rem;
    }

    .header .contact-number {
        --fs-6: 3rem;
    }
}