
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,700');
@import url('https://fonts.googleapis.com/css?family=Julius+Sans+One');

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
} 

body{
    font-family: 'Montserrat', sans-serif;
}
/*-----------------------------new--*/

.backdrop {
    position: fixed;
    height:100vh;
    width:100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 105;
    display: none;
}

.modal-feedback p{
    color:rgba(22, 31, 41, 1);
}

.modal-feedback button{
    padding: 8px 1rem;
    border-radius: 50px;
    border:none;
    background: #b6b6b6;
    color: white; 
    cursor: pointer;
    font-family: inherit;
}

.modal-feedback button:hover{
    background: #8f8f8f;
}

.modal-content {
  font-size: 0.95rem;
}

.success{
    border-top: 5rem rgb(136, 199, 136) solid;
}

.modal-feedback.success{
    display: none;
}
.error{
    border-top: 5rem rgb(218, 123, 123) solid;
}

.modal-feedback.error{
    display: none;
}

.modal-feedback{
    position:fixed;
    height: 200px;
    width: 50%;
    max-width: 500px;
    background: white;
    flex-flow: column;
    z-index: 106;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 2rem;
}

.modal-title{
    font-weight: 500;
    color:  white!important;
    font-size: 1.6rem;
    position: absolute;
    top: -55px;
    height: 3.5rem;
}

.highlighted {
     font-weight: 500;
}

.svg-container {
    position: absolute;
    top:0;
    left:0;
    height:100vh;
    width:100%;
}

#svg-obj {
    width:100%;
    min-height: 100vh;
    object-fit: cover;
    object-position: 100% 0%;
}

.map{
    height: 80%;
    width: 80%;
    margin-top: 2rem;
}

#up-icon-img{
    opacity: 0.8;
    display: none;
    height: 2.5rem;
    position:fixed;
    bottom: 30px;
    right: 25px;
    z-index: 59;
    border: 1px solid rgb(211, 144, 57); 
    cursor: pointer;
}

.svg-overlay{
    position: absolute;
    z-index: 2;
    top:0;
    right:0;
    height:100vh;
    width:100%;
    display: flex; 
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(rgba(250, 173, 72, 0.548), transparent, transparent);
}

.main-title{
    color: white;
    font-size: 5.5rem;
    text-align: center;
    font-weight: 700;
    margin-bottom:5px;
    animation: showing 5s forwards;
    margin-top: 10rem;
    font-family: 'Julius Sans One', sans-serif;
}

.main-title span {
    font-weight: 400;
}

.main-button{
    width:190px;
    height: 45px;
    font-family: 'Julius Sans One', sans-serif;
    font-size: 0.8rem;
    border:none;
    font-weight: 700;
    border: 2px solid #ffffff;
    background: rgba(0, 0, 0, 0.2);
    color: #ffffff;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s;
    z-index:1;
    animation: showing 4s forwards;
    border-radius: 50px;
    margin-top: 1rem;
}

@keyframes showing{
    from {
    opacity:0;}
    to {
    opacity:1;}
  }

/*-----------------------------new--*/
#landing {
    min-width: 100%;
    min-height:100vh;
    background: url("../images/34.jpg");
    background-position: 50% 0%;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#reviews {
    min-height: 70vh;
    width:100%;
    position: relative;
}

.back-arrow{
    position: absolute;
    left:15px;
    bottom: 50%;
    cursor: pointer;
    width: 3vw;
    transition: transform 0.5s;
}

.back-arrow:hover {
    transform:translate(-5px, 0px);
}

.next-arrow{
    position: absolute;
    right:15px;
    bottom: 50%;
    cursor:pointer;
    width: 3vw;
    transition: transform 0.5s;
}

.next-arrow:hover{
    transform:translate(5px, 0px);
}
.review-1{
    display: flex;
    min-height: 600px;
    flex-direction:row;
    align-items: stretch;
    opacity:1;
    transition: opacity 0.8s;
    margin:0 3rem;
}

#details{
    min-height:100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-top: 4rem;
}

.left-reviews{
    flex:1;
    display: flex;
    justify-content: center;
    flex-direction:column;
    align-items: end;
    align-items: flex-end;
    padding-right:5rem;
}

.right-reviews {
    flex:1;
    display: flex;
    justify-content: start;
    align-items: center;
}

