﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /*background: linear-gradient(to bottom, #feb47b, #ffffff);*/
    /*background: url('~/images/background.jpg') no-repeat center center fixed;*/
    background-size: cover;
}

/*=================== HOMEPAGE ======================*/

.sunshine-special-link{
    background-color: darkorange;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
}

    .sunshine-special-link:hover {
        background-color: orange;
        color: darkblue;
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        transition: box-shadow .5s ease;
    }


/*=================== SEARCH FORM ===================*/
.searchForm {
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgba(211, 211, 211, 0.75); /* orange with 50% opacity */
}
    .searchForm label {
        font-size: 1em !important;
        color: #000;
        font-weight: bold;
    }
    .searchForm select, input, button {
        font-size: .95em !important;
    }
    .searchForm button {
        font-weight: bold;
        background-color: darkorange;
        color: white;
    }
    .searchFormTitle {
        color: white;
    }

.vertical-container .row {
    flex-direction: column;
}

.vertical-container .col-md-1,
.vertical-container .col-md-2,
.vertical-container .col-md-3,
.vertical-container .col-md-4,
.vertical-container .col-md-5,
.vertical-container .col-md-6,
.vertical-container .col-md-7,
.vertical-container .col-md-8,
.vertical-container .col-md-9,
.vertical-container .col-md-10,
.vertical-container .col-md-11,
.vertical-container .col-md-12 {
    width: 100%;
    max-width: 100%;
    font-size: 0.9em;
    padding: 0.25rem 0.5rem;
    font-size: 0.9em;
    line-height: 1;
    font-size: 0.9em;
}

@media (max-width: 767px) {
    .vertical-container {
        display: none;
    }
}

/*=================== HEADER ===================*/
.nav-link {
    color: white !important;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: rgb(34, 34, 33) !important; 
    text-shadow: 1px 1px 1px rgba(128, 128, 128, 0.7);
    transition: all 0.3s ease; 
}

.navbar-nav .nav-link.active {
    color: orangered !important;
    font-weight: bold;
}

.nav-link {
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
    .navbar-collapse {
        padding: 20px 0; /* Adds padding to the top and bottom */
        max-height: none !important; /* Ensures the collapse doesn't restrict height */
        overflow: visible; /* Prevents overflow cutting off content */
    }
}

.header-container {
    padding: 0px;
}


/*=================== FOOTER ===================*/
.footer-contact {
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    color: #bbbbbb !important;
    padding: 5px 30px;
}

.footer-contact table td {
    padding: 5px 10px;
}

.footer-disclaimer {
    color: gray;
    font-size: .8em;
    padding: 10px 50px;
}

.footer-copyright {
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: #bbbbbb !important;
}

.footer-custom {
    background-color: #000000; /* Fallback */
    /*background-image: url('@($"{Model.ImageBaseUrl}/images/footer_bg.png")');*/
    background-repeat: repeat;
    background-size: auto;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 -1px 3px rgba(0, 0, 0, 0.7);
}

.footer-links a {
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #bbbbbb !important;
}

.footer-links a:hover {
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: orange !important;
}

.socialMedia {
    height: 30px;
}

/*=================== CAROUSEL ==================*/
.carousel-caption {
    bottom: 50%; 
}

.carousel-item {
    position: relative;
    max-height: 500px; 
    overflow: hidden;
}

.carousel-caption {
    position: absolute;
    top: 20%; 
    left: 50%;
    transform: translate(-50%, -50%); 
    text-align: center; 
    width: 100%; 
}

.carousel-caption h2 {
    font-size: 2.5rem; /* Adjust as per your preference */
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.carousel-caption .btn {
    padding: 10px 20px;
    font-size: 1rem;
}

#heroCarousel {
    position: relative;
    z-index: 1;
}

.search-overlay {
    position: absolute;
    top: 60%; /* adjust vertical position */
    left: 50%;
    transform: translateX(-50%);
    width: 100%; /* or whatever width fits your layout */
    border-radius: 10px;
    z-index: 10; /* on top of carousel images */
}

@media (max-width: 768px) {
    .search-overlay {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: 1rem;
    }
}

    /* Optional: style form fields inside _searchForm for white text */
    .search-overlay input,
    .search-overlay select,
    .search-overlay button {
        color: #000; /* inputs usually black text */
    }

    /*=================== NEWS AND OFFER ==================*/
    .newsItem {
        height: 200px;
        border: 1px solid #e6e6e6;
        border-radius: 5px;
    }

    .newsAndOfferSubject {
        color: darkorange;
        font-size: 1.3em;
        font-weight: 700;
    }

    .arrowIcon {
        color: orangered
    }

