@import 'fonts.css';

:root {
    --font: 'Regular' , sans-serif;
    --primary-color: #23262f;
    --secondary-color: #777e90;
    --white: #ffffff;
    --light: #4d5053;
    --color-one: #fdfdfd;
    --color-two: #e7e8ec;
    --color-three: #f1f1f1;
    --main-color: #cda274;
    --main-color-two: #F4F0EC;
}

body {
    font-family: var(--font);
    background: url('../img/grid.png'), var(--white);
    background-position: center;
    color: var(--secondary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
}

.fancybox-progress {
    background-color: var(--main-color) !important;
}

.fancybox-thumbs__list a::before {
    border: 6px solid var(--main-color) !important;
}

.py-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.pt-6 {
    padding-top: 5rem !important;
}

.py-10 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
}

.fw-bolded {
    font-family: 'Black';
    font-weight: 900;
}

.rounded-10 {
    border-radius: 3rem !important;
}

.bg-light {
    background-color: var(--color-three);
}

.bg-main {
    background-color: var(--main-color);
}

.bg-dark {
    background-color: var(--primary-color) !important;
}

.bg-main-two {
    background-color: var(--main-color-two);
}

.alert-main {
    background-color: var(--main-color);
}

/* Samo Test */
.bg-main-two-test {
    background: url('../img/test.svg') , var(--main-color-two);
}

.btn-main {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: var(--white);
}

.btn-main:hover,
.btn-main:active,
.btn-main:focus {
    background-color: var(--main-color) !important;
    border: 1px solid var(--main-color) !important;
    color: var(--white) !important;
}

.modal-content {
    background-color: var(--color-one);
    border: 1px solid var(--color-two);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.16);
}

.modal-title {
    font-family: 'Bold';
}

.modal-header .btn-close {
    padding: 0;
    margin-left: auto;
}

.btn-close {
    opacity: 1;
    width: auto;
    height: auto;
    outline: none !important;
    box-shadow: none !important;
}

.modal-body .btn-main {
    font-family: 'Bold';
}

.modal-header {
    border-bottom: 1px solid var(--color-two);
}

.navbar-light {
    background-color: var(--white);
    border-bottom: 1px solid var(--color-two);
    padding: 10px 0; /* Promeni u zavisnosti od Logo tipa */
}

.fixed-top {
    top: -40px;
    transform: translateY(40px);
    transition: transform .3s;
    background-color: rgba(255, 255, 255, .8);
    backdrop-filter: blur(20px);
}

.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.navbar-light .navbar-brand {
    color: var(--primary-color);
    font-weight: 800;
}

.navbar-light .navbar-brand img {
    width: auto;
    height: 60px;
}

.offcanvas.hiding, .offcanvas.show, .offcanvas.showing {
    z-index: 1080;
    height: 100vh;
}

.offcanvas-title {
    font-family: 'Bold' , sans-serif;
    color: var(--primary-color);
    font-weight: 700;
}

.navbar-light .nav-link {
    color: var(--secondary-color);
    font-size: 14px;
    border: 1px solid transparent;
}

.navbar-light .nav-link:hover,
.navbar-light .nav-link:active,
.navbar-light .nav-link:focus {
    color: var(--primary-color);
}

.navbar-light .nav-link.active {
    color: var(--secondary-color);
}

.navbar-light .nav-language {
    background-color: transparent;
    border: 1px solid var(--color-two);
    border-radius: 12px;
}

.navbar-light .nav-language:hover,
.navbar-light .nav-language:active,
.navbar-light .nav-language:focus {
    color: var(--secondary-color);
}


.navbar-light .nav-language img {
    width: 20px;
    height: 20px;
    vertical-align: top;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}

@-webkit-keyframes growIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
  }
  
@keyframes growIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
  
.grow-in {
    -webkit-animation-name: growIn;
    animation-name: growIn;
    -webkit-animation-duration: 200ms;
    animation-duration: 200ms;
    -webkit-animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
    animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
}
  
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
  
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
  
.fade-in {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 200ms;
    animation-duration: 200ms;
    -webkit-animation-timing-function: opacity cubic-bezier(0, 1, 0.4, 1);
    animation-timing-function: opacity cubic-bezier(0, 1, 0.4, 1);
}

