/* Move down content because we have a fixed navbar that is 50px tall */
body {
    /*    padding-top: 50px;
    padding-bottom: 20px;*/
    background-repeat: no-repeat;
    background-attachment: fixed;
}


html, body {
    height: 100%;
}

#BlueGrey {
    height: 100%;
    background: #CEDCEA;
}

.GreenBG {
    background-image: url('/Images1/life-green-blurry-background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
}

.BlueGlobeBG {
    background-image: url('/Images1/FirstVid-background.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
}

.WaterSplashBG {
    background-image: url('/Images1/waterbackground1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
}

.ShipAndBeachBG {
    background-image: url('/Images1/ShipAndBeachBackGround.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
}

.SuccessBG {
    background-image: url('/Images1/success-back.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
}


/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}


/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}

/* floating menu */
/*##################*/

.floating-language-btn {
    position: fixed; /* Ensures it stays in the same place */
    top: 20px; /* Distance from the top */
    right: 20px; /* Distance from the right */
    z-index: 9999; /* Ensures it stays above everything */
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid #ccc;
    border-radius: 50px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

    /* Ensure the icon is the right size */
    .floating-language-btn img {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }

    /* Style the dropdown */
    .floating-language-btn select {
        border: none;
        background: transparent;
        font-size: 14px;
        cursor: pointer;
        outline: none;
    }

/* Mobile adjustments */
@media (max-width: 768px) {
    .floating-language-btn {
        top: 10px;
        right: 10px;
        padding: 6px 10px;
    }

        .floating-language-btn img {
            width: 16px;
            height: 16px;
        }

        .floating-language-btn select {
            font-size: 13px;
        }
}

/* Extra small screens */
@media (max-width: 480px) {
    .floating-language-btn {
        top: 5px;
        right: 5px;
        padding: 4px 8px;
    }

        .floating-language-btn img {
            width: 14px;
            height: 14px;
        }

        .floating-language-btn select {
            font-size: 12px;
        }
}







/*.floating-language-menu {
    position: fixed;
    top: 10px;*/ /* Adjust distance from the top */
/*right: 10px;*/ /* Adjust distance from the right */
/*z-index: 1000;*/ /* Ensure it's above other elements */
/*}

.custom-globe-icon {
    width: 20px;*/ /* Adjust globe size */
/*height: auto;
    margin-right: 5px;
}*/

/* Optional: Add some shadow for better visibility */
/*.floating-language-menu button {
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}*/


/* Solid light grey button */
/*.btn-solid-grey {
    background-color: rgba(255, 255, 255, 0.82) !important;*/ /* Light grey - FORCE SOLID */
/*color: #333333 !important;*/ /* Dark grey text */
/*border: 1px solid #a9a9a9 !important;*/ /* Slightly darker grey border */
/*font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}*/

/* Ensure background stays solid even when clicked */
/*.btn-solid-grey:focus,
    .btn-solid-grey:active,
    .btn-solid-grey.show,
    .btn-solid-grey.dropdown-toggle {
        background-color: rgba(255, 255, 255, 0.82) !important;*/ /* Same grey */
/*color: #333333 !important;
        border-color: #a9a9a9 !important;
        box-shadow: none !important;
        outline: none !important;
    }*/

/* Slightly darker grey when hovering */
/*.btn-solid-grey:hover {
        background-color: #bfbfbf !important;*/ /* Darker grey */
/*color: black !important;
    }*/





/*This is to fix 100vh on Mobile devices*/
/*.phonelayout {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}*/

/*.phonelayout {
    min-height: 100vh;*/ /* fall-back */
/*min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height: fill-available;
}*/

/* Responsive: Portrait tablets and up */

/*    @media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }

    .body-content {
        padding: 0;
    }
    
}*/