#newsOffersCarousel .carousel-inner.newsItem {
    background-color: #ffffff;
    border: 1px solid #ffa500;
    border-radius: 8px;
    background-color: rgba(255, 165, 0, 0.3); /* light orange, 80% transparent */
    /*background: linear-gradient(rgba(255,140,0,0.5), rgba(255,140,0,0.5)), url('/images/your-image.jpg') center/cover no-repeat;*/
    background: radial-gradient(circle, #e5e5e5, white);
}

    .newsAndOfferSubject {
        font-size: 1.25rem;
        font-weight: bold;
        color: orangered;
        margin-bottom: 0.5rem;
    }

    .carousel-control-prev-icon.icon-news,
    .carousel-control-next-icon.icon-news {
        background-image: url('data:image/svg+xml,...custom_icon_or_color...');
        filter: invert(49%) sepia(99%) saturate(564%) hue-rotate(5deg) brightness(105%) contrast(100%);
    }

    .prev-news {
        width: 5%;
    }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    /*filter: invert(38%) sepia(85%) saturate(430%) hue-rotate(3deg) brightness(98%) contrast(100%);*/
    background-size: 100% 100%;
    background-color: rgba(89,89,89,0.7);
    width: 1.2rem;
    height: 2.5rem;
    border-radius: 3px;
}

    /*=================== Destination Banner ========*/
    .destination-banner {
        position: relative;
        width: 100%;
        max-height: 400px;
        overflow: hidden;
    }

    .banner-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .destination-name-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.75); /* Semi-transparent black */
        color: white;
        padding: 20px 40px;
        font-size: 2rem;
        font-weight: bold;
        text-align: center;
        border-radius: 5px;
        text-transform: uppercase;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #ff6600;
        border-bottom: 2px solid orange;
        padding-bottom: 0.5rem;
        /*text-transform: uppercase;*/
        font-weight: bold;
        background: linear-gradient(to right, darkorange, white);
        color: aliceblue;
        padding: 5px;
        border-radius: 5px;
    }

    .destination-item-card {
        border: 1px solid #f0ad4e;
        border-radius: 15px;
        overflow: hidden;
        background-color: #fff8f0;
        box-shadow: 0 0 10px rgba(0,0,0,0.05);
        transition: transform 0.2s;
    }

        .destination-item-card:hover {
            transform: scale(1.02);
        }

    .tile-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .tile-info {
        padding: 15px;
    }

        .tile-info h4 {
            color: #d35400;
            font-weight: 600;
        }

    .btn-orange {
        background-color: #ff6600;
        color: white;
        padding: 8px 16px;
        border-radius: 5px;
        text-decoration: none;
        display: inline-block;
        margin-top: 10px;
    }

        .btn-orange:hover {
            background-color: #e65c00;
            color: #fff;
        }

    .img-jss {
        border: 1px solid #e6e6e6;
        border-radius: 5px !important
    }

    /*=================== CONTENT ===================*/

.searchingHolidaysBackground {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    margin-top: -50px;
    
}