.dropdown-menu-language {
    min-width: 10.2rem;
}

.dropdown-menu-language .dropdown-item img {
    width: 20px;
    height: 20px;
}

.dropdown-menu {
    border: 1px solid var(--color-two);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.16);
}

.dropdown-menu .dropdown-sub-title {
    font-size: .5875rem;
    padding: .5rem 1rem .3125rem;
    font-weight: 400;
    color: var(--secondary-color);
}

.dropdown-menu .dropdown-item {
    color: var(--secondary-color);
    font-size: 14px;
    padding: .8rem 1.2rem;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:active,
.dropdown-menu .dropdown-item:focus {
    background-color: var(--color-three);
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .navbar-light .nav-item {
        width: 100%;
    }
    .navbar-light .nav-link {
        padding: 20px 0;
        text-align: center;
    }

    .navbar-light li.dropdown {
        width: 100%;
    }
}

header {
    background: url('../img/header.png') no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 800px;
    position: relative;
    z-index: 1;
}

header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: inset 0px -100px 60px 0px var(--white),
    inset 0px 0px 10px 0px var(--white);
    background-size: cover !important;
    z-index: -1;
    width: 100%;
    height: 100%;

}

header:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(205, 162, 116, .5);
    z-index: -2;
}

header .header-content h1,
.header h1 {
    font-family: 'Black' , sans-serif;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 74px;
}

.animated-text {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInMoveDown 1s ease forwards;
}

@keyframes fadeInMoveDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header h1 {
    font-size: 54px;
}

header .header-content p {
    color: #515665;
}

header .header-content .btn {
    font-family: 'Bold';
    background-color: var(--white);
    border: 1px solid var(--color-two);
    padding: 10px 42px;
    color: var(--primary-color);
    border-radius: 10px;
}

header .header-content .btn:hover,
header .header-content .btn:active,
header .header-content .btn:focus {
    background-color: var(--white);
    border: 1px solid var(--color-two);
    color: var(--primary-color);
}

.about .carousel-indicators {
    position: relative;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    opacity: 1 !important;
    height: 100%;
}

.about .carousel-indicators [data-bs-target] {
    width: 100%;
    height: auto;
    margin-right: 10px;
    margin-left: 0px;
    opacity: 1 !important;
}

.about .carousel-indicators [data-bs-target]:last-child {
    margin-right: 0px;
}

.about .carousel-indicators button {
    background: none;
    border: none;
    box-shadow: none;
    width: 100%;
    height: 100%;
    padding: 0;
  }

.about .carousel-indicators button::before {
    content: none;
}

.about  .carousel-indicators img {
    display: block;
    width: 100%;
    height: 70px;
    cursor: pointer;
    border-radius: 14px;
    opacity: 1 !important;
    object-fit: cover;
}

.about .carousel-indicators .active img {
    opacity: 1;
}

.about .carousel-inner .carousel-item img {
    border-radius: 25px;
    height: 360px;
    object-fit: cover;
}

.about .about-content h2,
.about-us .about-frame h2,
.location .about-frame h2 {
    font-family: 'Black' , sans-serif;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 40px;
}

.about .about-content span.sub-title {
    font-size: .8rem;
    font-weight: 400;
    color: var(--secondary-color);
}

.about .about-content i.family {
    font-size: .8rem;
    font-weight: 400;
    color: var(--main-color);
}

.title h2 {
    font-family: 'Bold';
    font-weight: 700;
}
.title p {
    font-family: 'Light';
    font-weight: 300;
}

.rooms {
    z-index: 1;
}
/*
.rooms:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/pattern.svg');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: .2;
}
*/
.rooms .navigations {
    float: right !important;
}

.rooms .navigations .btn-outline-main {
    border: 1px solid var(--main-color);
    border-radius: 50px;
    width: 50px;
    height: 50px;
    padding: 0;
}

.rooms .navigations .btn-outline-main svg {
    fill: var(--main-color);
}

.swiper-button-disabled {
    border: 1px solid var(--secondary-color) !important;
    opacity: 1 !important;
    /*
    cursor: not-allowed !important;
    pointer-events: all !important;
    */
    
}

