@font-face {
    font-family: Frunchy;
    src: url("../fonts/FontsFree-Net-Frunchy.ttf") format("opentype");
}
@font-face {
  font-family: 'Outfit';
  src: url("../fonts/Outfit-Regular.ttf") format('opentype');
}
.font-Frunchy {
    font-family: "Frunchy", sans-serif;
    line-height: 0.8;
}

:root {
    --lighter: #F1EAE2;
    --light: #CABCB2;
    --peach: #B77C69;
    --brown: #8F7664;
    --brown-light:rgba(196, 171, 154,0.37);
    --blue: #06333F;
}
.bg-page-light{
    background: var(--light)!important;
}
.bg-page-lighter{
    background: var(--lighter)!important;
}
.bg-page-brown{
    background: var(--brown)!important;
}
.bg-page-blue{
    background: var(--blue)!important;
}
.bg-page-brown-light{
    background: var(--brown-light);
}
.text-brown{
    color: var(--brown)!important;
}
.text-light{
    color: var(--light)!important;
}
html {
    overflow-x: hidden;
}
.pb-200{
    padding-bottom: 200px;
}
.pb-100{
    padding-bottom: 100px;
}
.pb-50{
    padding-bottom: 50px;
}

#trikotnik {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 50px solid var(--brown);
    position: fixed;
    bottom: 0px;
    left: 70px;
    transform: rotate(-135deg);
    transform-origin: 0 100%;
    z-index: 9;
}
.loading {
    position: fixed;
    top: 0; right: 0;
    bottom: 0; left: 0;
    background: #68686896;
    z-index: 9999;
}
.loader {
    left: 50%;
    margin-left: -4em;
    font-size: 10px;
    border: .8em solid #dadbdf;
    border-left: .8em solid var(--brown);
    animation: spin 1.1s infinite linear;
}
.loader, .loader:after {
    border-radius: 50%;
    width: 8em;
    height: 8em;
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -4.05em;
}

@keyframes spin {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
body {
    font-family: "Outfit", sans-serif;
    background: var(--light);
    overflow-x: hidden;
}

.text-page {
    color: var(--brown);
}

.bg-page {
    background: #D1AB9A4F;
}

h1,
h5 {
    font-weight: 200;
}

a {
    color: #fff;
}

.dark .language .lang {
    color: #000 !important;
}
.border-bottom{
    border-bottom-color:var(--peach)!important;
}
.effect {
    text-align: center;
    display: inline-block;
    position: relative;
    text-decoration: none;
    padding: 20px 0px;
    overflow: hidden;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 0.5rem;
  color: #fff; /* prilagodi barvo po potrebi */
}
/* effect-1 styles */

.effect.effect-1 {
    transition: all 0.2s linear 0s;

    &:before {
        content: "\f178";
        font-family: FontAwesome;
        font-size: 15px;
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        right: 0;
        top: 2px;
        opacity: 0;
        height: 100%;
        width: 40px;
        transition: all 0.2s linear 0s;
    }

    &:hover {
        text-indent: -20px;
        padding-right: 40px !important;

        &:before {
            opacity: 1;
            text-indent: 0px;
        }
    }
}
.btn {
    padding: 15px 30px;
    border:none;
}
.btn:hover {
    background-color: #424649!important;
    border-color: #424649!important;
    color:#fff!important;
    
}
.btn:focus{
    box-shadow:none!important;
}
.btn-primary {
    background: #fff;
    color: #000;
    border: none;
}

.btn-dark {
    background: var(--brown);
    color: #ffffff;
    border: none;
}

.btn-light {
    background-color: var(--light);
}
.btn-lighter {
    background-color: var(--lighter);
    color: #000;
    border: none;
}
.btn-blue {
    background: var(--blue);
    color: #ffffff;
    border: none;
}
.btn-blue:hover {
    color: #fff!important;
    background-color: #424649!important;
    border-color: var(--bs-btn-hover-border-color)!important;
}   

.banner {
    background: url("../images/banner-saune.webp");
    min-height: 650px;
    background-size: cover;
    -o-background-size: cover;
        -moz-background-size: cover;
        -webkit-background-size: cover;
    background-position-y: bottom;
    background-position-x: center;
    background-attachment: fixed;
    position: relative;
    @supports (-webkit-touch-callout: none) {
        background-attachment: initial !important;
    }
}
.mobile-banner {
    
    min-height: 900px;
   
    
    
}
.mobile-banner .hotel{
    background: url("../images/background.webp");
    background-size: cover;
    -o-background-size: cover;
        -moz-background-size: cover;
        -webkit-background-size: cover;
    background-position-y: bottom;
    background-position-x: center;
    padding: 80px 0;
}
.mobile-banner .wellness{
    background: url("../images/wellness-banner.webp");
    background-size: cover;
    -o-background-size: cover;
        -moz-background-size: cover;
        -webkit-background-size: cover;
    background-position-y: bottom;
    background-position-x: center;
    padding: 80px 0;
}

.overlay {
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7643790792684262) 0%, rgba(0, 0, 0, 0.2657796394925157) 100%);
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

