@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@100&family=Montserrat:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Italianno&family=Style+Script&display=swap');

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html,body{
    width: auto!important;
    overflow-x: hidden!important;
    overflow-y: auto; /* explicitly allow vertical scroll */
}/* KOD ZA NE MICANJE STRANICE NA MOBILE VERZIJI */

body {
    font-family: 'Montserrat', sans-serif;
	line-height: 1;
    background: #222;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
* {
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Josefin Sans', sans-serif;
}

/* --- Navigation --- */

.navbar {
    position: fixed;
    width: 100%;
    padding: 20px 0;    
    transition: all .3s ease;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.6);
}
.navbar.sticky {
    padding: 14px 0 10px;
    background: #1d1d1d;
}
.navbar__container {
    max-width: 1400px;
    margin: auto;
    padding: 0px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.nav-wrapper{
    position:relative;
    display:flex;
    align-items:center;
    justify-content: center; /* centrira menu */
    flex: 1; /* zauzme sav prostor između loga i ikone */
    gap: 10px;
}
.menu {
    display: flex;
    align-items: center;
    list-style: none;
}
.menu a,
.langs a {
    display: inline-block;
    font-family: 'Josefin Sans', sans-serif;
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 14px;
    white-space: nowrap;
}
.langs{
    margin-left: auto;
    padding-left: 55px;
}
.menu a.active {
    color: #0cc1e0;
}
.navbar .langs{
    margin-left: auto;
    display: flex;          /* place children in a row */
}
.langs a:not(:last-child)::after {
    content: "|";
    margin-left: 10px;
    color: white;
}
a:hover {
    opacity: 0.8;
}
.icon {
    cursor: pointer;
    top: 20px;
    right: 30px;
    display: none;
    padding-right: 20px;
}
.icon.close-btn {
    position: absolute;
}
.logo img {
    width: 160px;
    height: auto;
    display: block;
}

@media (max-width: 750px) {

    body.disabledScroll {
        overflow: hidden;
    }
    .icon {
        display: block;
        color: #fff;
    }
    .icon.hide {
        display: none;
    }
    .navbar .menu {
        background: #222;
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        display: block;
        padding: 60px 20px 40px;
        transition: all .3s ease;
    }
    .navbar .menu.active {
        left: 0;
    }
    .navbar .menu li {
        margin-top: 15px;
        width: 100%;
    }
    .logo img {
        width: 110px;
        height: auto;
    }
    .navbar .langs {
        display: flex;
        flex-direction: row;
        margin-top: 20px;
        padding-left: 0;
    }
    .navbar .menu li a, .navbar .langs a{
        font-size: 1.5em;
    }
    .icon.close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1000;
    }
}

/* single glowing indicator */
.nav-indicator{
    position: absolute;
    top: -15px;
    left: 0;
    height: 3px;
    width: 0;
    background: #0cc1e0;
    transition: all .3s ease;
    transform: translateX(0);
}

.nav-indicator::after{
    content:"";
    position:absolute;
    top:2px;
    left:0;
    width:100%;
    height:18px;
    background:linear-gradient(to bottom, rgba(12,193,224,0.35), rgba(12,193,224,0));
    pointer-events:none;
}

.nav-book-btn {
    background-color: #e65c00;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.nav-book-btn:hover {
    background-color: #0ab7de;
    transform: translateY(-1px);
}

/* --- Header --- */
header {
    background-repeat: no-repeat;
    background-size: cover;
}
header .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 200px 80px;
    
}
@media (min-width: 750px) {

    header{
        width: 100%;
        height: auto;
        min-height: unset;
    }
} 

#app {
  position: relative;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}
/* Hero container */
#hero {
  position: relative;
  z-index: 2;
  height: 120vh; /* or as needed */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Neon glowing headline */