.swiper-button-disabled svg {
    fill: var(--secondary-color) !important;
}

.rooms .room-card {
    background-color: var(--color-one);
    padding: 20px;
    border-radius: var(--bs-border-radius) !important;
    border: 1px solid var(--color-two);
    /*box-shadow: 0 1rem 3rem rgba(0,0,0,.16);*/
}

.rooms .room-card img {
    border-top-right-radius: 50px !important;
}

.rooms .room-card-body h4 {
    font-family: 'Bold';
    font-size: 22px;
}

.rooms .room-card-body ul li {
    font-family: 'Light';
    font-weight: 300;
    font-size: 15px;
    line-height: 32px;
}

.rooms .room-card-body ul li b {
    font-family: 'Bold';
    color: var(--primary-color);
}

.rooms .room-card-body .room-btn {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 50px;
    padding: 10px;
    transition: .3s ease-out;
}

.rooms .room-card-body .room-btn svg {
    transition: .3s ease-out;
}

.rooms .room-card-body .room-btn:hover,
.rooms .room-card-body .room-btn:active,
.rooms .room-card-body .room-btn:focus {
    background-color: transparent;
    border: 1px solid var(--main-color);
}

.rooms .room-card-body .room-btn:hover svg {
    fill: var(--main-color);
}

.features .features-card {
    border-right: 1px solid var(--main-color);
}

.features .row > .col-lg-3:nth-last-child(1) .features-card {
    border-right: none;
}

.features .features-card h2 {
    color: var(--main-color);
    font-family: 'Black';
    font-weight: 900;
    font-size: 50px;
}

.features .features-card p {
    font-family: 'Light';
    font-weight: 300;
    color: var(--light);
    font-size: 20px;
}

.modal-bottom {
    position: fixed;
    bottom: 0px; /* Distance from the bottom */
    right: 30px; /* Align to the right */
    left: 0; /* Stretch across the left */
    width: 100%; /* Full width */
    max-width: none; /* Overrides Bootstrap's default max-width on modals */
    margin-right: 0;
    margin-left: auto;
    transform: none;
    max-width: 400px !important;
}

.prefooter {
    z-index: 1;
}

.prefooter:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/pattern.svg');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: .4;
}

.prefooter .btn-main {
    font-family: 'Bold';
    padding: 10px 36px;
    border-radius: 10px;
}

footer {
    z-index: 1;
    overflow: hidden;
}

.footer:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    background-image: url('../img/clean-safe.png');
    transform: rotate(0deg);
    width: 160px;
    height: 160px;
    z-index: -1;
}

footer .logo {
    width: auto;
    height: 50px;
}

footer .slogan {
    font-family: 'Light';
    font-size: 14px;
}

footer .social {
    gap: 30px;
}

footer .social li a svg {
    transition: fill 0.3s ease;
}

footer .social li a svg:hover {
    fill: var(--main-color);
}

footer h4 {
    font-family: 'Bold';
    font-weight: 600;
}

footer ul li {
    line-height: 38px;
}

footer ul li a {
    color: var(--light);
    text-decoration: none;
    display: inline-block;
}

footer ul li a::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: var(--main-color);
    transition: width .4s;
}

footer ul li a:hover {
    color: var(--main-color);
}
  
footer ul li a:hover::after {
    width: 100%;
    transition: width .4s;
}

footer ul li a:hover .squircle {
    fill:var(--main-color);
}

footer ul li a.co-link:hover {
    color: var(--primary-color);
}

footer ul li a.co-link:after {
    display: none;
}

.partners img {
    height: 40px;
}

.about-us,
.location {
    z-index: 1;
}

.about-us:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    background: url('../img/banja-silueta.png');
    background-position: bottom right;
    background-repeat: no-repeat;
    opacity: 0.06;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.location:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    background: url('../img/banja-silueta-2.png');
    background-position: bottom right;
    background-repeat: no-repeat;
    opacity: 0.06;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.about-us img,
.location iframe {
    border-style: solid !important;
    border-width: 5px 5px 5px 5px !important;
    border-color: var(--color-two) !important;
    border-radius: 10px 100px 10px 10px;
}