#navbar-logo,
#navbar-logo2,
nav.navbar .nav-link,
.navbar,
.language,
.nav-item {
    transition: all 1s;
}
.navbar-brand{
    width: 230px;
    text-align: center;
}
nav.navbar .nav-item {
    color: #fff;
    text-transform: uppercase;
    padding: 40px 35px;
    width:200px;
    text-align: center;
}

nav.navbar .nav-link {
    position: relative;

    &:after {
        content: '';
        position: absolute;
        bottom: -.4em;
        left: 50%;
        right: 50%;
        height: 1px;
        background: currentColor;
        transition: all ease .2s;
    }

    &:hover:after {
        left: 0;
        right: 0;
        height: 2px;
    }

    &:before {
        position: absolute;
        transform: translateX(-100%);
        left: -10px;
        color: #eee;
        opacity: .3;
        font-weight: 100;
        font-size: .8em;
    }
}

.navbar-m.dark {
    background: #ffffff8c;
    backdrop-filter: blur(5px);
}

.navbar.dark .nav-item {
    color: #000;
    padding: 30px 35px !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.offcanvas .menu .nav-item {
    border-radius: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    padding: 10px 0;
}
.offcanvas .menu .nav-item:hover {
    background-image: linear-gradient(rgb(0 0 0/40%) 0 0)!important;
  }
.language {
    position: absolute;
    right: 0;
    top:55%;
}

.navbar.dark .language {
    top: 28px;
}
.seperator {
    border-color: var(--brown);
    border-width: 5px;
    width: 100px;
    margin: 10px auto;
    opacity: 1;
}
.seperator2 {
    border-color: #fff;
    border-width: 5px;
    width: 100px;
    margin: 10px auto;
    opacity: 1;
}
.curved-top {
    position: absolute;
    bottom: 0;
    width: 100%;
    clip-path: ellipse(60% 100% at 50% 100%);
    background: var(--lighter);
    height: 140px;
    margin-bottom: -70px;
}

.curved {
    filter: drop-shadow(-1px 6px 3px rgba(56, 56, 56, 0.5));
    position: absolute;
    width: 100%;
    z-index: 2;
}

.curved-bottom {
    width: 100%;
    clip-path: ellipse(60% 100% at 50% 0.00%);
    background: var(--lighter);
    height: 140px;
    margin-bottom: -70px;
    z-index: 2;
    position: relative;
}

.storitve {
    background: url('../images/background.webp');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-y: center;
    background-attachment: fixed;
    padding-bottom: 100px;
    position: relative;
    cursor: pointer;
    margin-top:-50px;
    @supports (-webkit-touch-callout: none) {
        background-attachment: initial !important;
    }
    
}

.storitev {
    transition: all 1s;
    margin-top: 100px;
}

.storitev .link {
    transition: all 1s;
}

.storitev:hover .link {
    padding-bottom: 80px !important;
}

.storitev:hover .storitev-overlay {
    position: absolute;
    background: #ffffff71;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 1s;
}

.harmonija {
    padding-bottom: 100px;
    background: var(--lighter);
}

.ponudba {
    background: url('../images/background-ponudba.webp');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-y: center;
    background-attachment: fixed;
    @supports (-webkit-touch-callout: none) {
        background-attachment: initial !important;
    }
}

.ponudba .container {
    padding-top: 300px;
    padding-bottom: 200px;
    ;
}

.pin {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
    margin-top: -31px;
    margin-left: 50%;
    padding: 10px;
    transform: translateX(-50%);
}

/* DEMO GENERAL ============================== */
.hover {
    overflow: hidden;
    position: relative;
    padding-bottom: 60%;
    cursor: pointer;
}

.hover-overlay {
    width: 100%;
    position: absolute;
    top: 5px;
    left: 0;
    z-index: 90;
    transition: all 0.4s;
    bottom: 5px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.hover img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
}

.hover-content {
    position: relative;
    z-index: 99;
}

.hover-3::after {
    content: '';
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 90;
    transition: all 0.3s;
    transform: scale(1.1);
    opacity: 0;
    display: block;
    opacity: 0;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
}

.hover-3-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 99;
}

.hover-3-description {
    opacity: 0;
    transform: scale(1.3);
    transition: all 0.3s;
}