.review {
    max-width: 550px;
    margin-left: 1rem;
}
.left-reviews h2 {
    color: #c2986b;
    text-align: left;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500; 
    margin-bottom: 10px;
}

.title-span{
    font-size: 2rem;
    padding-bottom: 1rem;
}

.morecontent span{
    display: none; 
}

.review-item{
    line-height: 25px;
    font-size: 0.95rem;
}

.main-button:hover > .arrow-icon {
    transform:translate(5px, 0px);  
}
.morelink{
    color: black;
    font-weight: 500;
}

.main-button:hover{
    background-color: rgba(0, 0, 0, 0.4);
} 

.main-navbar {
    display: flex; 
    align-items: center;
    justify-content: center;
    position:fixed;
    width:100%;
    min-height: 75px;
    transition: 0.6s background-color;
    z-index: 100;
    background: rgba(0, 0, 0, 0.10);
}

.main-navbar-scrolled{
    background: #272727;
    transition: 0.6s background-color;
}

.main-navbar-scrolled ul li a:hover {
    color: #ecba82;
    cursor: pointer;
}

.main-navbar-items {
    display: flex;
    justify-content: space-around;
    width:40%;
}

.navbar-item {
    list-style: none;
    text-transform: uppercase;
    margin: 8px;
}

.navbar-item a:hover{
    color: #ecba82;
    cursor: pointer;
}

.review-img {
    width:100%;
    max-width:500px;
    object-fit: cover;
    box-shadow: 15px 15px 0 #ecba82;
    margin-right: 2rem;
}
.navbar-item a{
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}
.main-wrapper{
    min-height: 200vh;
}

.arrow-icon{
    position: absolute;
    height:1.2rem;
    top:12px;
    right: 10px;
    transition: transform 0.5s;
}

.scroll-arrow {
    position:absolute;
    height:1.8rem;
    bottom:0;
    left:50%;
    -webkit-filter: drop-shadow(5px 5px 5px #222);
    filter: drop-shadow(1px 1px 3px rgb(0, 0, 0));
    animation: scrollAnimation 1.4s infinite;
}

.main-details {
    background: url("/templates/images/details.jpg");
    min-height: 35vh;
    width: 100%;
    background-position: center 20%;
    background-size: cover;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.detail-item{
    flex:1;
    text-align:center;
    margin: 1rem;
    padding: 1rem;
    color: white;
    text-transform: uppercase;
    min-width: 180px;
}

.details-icon{
    margin:1vw;
    height: 5vh;
}

.section-title {
    text-align: center;
    color: #3b3b3b;
}

.prices{
    color: gray;
}

.prices-table{
    width:100%;
    color: gray;
}
.prices-container {
    display: inline-block;
    width: 100%;
    margin-bottom: 1vh;
}

.prices-table tr td{
    padding: 0.35vh 0;
}
.prices-container th{
    text-align:left;
}
#details h2{
    width:85%;
    font-size: 2rem;
    font-weight: 400;
    text-align:start;
    max-width: 1200px;
}

#details hr{
    width:5%;
    color:black;
    border: 1px solid #ecba82;
}

.hrholder {
    display: inline-block;
    width: 85%;
    text-align: start;
    max-width: 1200px;
    margin: 1rem;
}

.interior {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid rgba(253, 253, 253, 0.1);
    margin: 2vh;
    width: 33%;
}

.box-wrapper{
    margin-top:1rem;
    width:100%;
    display: flex;
    background: rgba(22, 31, 41, 1); 
}

.box-title {
    width: 100%;
    text-align:center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 200; 
    color: white;
}

.interior-par {
    margin-bottom: 12vh;
    line-height: 22px;
    font-size: 0.9rem;
    width: 85%;
    max-width: 1200px;
}

.detail-holder{
   min-width:220px;
   flex:1;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   height: 10vh;
}


#details img{
    height:4vh;
    margin: 5px;
    opacity: 0.8;
}

.highlighted-num{
    font-weight: 400;
    font-size: 1.9rem;
    flex:1;
    color: rgba(255, 255, 255, 0.7);
}

#details .highlighted-num img {
    height: 1.8rem;
}

.highlighted-num span{
   font-size: 0.6rem;
}