#hero h1 {
  font-size: 60px;
  line-height: 80px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  /* Neon glow with subtle multiple text shadows */
  text-shadow:
    0 0 8px rgba(12, 193, 224, 0.8),
    0 0 15px rgba(12, 193, 224, 0.4),
    0 0 25px rgba(12, 193, 224, 0.2);
  margin: 0;
}
#app.glassmorphism {
    width: 50%;
    height: 60vh;  /* use viewport height to control size */
    margin: 30vh auto;
    border-top: 2px solid #FFFFFF85;
    border-left: 2px solid #FFFFFF85;
    box-shadow: 5px 5px 12px #00000035;
    background: #FFFFFF10;
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(7px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
}


/* Responsive scaling */

@media (max-width: 768px) {
  #hero h1 {
    font-size: 25px;
    line-height: 40px;
  }
  #app.glassmorphism{
    width: 75%;
    height: 30vh;
    font-weight: 500;
    margin-top: 30vh;
  }
}


.hd__image .container{
    max-width: 1400px;
    padding-left:40px;
    padding-right:40px;
}
.headline{
    border:1px solid #fff;
    background:rgba(0,0,0,0.35);
    color:#fff;

    width:100%;
    max-width:700px;
    height: 40vh;
    margin-top:20px;
    margin-bottom:180px;

    padding:50px;
    box-sizing: border-box;
}
.headline__title{
    font-size:3rem;
    font-weight:500;
    text-transform:uppercase;
    margin-bottom:20px;
}
.general{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

@media (max-width:768px){
.headline{
    max-width:100%;
    padding: 20px;
}

.general{
    justify-content:space-evenly;
}

.info-item lord-icon{
    width:30px !important;
    height:30px !important;
}

.headline__title{
    font-size:1.5rem;
}
.info-item span{
    font-size:24px !important;
}}

/*.headline {
    border: 1px solid #fff;
    width: calc(100% + 50px);

    background-color: rgba(0,0,0,0.3);
}
.headline__title {
    color: #fff;
    font-size: 1.5em;
    font-weight: 500;
    text-transform: uppercase;
    padding: 20px;
}
@media (min-width: 750px) {

    .headline {
        max-width: 750px;
        margin: 20px auto 190px 0px;
    }
    .headline__title {
        font-size: 3em;
        padding: 50px;
    }
}*/

/*----Main homepage----*/
.main{
    width: 100%;
}
.hero {
    position: relative;
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title {
    border: 2px white solid;
    color: white;
    font-size: 40px;
    letter-spacing: 4px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    font-weight: 500;

}
.apt{
    margin: 70px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.apt .column2{
    flex-direction: column;
    width: 30%;
    max-width: 550px;
    margin-bottom: 55px;
    text-align: center;
    border: 10px solid white;
    background-color: white;
    transition: transform .5s ease, filter .5s ease;
}
.column2 p{
    margin: 5px;
    font-size: 1.25em;
    color: #222;
    font-family: 'Josefin Sans', sans-serif;
    text-align: center;
    padding-bottom: 25px;
}
.column2 h2{
    font-size: 2em;
    margin-top: 15px;
    font-weight: 600;
}
.column2 a{
    text-decoration: none;
    color: #222;
    cursor: pointer;
    
}
.column2 img {
    max-width:  100%;
    height: 70%;
    object-fit: cover;
}

.column2:hover{
    transform: scale(1.05);
    filter: brightness(1.05);
    box-shadow: 12px 12px 15px lightgray;
    opacity: 1;
    transition: opacity .15s ease-in-out;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 20vh;
    }   

    .apt .column2{
        flex-direction: row;
        width: 100%;
        max-width: 1500px;
        transition: none;
    }
    .column2 p{
        font-size: 1em;
        padding-bottom: 45px;
    }
    .column2 h2{
        font-size: 1.5em;
    } 
    .column2:hover{
    transform: none;
    box-shadow: 12px 12px 15px lightgray;
    transition: none;
    }
}
/*--Location--*/
.carousel-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.carousel-slide {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

/* Overlay to improve text readability */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 0;
    pointer-events: none;
}
@media (max-width: 768px) {
  .overlay {
    position: static !important; /* or relative */
    width: auto;
    height: auto;
    background: transparent;
    pointer-events: none; /* allow clicks */
    z-index: auto;
  }
}
.content {
    background: rgba(0,0,0,0.8);
}
.about_us .name-location{
    color: #fff;
    margin-bottom: 10px;
    
}

/*---Accommodation---*/

.col__headline{
    text-align: center;
    font-size: 2.5em;
    padding: 15px 0;
    color: #fff;
}
.headline_apt{
    text-transform: uppercase;
    font-weight: 700;
}
@media (max-width: 768px) {
    .col__headline{
        padding-top: 25px;
        font-size: 1.5em;
        padding-bottom: 0;
    }
  .background-img {
        min-height: 100svh; /* full mobile screen */
  }

}
/* --- About --- */
.window{
    background-color: rgba(29, 29, 29, 0.7);
    max-width: 100%;
    padding: 5px;
}
.about {
    margin: 20px 0;
}
section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.section__title {
    color: #fff;
    font-size: 2em;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 2em;
    margin-bottom: 1em;
}
.about__image{
    border-radius: 60% 50%;
    overflow: hidden;
}
.about__content{
    border-radius: 350px 16px  100px 64px;

}
section p {
    color: #fff;
    font-size: 1em;
    line-height: 1.5em;
    text-align: center;
}
.about_image img{
    width: 100%;
    height: 70%;
    object-fit: cover;
    display: block;
}
@media (min-width: 900px) {
    .window{
        background-color: rgba(29, 29, 29, 0.7);
        max-width: 100%;
        height: 115vh;
        margin: auto;
    }
    .about__image {
        max-width: 700px;
        overflow: hidden;
    }
    .about__content {
        float: right;
        max-width: 590px;
        background-color: #222;
        padding: 60px 30px 60px 90px;
        position: relative;
        top: -300px;
    }
}
.frame {
  width: 90%;
  margin: 20px auto;
  text-align: center;
}
.glow-btn{
    width: 150px;
    height: 50px;
    background-color: #0cc1e0;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    box-shadow: 0 0 5px #0cc1e0, 0 0 25px #0cc1e0;
}
.glow-btn a{
    text-decoration: none;
    color: #222;
}
.glow-btn:hover{
    box-shadow: 0 0 5px #0cc1e0, 0 0 25px #0cc1e0, 0 0 100px #0cc1e0;
}
.custom-btn {
  width: 130px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-size: larger;
  font-weight: 700;
  font-style: oblique;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
}
.btn-5{
    width: 250px;
    height: 80px;
    line-height: 42px;
    padding: 0;
    border: none;
    background: rgb(0,172,238);
    background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%);
}
.btn-5:hover {
    color: rgb(0,172,238);
    background: transparent;
    box-shadow:none;
}
.btn-5:before,
.btn-5:after{
      content:'';
      position:absolute;
      top:0;
      right:0;
      height:2px;
      width:0;
      background: rgb(0,172,238);
      box-shadow:
       -1px -1px 5px 0px #fff,
       7px 7px 20px 0px #0003,
       4px 4px 5px 0px #0002;
      transition:400ms ease all;
}
.btn-5:after{
  right:inherit;
  top:inherit;
  left:0;
  bottom:0;
}
.btn-5:hover:before,
.btn-5:hover:after{
  width:100%;
  transition:800ms ease all;
}
.custom-btn a{
    text-decoration: none;
    font-family: Verdana, Tahoma, sans-serif;
    color: black;
}
.custom-btn .read_more a{
    font-size: 18px;
    color: #fff;
}

/*----------Reviews-------------------*/

.reviews{
    height: 98vh;
    margin: 20px 750px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.board{
    max-width: 1200px;
    height: 98vh;
	background-color: rgba(29, 29, 29, 0.7);
	text-align: center;
    border-radius: 8px;
    padding: 2em 0;
}
.swiper {
  width: 850px;
  height: auto;
}
 .swiper .swiper-slide .flex{
    margin: 3em 0;
    display: flex;
    flex-direction: column;
    align-items: center;
 }
  .swiper .swiper-slide .comments{
    background-color: #222;
    color: aliceblue;
    font-style: oblique;
    padding: 1.5em 2em;
    margin: 0 auto;
    width: 50%;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.5s ease;
    z-index: 2;
  }

.swiper .swiper-slide .comments::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 250%;
  height: 200%;
  background: linear-gradient(
    0deg, 
    transparent, 
    transparent 30%, 
    rgba(0,255,255,0.3)
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.swiper .swiper-slide .comments:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(12,193,224,0.5);
}

.swiper .swiper-slide .comments:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}

.swiper .swiper-slide .comments::after{
   content:"";
   position: absolute;
   bottom: -19px;
   left: 45%;
   width: 0;
   height: 0;
   border-left: 20px solid transparent; 
    border-right: 20px solid transparent; 
    border-top: 20px solid #222; 
    z-index: -99;
}

.swiper .profile{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2em;
}

.swiper .profile img, .profile img{
    width: 70%;
    border-radius: 50%;
    border: 3px solid rgba(12,193,224);
    margin: 10px 0;
}

.swiper .profile>a{
    text-decoration: none;
    color: aliceblue;
}

.swiper .link{
    color: aliceblue;
    padding: 3em 0;
}

.swiper .link>a{
    text-decoration: none;
    color: rgba(12,193,224);
    font-weight: bold;
}

.swiper .swiper-button-next{
    color: rgba(12,193,224);
    width: 10px;
}

.swiper .swiper-button-prev{
    color: rgba(12,193,224);
    width: 10px;
}
@media (max-width: 900px) {
.reviews{
    height: 98vh;
    margin: 70px 0;
}

.board{
    width: 400px;
    height: 110vh;
    padding: 1em 0.5em;
}
.swiper {
  width: 350px;
  height: auto;
}
 .swiper .swiper-slide .flex{
    margin: 1.5em 0;
 }
   .swiper .swiper-slide .comments{
    padding: 0.5em;
    width: 80%;
    font-size: 15px;
  }
 .swiper .link{
    padding: 1em 0;
}
.swiper .profile img{
    width: 50%;
    margin: 5px 0;
}
}
/*------Main accommodation---------*/

.accommodation__title {
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 2.2em;
    padding: 20px;
}

@media (max-width:768px){
    .intro{
        width: 75%;
        height: 150px;
        font-size: 1.25em;
        text-align: center;
        padding: 45px;
        color: #222;
        border: 2px solid #222;
        font-weight: bold;
    }
    .accommodation__title{
        font-size: 1.5em;
    }
}

.apt .column{
    flex-direction: column;
    width: 35%;
    margin-bottom: 45px;
    text-align: center;
}
.column p{
    font-size: 1.5em;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    text-align: center;
    margin: 10px;
}
.column a{
    color: #fff;
    cursor: pointer;
    font-size: 1.5em;
    font-weight: 600;
    text-decoration: none;
}
.column a:hover{
    text-decoration: underline;
}
@media (max-width: 900px) {
    .window{
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 0px auto;
     
    }
    .apt .column img{
        width: 350px;
    }
    .apt .column{
        flex-direction: row;
        width: 100%;
    }
   .column p{
        font-size: 1em;
    }
    .column a{
        font-size: 0.95em;
    }   
}
#background {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("../img/background.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
    transform: translateZ(0);
  will-change: background-position;
}