.hover-3 img {
    width: 110%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hover-3 .hover-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.hover-3:hover img {
    width: 100%;
}

.hover-3:hover::after {
    opacity: 1;
    transform: none;
}

.hover-3:hover .hover-3-description {
    opacity: 1;
    transform: none;
}

.hover-3:hover .hover-overlay {
    background: rgba(0, 0, 0, 0.8);
}

.gallery {
    padding-top: 25px !important;
    background: var(--lighter);
}

.owl-prev {
    position: absolute;
    top: 25%;
    left: -20px;
}

.owl-next {
    position: absolute;
    top: 25%;
    right: -20px;
}

.owl-prev span,
.owl-next span {
    font-size: 40px;
}

.card {
    border-radius: 0;
}

.lang {
    color: #000;
}

.lang.active {
    font-weight: bold;
}

.footer {
    color:#fff;
    background: var(--light);
    padding: 50px;
    padding-top: 0px;
    z-index: 1;
    position: relative;
    padding-left:150px;
    padding-right:150px;
}
.footer li a{
    text-decoration: none;
    color:#fff;
}
.social{
    margin-left: -50px;
    z-index: 9;
}
.social2{
    background: #E5D2C7;
    margin-left: -50px;
    z-index: 9;
}
.footer .nav-item {
    border-right: 1px solid;
}

/*cookie*/

.cookiesBtn__link {
    background: var(--brown) !important;
    border: var(--brown) !important;
} 

#cookies-policy .cookies__category input:checked + .cookies__box::after {
    background: var(--brown)!important;
    opacity: 1;
}
#cookies-policy .cookies__details {
    color: var(--brown)!important;
}


@media screen and (max-width: 500px) {
    
    .navbar-nav .nav-item{
        padding: 0!important;
    }
    .banner {
        background: url("../images/banner-mobile.png");
        background-size: cover;
        -o-background-size: cover;
        -moz-background-size: cover;
        -webkit-background-size: cover;
        background-position-y: bottom;
        position: relative;
    }

    .curved-top {
        position: absolute;
        bottom: -1px;
        width: 100%;
        clip-path: ellipse(80% 100% at 50% 100%);
        height: 90px;
    }

    .curved-bottom {
        width: 100%;
        clip-path: ellipse(80% 100% at 50% 0.00%);
        background: var(--lighter);
        height: 90px;
        margin-bottom: -30px;
    }

    .storitve {
        background: url('../images/background.webp');
        background-size: cover;
        background-repeat: no-repeat;
        background-position-y: center;
        background-attachment: fixed;
        padding-bottom: 60px;
        position: relative;
        cursor: pointer;
    }

    .storitev {
        margin-top: 70px;
        margin-bottom: -60px;
    }

    .storitev p {
        font-size: 13px;
    }

    .storitev .link {
        display: none;
    }
    .harmonija {
        padding-bottom: 20px;
      }
    .ponudba {
        background: url('../images/background-ponudba.webp');
        background-size: cover;
        background-repeat: no-repeat;
        background-position-y: center;
        background-attachment: fixed;
    }

    .ponudba .container {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .footer {
        
        padding: 40px 0;
    }
    .footer .border-end{
        border:none!important;
    }
    .social{
        margin-left: 0;
        z-index: 9;
    }
    .social2{
        margin-left: 0;
    }
    .footer .nav-link{
        font-size:13px;
    }

}

/* Rooms */

.room .card{
    border-radius: 20px;
    margin-top: -35px;
    border: none;
}


#cookies-policy .cookies__intro a {
    color: var(--brown)!important;
    
  }
.image-stack2 {
    position: relative;
    width: 100%;
    max-width: 1000px;
    min-height: 650px;
    margin: 0 auto;
}

/* Osnovna nastavitev vseh slik */
.image-stack2 .image-stack__item {
    position: absolute;
    border: 10px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-stack2 .image-stack__item img {
    display: block;
    width: 100%;
    height: auto;
}



/* Odzivnost */
@media (max-width: 768px) {

    .image-stack__item--top {
        grid-row: 1;
        grid-column: 1 / span 9;
        z-index: 3;
        transform: translateY(10%) translateX(1%);
    }
    
    /* Druga slika (sredina) */
    .image-stack__item--middle {
        grid-row: 1;
        grid-column: 4 / span 8;
        z-index: 5;
        transform: translateY(75%) translateX(-32%);
    }
    .image-stack__item img {
        border: 5px solid #fff;
    }
    .image-stack__item--bottom {
       
        transform: translateY(0%) translateX(-8%);
        grid-column: 5 / -1;
    }
    .image-stack__item--bottom2 {
        
        transform: translateY(32%) translateX(20%);
        grid-column: 11 / 1;
    }
}