.highlighted-text  {
    vertical-align: baseline;
    margin: 5px;
    flex: 2;
    color: rgba(255, 255, 255, 0.35);
}

 #details p {
    vertical-align:top;
    display: inline-block;
} 


/*booking--------------------------------------*/


#booking {
    width: 100%;
    height: 105vh;
    min-height: 850px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    background: #fffdfb69;
    margin-top: 5vh;
}

.booking-title {
    width: 100%;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: start;
    text-align: center;
    color: rgba(22, 31, 41, 1);
    text-transform:uppercase;
    margin-bottom: 10px;
}

.booking-title-secondary {
    color: #c2986b;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
}

.t-datepicker {
    height:45px;
    font-family: inherit;
}

.include-list li{
     list-style:none; 
    padding:2px 0;
    color: gray;
}

.include-list li::before{
    content: "\2022";  
    padding-right:5px;
}

.valuta {
    text-align:end;
}

.details {
    color: #e4e4e4;
    font-size: 0.8rem;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.booking-form-wrapper {
    padding: 6vh 3vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 50%;
    min-width: 500px; 
    max-width: 800px;
    height: 85%;
    max-height: 850px;
    min-height: 750px;
    background: white;
    box-shadow: 0 0 25px 5px rgb(224, 224, 224);
    margin-top: 1rem;
}


.book-details-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: #c2986b;
    margin-bottom: 1vh;
    text-transform: uppercase; 
}

.booking-form-details {
  padding: 4vh 3vw;
  width:30%;
  min-height: 750px;
  min-width: 360px;
  margin-top: 1rem;
  margin-left:2vw;
  display:flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: rgba(22, 31, 41, 1);
  box-shadow: 0 0 25px 5px #b1b1b157;
}

.price-item {
    font-weight: 500;
    text-align:right;
}
.prices-table tr td{
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
}
.include-list{
    margin-bottom: 2vh;
}

.booking-form-wrapper form{
    max-width: 650px;
    width: 85%;}

#booking input,
#booking textarea {
    padding: 10px;
    border:1px solid rgb(235, 235, 235);
    width: 100%;
    max-width:100%;
    max-height: 200px;
    font-size: 0.9rem;
    border-radius: 3px;
    margin: 5px 0;
    font-family: inherit;
}

#booking input:focus{
    border: 1px solid gray;
}
.total {
    font-size: 1.3rem;
    color: rgb(56, 56, 56);
}

.total span {
    font-weight:500;
    color: black;
}

#booking textarea {
    margin-bottom: 2rem;    
}

#booking input[type=submit]{
    color: white;
    background: rgba(22, 31, 41, 1);
    border: none;
    box-shadow: 0 5px 15px 5px rgba(128, 128, 128, 0.349);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 14px;
    cursor: pointer;
    margin-top: 1rem;
}


#booking input[type=submit]:hover{
    box-shadow: 0 5px 15px 5px rgba(128, 128, 128, 0.55);
}



/*sidebar----------------------------*/

.main-sidebar {
    position: fixed;
    background: #272727;
    left:0;
    top: 0;
    width:100%;
    height: 100vh;
    display: none;
    z-index: 100;
}

.sidebar-title{
        color: #c2986b;
        width: 100%;
        text-align:center;
        height:250px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2.5rem;
        font-family: 'Julius Sans One', sans-serif; 
        opacity: 0.7;
    }

.sidebar-navigation-items{
    list-style:none;
}

.sidebar-navigation-items li{
     width: 100%;
     border-bottom:1px solid #ecba8270;
}

.sidebar-navigation-items li:first-of-type{
    border-top: 1px solid #ecba8270;
}

.sidebar-navigation-items a{
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    color: white;
    font-size:0.9rem;
    padding:  2.5vh 25px;
    display:block;
}


.hamburger-navbar,
.hamburger-close{
    display:none;
    width:45px;
    height: 45px;
    position: relative;
    border: 3px solid #c2986b;
    z-index:101;
    cursor: pointer;
    transition: all 0.3 ease;
    margin-right: 2rem;
}

.hamburger-close{
    display: block;
    border-radius:50%;
    top:2vh+15px;
    transition: all 0.3s ease; 
}

.hamburger-navbar div,
.hamburger-close div{
    height: 2px;
    width: 30px;
    background-color: white;
    position: absolute;
    transition: all 0.5s ease;
}