.about-us .about-frame p,
.location .about-frame p {
    line-height: 26px;
}

.about-us .about-frame .btn,
.location .about-frame .btn {
    padding: 10px 40px;
    font-size: 14px;

}

.about-frame .btn:hover,
.about-frame .btn:active,
.about-frame .btn:focus {
    background-color: transparent;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}

.get-in-touch .card {
    background-color: var(--color-one);
    border-radius: var(--bs-border-radius) !important;
    border: 1px solid var(--color-two);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.16);
}

.get-in-touch .card-img {
    position: relative;
    z-index: 1;
}
/*
.get-in-touch .card-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/lalasosa.png') no-repeat;
    background-size: cover;
    opacity: .1;
    z-index: -1;
}*/

.get-in-touch .card .card-header {
    background-color: transparent;
    border: none;
    position: relative;
}

.get-in-touch .card .card-header img {
    width: 42px;
    height: 42px;
}

.get-in-touch .card .card-header h2 {
    font-family: 'Black' , sans-serif;
    font-size: 60px;
    color: var(--color-two);
    text-shadow: -1px 0 var(--color-three), 0 1px var(--color-three), 1px 0 var(--color-three), 0 -1px var(--color-three);
}

.get-in-touch .card .card-body h2 {
    font-family: 'Bold' , sans-serif;
    color: var(--secondary-color);
    font-size: 26px;
}

.get-in-touch .card-img .card-body h2 {
    font-size: 21px;
}

.testimonial .testimonial-card {
    background-color: var(--white) !important;
    border: 1px solid var(--white) !important;
    position: relative;
    overflow: hidden;
    transition: .4s
}

.testimonial .avatar {
    background-color: var(--main-color)
}

.testimonial .testimonial-card:hover {
    z-index: 2
}

.testimonial .testimonial-card .card-body {
    position: relative;
    padding: 1.5rem
}

.testimonial .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    position: relative;
    content: attr(data-initials);
    display: flex;
    justify-content: center;
    align-items: center
}

.testimonial .avatar::before {
    content: attr(data-initials);
    position: absolute;
    font-weight: 700;
    color: var(--white)
}

.testimonial .testimonial-text {
    font-size: .9rem
}

.testimonial .swiper-slide {
    transition: .3s
}

.testimonial .testimonial-rating svg {
    fill: var(--main-color)
}

.image-container {
    position: relative;
    width: 100%; /* Adjust as needed */
    height: 500px; /* Adjust as needed */
    background-size: cover;
    overflow: hidden;
    border-radius: 20px;
    border: 4px solid var(--color-two)
}

.harmony {
    background: url('../img/harmony.png') no-repeat center center fixed;
}

.relax {
    background: url('../img/relax.png') no-repeat center center fixed;
}

.fantazy {
    background: url('../img/fantazy.png') no-repeat center center fixed;
}

.danestra {
    background: url('../img/danestra.png') no-repeat center center fixed;
}

.image-container img {
    display: none; /* Hide the img element */
}

.room-n {
    padding: 10px 20px;
    border: 1px solid var(--color-two);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    margin: 4px;
    white-space: nowrap;
}
  
.room-n svg {
    margin-right: 4px;
    transition: .3 ease-out;
}

.room-n:hover svg {
    fill: var(--main-color)
}

.gallery .img-wrapper {
    width: auto;
    height: 360px !important;
    overflow: hidden;
}

.gallery .img-wrapper img {
    transition: 0.3s;
    height: 360px;
    width: 100%;
    object-fit: cover;
}

.gallery .img-wrapper img:hover {
    transform: scale(1.1);
}

.swiper-room .swiper-slide-active {
    transform: scale(1.1);
    z-index: 2;
  }
  .swiper-room .swiper-slide {
    transition: .3s;
}

.swiper-room img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

#weather-forecast h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

#weather-forecast .card {
    background-color: var(--white) !important;
    border: 1px solid var(--white) !important;
}

#weather-forecast img {
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

#weather-forecast p {
    color: var(--secondary-color);
    font-size: 15px;
}