/*----------------------CSS apartmana---------------------------------------*/

/*.general {
    color: #fff;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px 15px;
    font-weight: bold;
    flex-wrap: nowrap;
}*/

.info-item{
    display:flex;
    align-items:center;
    gap:5px;
}
.info-item span{
    font-size: 35px;
    opacity: 0;
    transform: translateY(10px);
    animation: revealText 0.6s ease forwards;
    animation-delay: 0.5s; /* same as lord-icon delay */
}
@keyframes revealText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Mobile 
@media (max-width: 768px) {
    .general{
        gap: 5px;
    }
    .info-item lord-icon {
        width: 40px !important;
        height: 40px !important;
    }
    .info-item span{
        font-size: 21px;
    }
}*/

.apt__container{
    padding: 30px;
    margin: 50px 175px 0 175px;
    border: 2px solid transparent;
    -webkit-box-shadow: 16px 12px 8px #333333;
    -moz-box-shadow:16px 12px 8px #333333;
    box-shadow: 16px 12px 8px #333333;
    background-color: whitesmoke;
}
.row{
    padding-top: 15px;
    padding-bottom: 15px;
}
.row p{
    font-size: 1.25em;
}
.row h2{
    font-size: 1.2em;
}
.flex-row{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    font-size: 1.25em;
}
.flex-row a:hover {
    -webkit-box-shadow: inset 0px 0px 5px #c1c1c1;
    -moz-box-shadow: inset 0px 0px 5px #c1c1c1;
    box-shadow: inset 0px 0px 4px #c1c1c1;
}
.flex-row a:active {
    -webkit-box-shadow: inset 0px 0px 5px #c1c1c1;
    -moz-box-shadow: inset 0px 0px 5px #c1c1c1;
    box-shadow: inset 0px 0px 5px #c1c1c1;
}
.selector, .selector a{
    box-sizing: border-box;
    border: 1px solid lightgray;
    border-radius: 35px;
    text-decoration: none;
    padding: 15px;
    color: black;
}
#active{
    background-color: #c1c1c1;
    border: 1px solid #111;
}
sup{
    font-size: small; 
    vertical-align:super;
}
.flex-column{
    display: flex;
    flex-wrap: wrap;
}
.apt__column{
    flex-direction: column;
    width: 40%;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.25em;
}
.apt__column3{
    flex-direction: column;
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.25em;
}
.conditions{
    text-align: center;
    padding: 50px 125px;
    font-size: 1.25em;
}
@media (max-width:480px){
    .general{
        font-size: 1em;
    }

}
@media (max-width: 900px){
    .apt__container{
        margin: 0 auto;
        padding: 10px;
    }
    .apt__column{
        width: 100%;
        font-size: 1em;
    }
    .flex-column{
        display: block;
    }
    .apt__column3{
        width: 100%;
        font-size: 1em;
    }
    .row h2{
        font-size: 1.25em;
    }
    .row p{
        font-size: 1em;
    }
    .flex-row{
        font-size: 0.56em;
        font-weight: bold;
    }
    .conditions{
        padding: 20px 10px;
        font-size: 1em;
    }
    .general{
        font-size: 1.25em;
    }
}


