/*----------------------------------
            COLORS
----------------------------------*/
:root {
    --primary: #AA8B50;
    --secondary: #BB957E;
    --body: #ececec;
    --gray-1: #554F4B;
    --gray-2: #737373;
    --gray-3: #96989A;
    --gray-4: #D2D3D5;
    --gray-5: #E6E7E8;
    --gold: #AA8B50;
    --lightBlue: #3478dd;
    --lightGraySecond: #b1b3b6;
    --lightGrayThird: #eee;
    --borderGray: #e1e1e1;
    --titleColor: #262626;
    --cream: #f8f5f0;
    --remsColor: #d89301;
    --sectionColor: #f6f6f6;
    --lightGreen: #e2f2da;
    --textGreen: #44782a;
    --danger-bg: #f2dede;
    --danger-text: #a94442;
    --danger-border: #ebccd1;
}

/*----------------------------------
            FONTS
----------------------------------*/
h1, h2, h3, .slide-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}
body, p, .btn, .nav-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
}
.carousel-btn .btn {
    font-weight: 400; /* Malo deblje za dugme */
    letter-spacing: 1px;
    text-transform: uppercase;
}

/*----------------------------------
            PRELOADER
----------------------------------*/
body.preloader-show {
    overflow: hidden;
}

.loader-block {
    opacity: 0;
    display: none;
}

.preloader-show .loader-block {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gray-1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: .4s ease-out opacity;
    -o-transition: .4s ease-out opacity;
    transition: .4s ease-out opacity;
    opacity: 1;
}

.loader-block img {
    max-width: 300px;
}

.loader {
    margin-top: 2rem;
    height: 5px;
    width: 300px;
    background-color: #fff;
}

.loading {
    background-color: var(--gray-1);
    width: 5rem;
    height: 5px;
    -webkit-animation: animation 1.8s infinite;
            animation: animation 1.8s infinite;
}

/*----------------------------------
            ANIMATION
----------------------------------*/
@-webkit-keyframes animation {
    0% {
        -webkit-transform: translateX(0rem);
                transform: translateX(0rem);
    }

    50% {
        -webkit-transform: translateX(220px);
                transform: translateX(220px);
    }

    100% {
        -webkit-transform: translateX(0rem);
                transform: translateX(0rem);
    }
}

@keyframes animation {
    0% {
        -webkit-transform: translateX(0rem);
                transform: translateX(0rem);
    }

    50% {
        -webkit-transform: translateX(220px);
                transform: translateX(220px);
    }

    100% {
        -webkit-transform: translateX(0rem);
                transform: translateX(0rem);
    }
}

/*----------------------------------
            GLOABAL
----------------------------------*/
.home .wrapper {
    padding: 0;
}

/*----------------------------------
            NAVIGATION
----------------------------------*/
header.absolute-top {
    position: absolute;
    width: 100%;
    z-index: 9;
}
.top-header {
    background-color: rgb(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}
#main-nav {
    transition: all 0.3s ease-in-out;
    z-index: 1030;
    background-color: transparent;
    backdrop-filter: blur(2px);
}
.sticky-top {
    position: sticky;
    top: 0;
}
.nav-scrolled {
    background-color: #ffffff !important;
}
.nav-scrolled .nav-link {
    color: #000000 !important;
}
.nav-link {
    text-transform: uppercase;
    color: #fff;
    font-size: 19px;
    letter-spacing: 2px;
}
.nav-link {
    padding: 8px 12px !important;
}
.nav-item {
    transition: .3s linear all;
}
.active.nav-item,
.nav-item:hover {
    background-color: var(--gray-1);
    /* border-radius: 50% 17px; */
    transition: .3s linear all;
}
.navbar-nav {
    gap: 8px;
}
/*----------------------------------
            SLIDER
----------------------------------*/
.carousel-item img {
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
    max-height: 960px;
}
.carousel-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #262626;
    opacity: 0.4;
}
.slide-description {
    position: absolute;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    text-align: center;
    z-index: 3;
}
.slide-title {
    font-size: 55px;
    /* text-transform: capitalize; */
    line-height: 1.35em;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    color: #fff;
    letter-spacing: 4px;
}
.star-rating {
    position: relative;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.9em;
    margin-right: 0.9em;
    margin-bottom: 2em;
    border-right: 0.3em solid transparent;
    border-bottom: 0.7em solid var(--stars);
    border-left: 0.3em solid transparent;
    font-size: 8px;
}
.star-rating:before,
.star-rating:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: 0.6em;
    left: -1em;
    border-right: 1em solid transparent;
    border-bottom: 0.7em solid var(--stars);
    border-left: 1em solid transparent;
    -webkit-transform: rotate(-35deg);
        -ms-transform: rotate(-35deg);
            transform: rotate(-35deg);
}
.star-rating:after {
    -webkit-transform: rotate(35deg);
        -ms-transform: rotate(35deg);
            transform: rotate(35deg);
}
.carousel-indicators {
    left: unset;
    right: 40px;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
#slider .reservation {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    text-orientation: sideways;
    text-orientation: sideways;
    margin: 0;
    position: absolute;
    top: 0;
    left: 40px;
    height: 100%;
    z-index: 2;
}
#slider .reservation a {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
#slider .reservation .icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
    border-radius: 100%;
}
#slider .reservation .call {
    color: #fff;
    text-transform: uppercase;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 400;
    letter-spacing: 5px;
    font-size: 13px;
    line-height: 1.75em;
    margin-top: 15px;
}
#slider .reservation .call span {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
}
#slider .reservation a .icon i {
    color: #FFF;
    font-size: 24px;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
}
#slider .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border: 1px solid #fff;
    margin: 0 0 16px;
    background-color: transparent;
}
#slider .carousel-indicators [data-bs-target]:last-child {
    margin-bottom: 0;
}
.carousel-indicators .active {
    background-color: #fff !important;
    border-color: var(--primary) !important;
}
@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.08, 1.08, 1.08);
        transform: scale3d(1.08, 1.08, 1.08);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}