.hamburger-navbar .first-line,
.hamburger-close .first-line{
    top: 8px;
    left: 5px;
}

.hamburger-navbar .second-line,
.hamburger-close .second-line{
    top: 18px;
    left: 5px;
}

.hamburger-navbar .third-line,
.hamburger-close .third-line{
    top: 28px;
    left: 5px;
}

.hamburger-close .first-line {
    transform: translateY(10px) rotate(45deg);
    transition: all 0.5s ease;
}

.hamburger-close .second-line {
    opacity: 0;
    transition: all 0.2s ease;
}

.hamburger-close .third-line{
    transform: translateY(-10px) rotate(-45deg);
    transition: all 0.5s ease;
}


/*sidebar-end-------------------------------*/

/*gallery--------------------------------*/

#gallery-sec {
    min-height: 50vh;
    min-width: 100%;
    background: rgba(22, 31, 41, 1);
}
/*gallery end----------------------------*/

/*footer-----------------------------------*/

#footer {
    min-height: 50vh;
    background:  rgba(22, 31, 41, 1);   
    width:100%;
    display: flex;
    position: relative;
    min-height: 400px;
}

.footer-item {
    flex:1;
    border-right: rgba(255, 255, 255, 0.315) 1px solid;
    margin:4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color:gray;
    position: relative;
}

.footer-title {
   justify-self: flex-start;
   color: rgba(255, 255, 255, 0.65);
   position: absolute;
   top:0; 
}

.logo-footer {
   font-family: 'Julius Sans One', sans-serif;
    font-size: 3.4vw;
    text-align:center;
    color: #c2986b8a;
}

.logo-footer span{
    font-weight: bold;
}

.social-icon {
    height: 2rem;
    opacity: 0.4;
    margin: 5px;
}

.contact-link {
    text-align: left;
    font-weight: 500;
    margin:5px 0;
}

.contact-link span {
    font-weight: 400;
}

.social-link {
    line-height: 2rem;   
}

#footer a{
    color:gray;
    text-decoration: none;
    font-weight: 500; 
}

#footer a:hover{
    color: #c2986b;
}

#infoteh{
    position: absolute;
    height:12px;
    bottom: 10px;
    right: 10px;
    opacity: 0.5;
    cursor: pointer;
}

#infoteh:hover{
    opacity: 0.8;
    margin-left: 5px;
}

.footer-item pre{
    font-family: 'Montserrat', sans-serif;
}

.footer-item div{
    display: flex; 
    justify-content: center;
    flex-direction: column;
    width: 80%;
  
}
/*footer end---------------------------------*/

/*dropdown---------------------*/

.lang-dropdown {
    position: absolute;
    left:1rem;
    display: inline-block;
}

.lang-dropdown:hover .content-dropdown{
    display: block;
    opacity:1;
}

.lang-dropdown img{
    height: 1.3rem;
    opacity: 0.8;
}

.content-dropdown {
    display: none;
    position: absolute;
    background-color: #00000028;
    min-width: 50px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1;
    left:0;
}

.content-dropdown a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  .content-dropdown a:hover{
      background: rgba(255, 255, 255, 0.596);
  }


/*----------------------------------*/

/*amenities---------------------------------*/

.interior-par h3 {
    font-size: 1rem;
    display: block;
    margin-top: 5px;
    font-weight: 500!important;
}



/*tabs------------------------------------*/

.tablinks{
    background: transparent;
    color:  #c2986b;
    font-size: 1.1rem;
    border: none;
    padding: 5px;
    cursor: pointer;
}

.active-tab,
.tablinks:hover {
    color: #c2986b;
    margin-bottom: -1px;
    border-bottom: 2px solid #c2986b;
}

.tab{
    border-bottom:1px solid #c2986b;
}

.tabcontent {
    margin-top: 5px;
    display: none;
}

.tabcontent:first-of-type{
    display: block;
}

/*-------------datepicker*/

.flatpickr-day.selected,
.flatpickr-day.endRange,
.flatpickr-day.startRange{
    background:#ecba82!important;
    border-color: #ecba82!important;
}

.flatpickr-day.disabled{
    color: rgba(255, 255, 255, 0.25)!important;
}