/*-----------Active-----------*/
.explore__content{
    color: white;
    padding: 0 105px;
    margin: 0px 125px;
    font-size: 1.5em;
}
.explore_main{
    margin-bottom: 150px;
}
.explore__content h1{
    font-size: 2em;
    font-family: 'Cinzel', serif;
    text-align: center;
    margin: 65px 5px;
    font-weight: bold;
}
.active_section{
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    margin-top: 75px;
}
.active_text{
    background-color: #0cc0df;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    position: relative;
    overflow: hidden;
}
.active_text p{
    font-size: 0.70em;
    padding: 30px;
}
.active_text h2{
    font-family: 'Cinzel', serif;
    color: #1d1d1d;
    text-align: center;
    font-size: 1.25em;
    text-transform: uppercase;
    margin-top: 10px;
}
.active_text a{
    text-decoration: none;
    color: white;
}
.active_image{
    width: 50%;
}
.hide span{
    position: absolute;
    top: 85%;
}
.hide i{
    font-size: x-large;
}
/* Slideshow container */

img {vertical-align: middle;}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}
/* Next & previous buttons */
.prev, .next{
    border:none;
    display:inline-block;
    padding:8px 16px;
    color:inherit;
    background-color:inherit;
    cursor:pointer;
    white-space:nowrap;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  .prev{
    position:absolute;
    top:50%;
    left:0%;
    transform:translate(0%,-50%);
    -ms-transform:translate(-0%,-50%);
  }
  .next{
    position:absolute;
    top:50%;
    right:0%;
    transform:translate(0%,-50%);
    -ms-transform:translate(0%,-50%);
  } 
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  @media (max-width: 900px){
    .explore__content{
        padding: 15px 0;
        margin: 10px 20px;
    }
    .explore__content h1{
        font-size: 0.85em;
        
    }
    .explore__content h2{
        font-size: 0.5em;
    }
    .active_section{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; 
    }
    .active_text, .other-text{
        width: 100%;
        height: 350px;
    }
    .active_text h2, .other-text h2{
        font-weight: 900;
        font-size: 0.75em;
        margin-bottom: 10px;
    }
    .active_text p, .other-text p{
        font-size: 0.6em;
        padding: 10px;
        font-weight: 700;
    }
    .active_image{
        width: 100%;
    }
    .hide i{
        font-size: small;
    }
  }
  @media (min-width: 900px){
    .active_text:hover .hide{
        top: 0;
    }
    .other-hide{
        color: white;
        background-color: #1d1d1d;
        position: absolute;
        top: -100%;
        display: flex;
        justify-content: center;
        align-items: center; 
        height: 100%;
        width: 100%;
        transition: all 0.4s;
        font-weight: bold;
        line-height: 1.5em;
    }
    .hide{
        color: white;
        background-color: #0cc0df;
        position: absolute;
        top: -100%;
        display: flex;
        justify-content: center;
        align-items: center; 
        height: 100%;
        width: 100%;
        transition: all 0.4s;
        font-weight: bold;
        line-height: 1.5em;
    }
    .hide a{
        margin-top: auto;
        text-decoration: none;
        color: white;
    }
  }
/*--------Getting Around---------*/
.main_around{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}
.around{
    width: 25%;
	padding: 0 15px 0 15px;
    margin: 20vh 0 20vh 0;
}
.around a{
    text-decoration: none;
}
.border, .events .card, .accommodation .card, .informations .card, .news .card {
	border: 1px solid gold;
	box-sizing: border-box;
}
 @media (max-width: 900px) {
    .events .around, .other .around, .accommodation .around, .informations .around, .news .around {
        margin-bottom: 10px;
    }
    .main_around{
        flex-direction: column; 
    }
    .around{
        width: 100%; 
    }
}
/*Make all the images same size*/
.card > img {
	width: 100%;
    height: 250px;
}
.card-block {
	min-height: 300px;
	background: #222;
	transition: transform 0.3s;
    color: white;
    padding: 25px;
}
 @media (max-width: 900px) {
    .card-block {
        min-height: 350px;
    }
}
.card h2{
    font-size: 1.5em;
    text-align: center;
    font-weight: 800;
}
h3.card-description, h3.card-description p{
	font-size: 1em;
	padding-top: 15px;
	line-height: 1.5;
}
.main_around .additional-info {
	position: absolute;
	transform: translate3d(0, 100%, 0);
    visibility: hidden;
    opacity: 0;
	transition: all 0.1s;
}
@media (max-width: 900px) {
    .main_around .additional-info {
        visibility: visible;
        opacity: 1;
        transition: none;
    }
}
.card-block .additional-info:nth-of-type(2) {
	transform: translate3d(0, 200%, 0);
}

.main_around a:hover .card-block, .main_around a:focus .card-block, .main_around a:active .card-block {
	transform: translate3d(0, -70px, 0);
	transition: transform 0.3s;
}
.main_around a:hover .additional-info, .main_around a:focus .additional-info, .main_around a:active .additional-info {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.3s;
}

/*-------Contact page----------*/
.main .ctn-container{
    background-color: #222;
    border: 2px solid #1d1d1d;
    padding: 100px;
}
.ctn-form{
    display: flex;
    background-color: #f2f0e9;
    justify-content: space-around;
    align-items: center;
    border-radius: 15px;
    margin-top: 5vh;
}
.ctn-form h1{
    color: #1d1d1d;
    font-family: 'Montserrat', sans-serif; 
    font-size: 2em;
    text-transform: uppercase;
    position: relative;
    margin: 70px;
    text-align: center;
    font-weight: bold;
}
.item1, .item2{
    flex-direction: column;
    width: 50%;
}
.item1{
    padding: 45px;
}
.item1 p{
    margin-bottom: 30px;
    text-align: center;
}
.item2 img{
    height: 100%;
    width: 100%;
    padding: 20px;
}
input[type=text],[type=date],[type=email],[type=number],select, textarea {
    text-decoration: none;
    background-color: #ddd;
    color: black;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    margin-top: 6px;
    margin-bottom: 16px;
}

.selectt {
    display: none;
}
.topic, .topic2{
    margin: 25px;
    display: inline-block;
}
input[type=text]:hover,[type=date]:hover,[type=email]:hover, select:hover, textarea:hover, button[type=submit]:hover{
    border:1px solid black;
}
input[type=submit],button[type=submit] {
    font-size: 20px;
    background: linear-gradient(-270deg, #3409ad, #0cc0df);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    height: 50px;
}
/*.error-text{
    font-size: 12.5px;
    color: red;
    text-align: left;
    margin: -5px 0 10px;
    display: none;
}*/


@media (max-width: 900px){

    .main .ctn-container{      
        max-width: 100%; 
        padding: 0px;
    }
    .ctn-form{
        display: block;
        border-radius: 0px;
        margin-top: 20vh;
    }
    .ctn-form h1{
        display: none;
    }
    input{
        width: 100%;
    }
    .topic{
        margin: 15px;
        display: block;
        align-items: center;
    }
    .topic input{
        position: relative;
        top: 19px;
        left: 25px;
    }
    .item1, .item2{
        width: 100%;
    }

}

/*--------------About-----------------*/
header .about_container {
    padding: 150px 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pic{
    width: 350px; 
    height: 300px; 
    border-radius: 50%; 
    border: 10px #0cc1e0 solid;
}

.about_us{
    color: #f2f0e9;
    text-align: center;
}
.about_us h2{
    color: #0cc1e0;
    font-size: 2.5em;
}
.about_text{
    font-size: 1.25em;
    max-width: 800px;
    margin: auto;
    padding: 70px 20px;
}
@media (max-width: 750px){
    .pic{
        width: 250px; 
        height: 200px; 
        border: 5px #0cc1e0 solid; 
    }
    .about_us h2{
        font-size: 1.85em;
    }
    .about_text{
        padding-top: 22vh;
    }
}

/*-------Footer----------*/
.footer__content{
    background-color: #1d1d1d;
    margin-top: 0px;
    width: 100%;
    padding: 100px 15%;
    color: #fff;
    display: flex;
    justify-content: space-between;
}
.footer__content div{
    text-align: center;
}
.footer__contact a{
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    color: #fff;
}
.phone_options{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-bottom: 10px;
}
.phone_options i{
    font-size: x-large;
}
.footer__content div a:hover{
    text-decoration: underline;
}
.footer__content div h3{
    font-weight: 300;
    text-decoration: underline;
    margin-bottom: 30px;
    letter-spacing: 1px;
}
.footer__menu a{
    display: block;
    text-decoration: none;
    color: #fff;
    margin-bottom: 10px;
}
.footer__copy{
    text-align: center;
    padding-top: 50px;
}
@media (max-width: 900px){
    .footer__content{
        display: block;
    }
    .footer__menu{
        margin-bottom: 40px;
}
    .footer__contact{
        margin: 20px 0 20px 0;
    }
    .phone_options{
        margin-bottom: 15px;
    }
}