.searchingHolidaysAnimation {
    position: fixed;
    z-index: 9999;
    background: rgba(255,135,0,0.9);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.paragraph h2 {
    font-size: 1.2em;
    color: darkorange;
    padding: 3px;
    font-weight: bold;
}

    .flag-icon {
        width: 24px;
        height: 16px;
        vertical-align: middle;
        margin-right: 8px;
    }

    .destination-table-list {
        width: 100%;
        background-color: #fefefe !important;
        border-radius: 5px !important;
        border: 2px solid orange;
        border-collapse: collapse;
    }

        .destination-table-list thead th {
            background-color: darkorange;
            color: snow;
            padding: 5px 10px;
        }

        .destination-table-list tr {
            background-color: white;
        }

            .destination-table-list tr:hover {
                background-color: orange !important;
            }

        .destination-table-list tbody td {
            color: #333;
            padding: 5px 10px;
            border: 1px solid #f3f3f3;
        }

            .destination-table-list tbody td a {
                color: navy;
                text-decoration: none;
            }

                .destination-table-list tbody td a:hover {
                    color: orangered;
                    text-decoration: underline;
                }


    .main-image {
        width: 100%;
        height: 200px;
    }

    .destination-main-image {
        width: 100%;
        max-height: 400px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .box-div {
        width: 110px;
        height: 150px;
        padding: 5px;
        border: 1px solid #E6E6e6;
        align-items: center;
        justify-content: center;
    }

    .gallery-image {
        width: 100px;
        height: 100px;
        border-radius: 5px;
    }

    .destination:hover a {
        text-decoration: underline;
        cursor: pointer;
    }

    .destination-country a {
        text-decoration: none;
        color: orangered;
        font-size: 1.2em;
        font-weight: 700;
        padding: 5px;
        margin: 3px;
    }

    .destination-resort a {
        text-decoration: none;
        color: darkorange;
        font-size: 1em;
        font-weight: 600;
        padding: 5px 10px;
        margin: 3px;
    }

    .destination-hotel a {
        text-decoration: none;
        color: gray;
        font-size: 1em;
        font-weight: 400;
        padding: 5px 20px;
        margin: 3px;
    }

    .page-content-area {
        min-height: 600px;
        padding: 20px 0;
    }

    .image-container {
        padding: 3px;
        border-radius: 5px !important;
        background-color: orange;
    }

    .image-container-size {
        width: 400px;
    }

    .image-container-margin {
        margin: 20px 0;
    }

    .page-title {
        color: darkorange;
        font-weight: 700;
        font-size: 1.7em;
        padding: 20px 0;
    }

    .paragraph-header {
        font-size: 1.2em;
        padding: 3px;
        font-weight: 700;
        color: orange;
    }

    .paragraph {
        font-size: 1.0em;
        color: black;
        padding: 3px;
    }

    .row-gap {
        padding: 20px 3px;
    }

    .bold-text {
        color: orange;
        font-weight: bold;
        text-decoration: none
    }

        .bold-text a:hover {
            font-weight: bold;
            color: blue;
        }

    .white-background {
        background-color: white !important;
    }

    hr {
        color: orange;
        padding: 2px 2px;
        height: 1px;
    }

    /*Start: contact us form*/
    .btn-submit {
        background-color: orange;
        color: white;
        border-radius: 5px;
        padding: 10px 20px;
        width: 100%;
        font-size: 1.1rem;
    }

        .btn-submit:hover {
            background-color: orangered;
            transition: background-color 0.3s;
        }

    .form-text {
        font-size: 0.875rem;
        color: #6c757d;
    }

    .form-check-label {
        font-size: 0.9rem;
    }

    .contact-us-info {
        background-size: auto;
        background-repeat: no-repeat;
        background-position: right;
    }
    /*End: contact us form*/

    /*START: Table*/
    .table-content {
        width: 100%;
        border-collapse: separate;
        background-color: #e6e6e6;
        border-radius: 3px;
        border-spacing: 1px !important;
    }

        .table-content thead {
            background-color: orange;
            color: white;
        }

            .table-content thead td {
                padding: 5px;
            }

        .table-content tbody td {
            padding: 1px;
            background-color: white;
            padding: 5px;
        }

    .topAlign {
        vertical-align: top;
    }

    .general-links {
        color: grey;
        text-decoration: none;
    }

        .general-links a:hover {
            text-decoration: underline;
        }
    /*END: Table*/


.transfer_mode {
    font-size: 0.9em;
    color: darkorange;
    
    background: #e5e5e5;
    padding: 3px;
    border-radius: 3px;
}

/*=================== SEARCH RESULT ===================*/
.flight_icon {
    width: 35px;
    height: 22px;
}

.flight_direction {
    font-size: 0.9em;
    font-weight: 500;
    color: orange;
}

.flight_class {
    font-size: 0.9em;
    font-weight: 500;
    color: green;
}

.flight_from {
    font-size: 0.9em;
}

.flight_airport {
    font-size: 0.9em;
    color: black;
}

.flight_time {
    font-size: 0.85em;
    color: darkorange;
}

.airline_logo {
    height: 33px;
}

.airline_name, .time_title {
    font-size: 0.85em;
    color: darkgrey;
}

.flight_number {
    font-size: 0.85em;
    color: darkorange;
    font-weight: 600;
}

.flight_number_container {
    background: #e9e9e9;
    padding: 3px 5px;
    margin:2px;
    border-radius: 5px;
}

.divider {
    margin: 5px;
}

.btn_flight_selection {
    font-weight: bold;
    background-color: darkorange;
    color: white;
}

.btn_transfer_selection {
    font-size: 1em;
    font-weight: bold;
    background-color: darkorange;
    color: white;
    border: 1px solid darkorange;
}

.btn_transfer_selected {
    font-size: 0.9em;
    font-weight: normal;
    background-color: grey!important;
    color: white;
    border: 1px solid #e5e5e5 !important;
}

.btn_option {
    font-size: 0.9em !important;
    font-weight: normal;
    border: 0px;
    padding: 3px 10px;
    border-radius: 7px;
    min-width: 130px;
}

.btn_option_selection {
    background-color: #e9e9e9;
    color: darkorange;
}

.btn_option_selection:hover {
    background-color: orange;
    color: white;
}

.btn_option_selected {
    background-color: darkorange;
    color: white;
}

.btn_option_selected:hover {
    background-color: darkorange;
    color: white;
}

    .btn_option_selected::before {
        content: "✔";
        color: darkgreen;
        padding: 2px 5px 2px 2px;
    }

.div_options_container {
    display: flex;
    padding: 10px 5px;
}

.inline-box_div_option {
    display: inline-block;
    margin: 5px;
}

.selectedTransfer, .selectedHotel, .selectedFlight, .selectedBooking, .paymentDetails {
    font-size: 1.1em;
    font-weight: bold;
    color: orange;
    margin-top: 10px;
}

.hotel-cell {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; 
}

.hotel-top, .hotel-bottom {
    display: flex;
    flex-direction: column;
}

.hotel_name{
    font-size: 1.1em;
    color: black;
    font-weight: bold;
}

.hotel_star {
    font-size: 1.1em;
    color: darkorange;
    font-weight: bold;
}

.hotel_description {
    font-size: 0.9em;
    color: darkgray;
}

.hotel_room {
    font-size: 0.9em;
    color: black;
}

.hotel_board {
    font-size: 0.8em;
    font-weight: 600;
    color: black;
}

.resort_name {
    font-size: 0.95em;
    color: darkgray;
    font-weight: 500;
}

.discount {
    font-size: 1.1em;
    color: green;
    background-color: yellow;
    padding: 3px;
    border-radius: 5px;
}

.package_price {
    font-size: 2em;
    color: orangered;
    font-weight: bold;
}

.hotel-row-gap {
    min-height: 30px;
}

.hotel_dates{
    padding: 3px 0 1px 0;
    font-size: 0.80em;
    font-weight: 600;
    color: darkgray;
}
.hotel_nights {
    padding: 1px 0 10px 0;
    font-size: 0.75em;
    font-weight: 500;
    color: darkgray;
}

.hotel_room_options {
    font-weight: bold;
    color: darkorange;
}

@media (max-width: 768px) {
    .hotel-row-gap {
        min-height: 10px;
    }
}

.continue_button {
    background-color: darkorange;
    color: white;
    font-weight: bold;
    border: 1px solid #e5e5e5;
}

.attribute_label {
    min-width: 100px;
    font-weight: bold;
    font-size: 0.9em;
    display: inline-block;
}

.hotel_attribute {
    font-size: 0.9em;
    min-height: 25px;
}

.transfer_icon {
    
    height: 22px;
}

.transfer_direction {
    font-size: 0.9em;
    font-weight: 500;
    color: orange;
}

.transfer_details {
    font-size: 0.9em;
    color: black;
}

.btn-navigation {
    padding: 5px 10px;
    font-size: 0.9em;
}
.btn-navigation-back {
    background-color: lightgray;
    color: black;
}
    .btn-navigation-back:hover {
        background-color: grey;
        color: white;
    }
.btn-navigation-next {
    background-color: darkorange;
    color: white;
}
    .btn-navigation-next:hover {
        background-color: orange;
        color: black;
    }

/*=================== Booking Progress ===================*/
.step-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.step {
    padding: 5px 10px;
    border-bottom: 2px solid lightgray;
    color: gray;
    font-size: 0.9em;
    text-align: center;
}

    .step.active {
        border-color: orange;
        background-color: orange;
        color: white;
        font-weight: bold;
        border-radius: 5px 5px 0 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .step.completed {
        border-color: darkorange;
        color: darkorange;
        font-weight: bold;
    }
.step {
    z-index: 1;
    width: 25%;
}

.progress-line {
    z-index: 0;
}

.booking_details {
    font-size: 0.9em;
}

    .booking_details .small-form-control {
        font-size: 0.9em;
        padding: 0.3rem 0.5rem;
    }
.btn_review_selection {
    font-size: 1.2em;
    font-weight: bold;
    background-color: darkorange;
    color: white;
    border: 1px solid darkorange;
}

.PaxDetails {
    width: 100%;
    border: 1px solid #e6e6e6;
}

.PaxDetails thead th {
    min-height: 25px;
    color: darkorange;
    background-color: #E9E9E9;
    font-size: 1em;
    padding: 3px;
}
    .PaxDetails thead th:first-child {
        width: 10%;
    }

    .PaxDetails tbody td {
        min-height: 20px;
        color: black;
        font-size: 0.95em;
        padding: 3px;
        border: 1px solid #e6e6e6;
    }

.chkAgree {
    padding: 3px 30px;
}

.booking_reference{
    font-weight: bold;
    color: darkorange;
    font-size: 1.2em;
}