.spa-one img,
.spa-three img {
    border-style: solid !important;
    border-width: 5px 5px 5px 5px !important;
    border-color: var(--color-two) !important;
    border-radius: 10px 100px 10px 10px;
}
.spa-two img {
    border-style: solid !important;
    border-width: 5px 5px 5px 5px !important;
    border-color: var(--color-two) !important;
    border-radius: 100px 10px 10px 10px;
}

.spa-one p,
.spa-two p,
.spa-three p {
    font-size: 18px;
}

.equipment img {
    width: 80px;
    height: 80px;
}

.equipment h3 {
    font-size: 17px;
}

/* SPA SVG */
.center{animation:1s ease-in-out forwards fadeIn}.left-down,.left-top,.right-down,.right-top{opacity:0;transform-origin:center}.left-top{animation:2s ease-in-out forwards leftTopAnim}.left-down{animation:2s ease-in-out forwards leftDownAnim}.right-top{animation:2s ease-in-out forwards rightTopAnim}.right-down{animation:2s ease-in-out forwards rightDownAnim}@keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes leftTopAnim{0%{opacity:0;transform:rotate(-90deg) translate(-100px,100px)}100%{opacity:1;transform:rotate(0) translate(0,0)}}@keyframes leftDownAnim{0%{opacity:0;transform:rotate(90deg) translate(-100px,-100px)}100%{opacity:1;transform:rotate(0) translate(0,0)}}@keyframes rightTopAnim{0%{opacity:0;transform:rotate(90deg) translate(100px,100px)}100%{opacity:1;transform:rotate(0) translate(0,0)}}@keyframes rightDownAnim{0%{opacity:0;transform:rotate(-90deg) translate(100px,-100px)}100%{opacity:1;transform:rotate(0) translate(0,0)}}

.btn-custom {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.btn-custom .btn-text,
.btn-custom .btn-icon {
transition: opacity 0.3s ease-in-out;
}

.btn-custom .btn-icon {
position: absolute;
opacity: 0;
}

.btn-custom:hover .btn-text {
opacity: 0;
}

.btn-custom:hover .btn-icon {
opacity: 1;
}

.get-in-touch .form-control,
.get-in-touch .form-select {
    line-height: 1.9;
    border-radius: 10px;
    border: 1px solid var(--color-two);
}

.get-in-touch .form-control:focus,
.get-in-touch .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(205, 162, 116, 0.25);
}

@media (max-width: 991.98px) {
    #mainCarousel {
        margin-bottom: 40px;
    }
    .about .offset-1,
    .rooms .offset-3 {
        margin-left: 0 !important;
    }
    .rooms .title {
        text-align: center;
    }
    .rooms .navigations {
        margin-top: 40px;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    .features .features-card {
        border: none;
    }
    .features .row > .col-lg-3:nth-last-child(4) .features-card {
        border-right: 1px solid var(--main-color);
    }
    .features .row > .col-lg-3:nth-last-child(2) .features-card {
        border-right: 1px solid var(--main-color);
    }
    .rooms .offset-1 {
        margin-left: 0 !important;
    }
    .about-us img,
    .location .about-frame {
        margin-bottom: 40px;
    }
    
}

@media (max-width: 767.98px) {
    header {
        height: 700px;
    }
    header .header-content h1 {
        font-size: 56px;
    }
    .about .carousel-inner .carousel-item img {
        height: 300px;
        border-radius: 14px;
    }
    .about .carousel-indicators img {
        height: 54px;
        border-radius: 10px;
    }
    .image-container {
        height: 440px;
    }
}

@media (max-width: 575.98px) {
    header .header-content h1 {
        font-size: 50px;
    }
    .features .features-card {
        border: none !important;
    }
    #weather-forecast h3 {
        margin-bottom: 10px;
    }
    #weather-forecast img {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    #weather-forecast {}
}

@media (max-width: 478px) {
    .about .carousel-inner .carousel-item img {
        height: 260px;
        border-radius: 14px;
    }
    .about .carousel-indicators img {
        height: 36px;
        border-radius: 6px;
    }
    
}

@media (max-width: 375.98px) {
    header .header-content h1 {
        font-size: 38px;
    }
    .about .about-content h2 {
        font-size: 30px;
    }
}