.custom-logo-link img {
    width: 100px;
}
#slider .booking-form {
    position: absolute;
    bottom: 24px;
    z-index: 3;
    width: 100%;
}

.booking-form .form-row {
    border-right: 1px solid #f1eeeb;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.booking-form .form-row:nth-last-child(2) {
    border-right: 0;
    max-width: 210px;
}

.booking-form .form-row label {
    display: none;
}

.booking-form form {
    padding: 16px;
    background-color: rgb(0 0 0 / 10%);
    border-radius: 0px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.booking-form .input-wrapper {
    position: relative;
}

.booking-form input,
#reservation-form input,
.booking-form .select2 {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    color: #222 !important;
}

.booking-form input::-webkit-input-placeholder {
    color: #222;
    opacity: 1;
    /* Firefox */
}

.booking-form input::-moz-placeholder {
    color: #222;
    opacity: 1;
    /* Firefox */
}

.booking-form input:-ms-input-placeholder {
    color: #222;
    opacity: 1;
    /* Firefox */
}

.booking-form input::-ms-input-placeholder {
    color: #222;
    opacity: 1;
    /* Firefox */
}

.booking-form input::placeholder {
    color: #222;
    opacity: 1;
    /* Firefox */
}

.booking-form input::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: #222;
}

.booking-form input,
#reservation-form input {
    display: block;
    width: 100%;
    font-size: 16px;
    color: #222;
    padding: 12px 40px 12px 12px;
    background: #fff;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
    outline: none;
    min-height: 47px;
}

.booking-form .icon,
#reservation-form .icon {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 16px;
    pointer-events: none;
}

.booking-form .icon {
    background-color: transparent !important;
}

.booking-form .icon i {
    color: var(--gold);
}
.select2 {
    width: 100%;
    min-width: 150px;
    background: #fff;
    margin-bottom: 15px;
}

.select2-container .select2-selection--single {
    background: none;
    border-radius: 0;
    border: none;
    height: auto !important;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 16px;
    line-height: 16px;
    padding: 16px 49px 16px 16px !important;
}

.select2-container .select2-results>.select2-results__options {
    max-height: 500px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.select2-container .select2-results>.select2-results__options {
    overflow-y: auto;
}

.select2-container .select2-results__option[aria-selected=true] {
    background: var(--gold);
    color: #fff;
}

.select2-results__option:first-child {
    border-top: none;
}

.select2-results__option {
    padding: 10px 30px !important;
    background: #fff;
    font-size: 15px;
    line-height: 20px;
    color: #222;
    border-top: 1px solid #ececec;
    text-align: center;
}

.select2-container--open .select2-dropdown--below {
    border-top: 1px solid #ececec;
}

.select2-dropdown {
    background: none;
    border-radius: 0 !important;
    z-index: 100;
    min-width: 0px;
    border: 0 !important;
}

.booking-form .input-wrapper.select:after {
    content: "";
    position: absolute;
    color: var(--gold);
    border: solid var(--gold);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    -ms-transform: translateY(-50%) rotate(45deg);
        transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    top: 50%;
    right: 16px;
}

.btn-primary {
    display: block;
    padding: 0;
    border: none;
    margin: 0;
    width: 100%;
    background: var(--gold);
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: "Barlow Condensed", sans-serif;
    border-radius: 0;
}

.booking-form .btn,
#reservation-form .btn {
    padding: 12.75px 30px;
}

.btn-primary:hover,
.btn-primary:active {
    background-color: var(--primary) !important;
    border: none !important;
}

/*----------------------------------
            PAGES
----------------------------------*/

/*----------------------------------
            CONTACT
----------------------------------*/