.flatpickr-calendar{
    background: rgba(22, 31, 41, 1)!important;
}

















/*animations--------------------------------*/
@keyframes scrollAnimation {
    from {transform: translate(0, -20px);
    opacity:0;}
    to {transform: translate(0, 10px);
    opacity:1;}
  }

/*animations-end--------------------------*/

/*media queries--------------------------*/
  @media(max-width: 900px) {
    .interior {
        width:auto;
    }

    .hamburger-navbar { 
        display: inline-block;
    }
    .main-navbar-items {
        display: none;
    }
    .main-navbar {
        justify-content: flex-end;
        border-bottom: none;
        z-index: 1000;
    }

    .modal-feedback{
        width:80%;
    }

    .review-1{
        flex-direction: column;
        height: auto;
        margin: 1.5rem 2rem;
    }
    
    .right-reviews{
       justify-content: center;
       align-items: flex-start;
    }

    .left-reviews{
        padding-right:0;
        align-items: center;
        justify-content: center;
    }
   
    .review {
        margin-left: 0;
        max-width: 500px;
    }

    .review-img {
        margin-top:10px;
        margin-right: 0;
        box-shadow: 5px 5px 0 #ecba82;
    }

    .review-item {
        text-align:center;
    }

    .back-arrow,
    .next-arrow{
        width: 6vw;
    }

    .main-sidebar {
        z-index: 110;
    }

    #amenities{
        flex-direction: column;
    }

    #booking {
        flex-direction: column;
        min-height: auto;
        height: auto;
        align-items: center;
    }

    .booking-form-details{
        width: 80%;
        margin-left: 0;
        min-height: auto;
        margin-bottom: 2rem;
    }

    .booking-form-wrapper{
        width:80%;
        min-height: auto;
        margin-top: 1rem;
        min-width: auto;
    }

    .book-details-title{
        font-size:1rem;
    }

    .include-list {
        font-size: 0.85rem;
    }
    .details{
        display: none;
        width:100%;
    }

    .left-details{
        margin-right: 1rem;
    }

    .footer-item{
        min-height: 250px;
        padding: 5px;
    }
    .footer-item:nth-child(3){
       border-right: none;
    }

    .footer-item:nth-child(4){
        display:none;
    } 

    .main-details {
        flex-wrap: wrap;
    }
    .mobile-hidden{
        display: none;
    }
  }

  @media(max-width: 600px) {

    #up-icon-img{
        bottom: 10px;
        right: 7px;
        height: 2rem;
    }


    .back-arrow,
    .next-arrow{
        background: white;
        box-shadow: 0 2px 6px 1px rgb(194, 194, 194);
        width: 3rem;
        padding: 10px;
        opacity: 0.7;
        z-index:100;
    }

    .booking-form-wrapper{
        width:95%;
    }

    .booking-form-details{
        width: 95%;
        min-width:auto;
    }

    .booking-header{
        margin-bottom: 5px;
    }

    .modal-title {
        font-size: 1.4rem; 
    }

    .modal-feedback.success{
        height: 250px;
    }
  }

  @media(max-width: 450px) {

    .main-title{
        font-size: 4rem;
        margin-top: 5rem;
    }

    .review-img {
        display:none;
    }
    .back-arrow,
    .next-arrow{
        bottom: 10px;
    }

    .back-arrow{
        left: 100px;
    }

    .next-arrow{
        right: 100px;
        background: white;
    }

    .review-1{
        min-height: 500px;
        margin-bottom: 0;
    }

    #reviews {
        padding-bottom: 4rem;
    }

    #footer {
        flex-direction: column;
    }
    
    .footer-item {
        margin:1rem ;
        border-bottom: 1px solid rgba(255, 255, 255, 0.103);
        border-right: none;
    }

    .footer-item:nth-child(1){
        order:3;
        margin:0;
    }

    .logo-footer {
        font-size: 1.6rem;
    }

    #infoteh {
        height: 10px;
    }

    .prices-table tr{
        font-size:0.9rem;
    }

    .detail-item {
        margin:0;
    }

    .detail-item:last-of-type {
        word-wrap: break-word;
    }

    .modal-feedback{
        width:95%;
    }

    .modal-feedback button{
        padding: 1rem 1.3rem;
    }

    
  }