@import url("https://fonts.googleapis.com/css2?family=Euphoria+Script&family=Unica+One&display=swap");
@import url("https://fonts.googleapis.com/css?family=Cardo:400i|Rubik:400,700&display=swap");

:root {
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
  --font-sans: "Rubik", sans-serif;
  --font-serif: "Cardo", serif;
  --euphoria: "Euphoria Script", cursive;
  --unica: "Unica One", cursive;
  --dark-green: #93b88e;
  --green: #b3dfad;
  --light-green: #bcdda6;
  --tortora: #e1dad9;
  --gray: #cdc6c5;
  --dark-beige: #e4d2bd;
  --white-modified: #f8f8f6;
  --beige-modified: #f3e8dd;
}

* {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 20px;
}

button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

a {
  text-decoration: none;
  color: black;
}

li {
  list-style: none;
}

body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*background-color: var(--white-modified);ONLY ??? FOR DEVELOPMENT*/
}

.disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.carousel {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.viewport {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: black;
}

.slide-container {
  width: 100%;
  height: 100%;
  position: absolute;
}

.slide-container > div.home {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  animation-name: swipe5;
  animation-duration: 25s; /* 5 * number of slides. */
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(.5,0,.5,.5);
  z-index: 1;
  position: relative;
  background-color: white;
  background-repeat: no-repeat;
}

.slide-container > div.rooms {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  animation-name: swipe3;
  animation-duration: 15s; /* 5 * number of slides. */
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(.45,0,.68,.81);
  z-index: 1;
  position: relative;
  background-color: white;
  background-repeat: no-repeat;
}

@media (pointer:none), (pointer:coarse) {
  .slide-container > div{
    background-attachment:scroll;
  }
}

@keyframes swipe3 {
  0% {
    z-index: 1;
    will-change: width;
  }
  15% {
    width: 0;
    visibility: hidden;
  }
  30% {
    z-index: 0;
    width: 100%;
  }
  65.9% {
    /* (Numer of slides * 10) + 36 - 0.1. */
    z-index: 0;
    visibility: hidden;
  }
  66% {
    /* (Numer of slides * 10) + 36. */
    visibility: visible;
  }
}

@keyframes swipe5 {
  0% {
    z-index: 1;
    will-change: width;
  }
  10% {
    width: 0;
    visibility: hidden;
  }
  30% {
    z-index: 0;
    width: 100%;
  }
  79.9% {
    /* (Numer of slides * 10) + 36 - 0.1. */
    z-index: 0;
    visibility: hidden;
  }
  80% {
    /* (Numer of slides * 10) + 36. */
    visibility: visible;
  }
}

@keyframes swipe5left {
  0% {
    z-index: 1;
    left: 0;
  }
  10% {
    left: -100%;
    visibility: hidden;
  }
  30% {
    z-index: 0;
    left: 0;
  }
  79.9% {
    /* (Numer of slides * 10) + 36 - 0.1. */
    z-index: 0;
    visibility: hidden;
  }
  80% {
    /* (Numer of slides * 10) + 36. */
    visibility: visible;
  }
}

.slide-1 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0)),
    url("images/spring_home.jpg") no-repeat center center fixed;
  animation-delay: 5s;
}

.slide-2 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0)),
    url("images/reception.jpg") no-repeat center center fixed;
  animation-delay: 10s;
}

.slide-3 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0)),
    url("images/breakfast_area.jpg") no-repeat center center fixed;
  animation-delay: 15s;
}

.slide-4 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0)),
    url("images/breakfast_3.jpg") no-repeat center center fixed;
  animation-delay: 20s;
}

.slide-5 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0)),
    url("images/home_5.jpg") no-repeat center center fixed;
  animation-delay: 25s;
}

/* .slide-6 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0)),
    url("") no-repeat center center fixed;
  animation-delay: 0s;
} */

.slide-7 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0)),
    url("images/room_1.jpg") no-repeat center center fixed;
  animation-delay: 5s;
}

.slide-8 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0)),
    url("images/room_2.jpg") no-repeat center center fixed;
  animation-delay: 10s;
}

.slide-9 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0)),
    url("images/room_3.jpg") no-repeat center center fixed;
  animation-delay: 15s;
}

noscript {
  height: 40vh;
  width: 100%;
}
noscript p {
  width: 100%;
  text-align: center;
}

.svg {
  height: 1rem;
  width: 1rem;
  margin-right: 1rem;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: black;
}

.slideshow .slide {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  height: 100%;
}
/* 
#slide1 {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0)
    ),
    url("images/home.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  animation: slideshow 10s ease 8s infinite;
}
#slide2 {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0)
    ),
    url("images/test2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  animation: slideshow 10s ease 8s infinite;
}
#slide3 {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0)
    ),
    url("images/test3.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  animation: slideshow 2s ease 4s;
} 
#slide4 {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0)
    ),
    url("images/test4.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  animation: slideshow 2s ease 6s;
}

@keyframes slideshow {
  0% {
    display: block;
    transform: translateX(0);
  }
  10% {
    transform: translateX(-100%);
  }
  90% {
    transform: scale(1.5);
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(-200%);
    display: none;
  }
}*/

.hero {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0)
    ),
    url("images/home.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.navbar {
  /*background-color: chartreuse; ONLY FOR DEVELOPMENT*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  display: grid;
  grid-template-columns: 30% 40% 30%;

  /* z-index: 1; */
}

.navbar .burger {
  /*background-color: violet; ONLY FOR DEVELOPMENT*/
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.navbar .burger .symbol div {
  width: 1.5rem;
  height: 0.15rem;
  background-color: var(--white-modified);
  margin: 0.25rem;
  transition: all 0.5s ease;
}

.navbar .burger .text {
  text-transform: uppercase;
  color: var(--white-modified);
  transition: all 0.5s ease;
}

.navbar .logo {
  margin: auto 0;
  text-align: center;
}

.navbar .logo a {
  color: var(--white-modified);
  font-family: var(--euphoria);
  font-size: 4rem;
  transition: all 0.5s ease;
}

.navbar .booking {
  margin: auto 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.navbar .booking button {
  color: var(--white-modified);
  text-transform: uppercase;
  transition: all 0.5s ease;
}

/*MENU open*/
.menu {
  position: fixed;
  width: 100%;
  top: 8rem;
  height: calc(100% - 8rem);
  text-align: center;
  transform: translateX(-100%);
  transition: transform 0.5s ease-in;
}

.menu ul {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  background: var(--white-modified); /*ONLY FOR DEVELOPMENT*/
}
.menu ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  background-size: cover;
  height: 100%;
}


.menu ul li:nth-child(1){
  background-image: linear-gradient(rgba(0, 0, 0, 0.85),rgba(0, 0, 0, 0.85)) ,url("images/spring_home.jpg");
}

.menu ul li:nth-child(2){
  background-image: linear-gradient(rgba(0, 0, 0, 0.85),rgba(0, 0, 0, 0.85)) ,url("images/room_1.jpg");
}

.menu ul li:nth-child(3){
  background-image: linear-gradient(rgba(0, 0, 0, 0.85),rgba(0, 0, 0, 0.85)) ,url("images/menu.jpeg");
}

.menu ul li:nth-child(4){
  background-image: linear-gradient(rgba(0, 0, 0, 0.85),rgba(0, 0, 0, 0.85)) ,url("images/guests.jpg");
}

.menu ul li:nth-child(1):hover{
  background-image: linear-gradient(rgba(0, 0, 0, 0.40),rgba(0, 0, 0, 0.40)) ,url("images/spring_home.jpg");
}

.menu ul li:nth-child(2):hover{
  background-image: linear-gradient(rgba(0, 0, 0, 0.40),rgba(0, 0, 0, 0.40)) ,url("images/room_1.jpg");
}

.menu ul li:nth-child(3):hover{
  background-image: linear-gradient(rgba(0, 0, 0, 0.40),rgba(0, 0, 0, 0.40)) ,url("images/menu.jpeg");
}

.menu ul li:nth-child(4):hover{
  background-image: linear-gradient(rgba(0, 0, 0, 0.40),rgba(0, 0, 0, 0.40)) ,url("images/guests.jpg");
}

.menu ul li a {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4); 
  border-radius: 8px;
  transition: all 0.2s; 
  padding: 20px;
}

.menu ul li:hover a {
  font-size: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
  border-radius: 8px;
}


/*Menu opening*/
.nav-active {
  transform: translateX(0);
}

.background {
  background-color: var(--dark-green);
  transition: 1s;
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-0.25rem, 0.3rem);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-0.25rem, -0.3rem);
}

@keyframes navLinkFadeIn {
  from {
    opacity: 0;
    transform: translateX(2.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.separator {
  width: 2px;
  height: 21px;
  margin: 2px 5px;
  background-color: var(--white-modified);
  transition: all 0.5s ease;
}

@media only screen and (max-width: 1080px) {
  #line1,
  #line2,
  #line3 {
    height: 0.1rem;
  }
  .navbar .burger .text {
    font-size: 16px;
  }
  .navbar .logo a {
    font-size: 2rem;
  }
  .navbar .booking {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .navbar .booking a button {
    font-size: 16px;
  }
  .separator {
    margin: 5px 0;
    width: 3rem;
    height: 2px;
  }
}

.quote {
  text-align: center;
  background-color: var(--white-modified);
  padding: 4rem 0;
  border-top: 1px solid rgba(191, 191, 191, 0.4);
  border-bottom: 1px solid rgba(191, 191, 191, 0.4);
}
.quote q {
  font-size: 30px;
}

.story {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.story .title {
  padding: 2.5rem 0;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--beige-modified);
}

.story .container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white-modified);
}

.story .container p {
  margin: 5rem;
}

.story .container img {
  border-radius: 0.5rem;
  width: 25%;
  margin: 3.75rem;
}

/* Media Queries */
/* Card sizing */
/* Colors */
/* Calculations */
/* Placeholders */
@media (min-width: 1200px) {
  #timeline .demo-card:nth-child(odd) .head::after,
  #timeline .demo-card:nth-child(even) .head::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
  }
  #timeline .demo-card:nth-child(odd) .head::before,
  #timeline .demo-card:nth-child(even) .head::before {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    background-color: #bdbdbd;
    border-radius: 9px;
    box-shadow: 0px 0px 2px 8px #f7f7f7;
  }
}
/* Some Cool Stuff */
.demo-card:nth-child(1) {
  order: 1;
}
.demo-card:nth-child(2) {
  order: 4;
}
.demo-card:nth-child(3) {
  order: 2;
}
.demo-card:nth-child(4) {
  order: 5;
}
.demo-card:nth-child(5) {
  order: 3;
}
/* .demo-card:nth-child(6) {
  order: 6;
} */
/* Border Box */

#timeline {
  /* padding: 100px 0; */
  background: var(--white-modified);
  border-top: 1px solid rgba(191, 191, 191, 0.4);
  border-bottom: 1px solid rgba(191, 191, 191, 0.4);
}
#timeline h3 {
  font-family: var(--unica);
  text-transform: uppercase;
  text-align: center;
  font-size: 30px;
  font-weight: 200;
  margin-bottom: 20px;
}
#timeline p.leader {
  text-align: center;
  max-width: 90%;
  margin: auto;
  margin-bottom: 45px;
}
#timeline .demo-card-wrapper {
  position: relative;
  margin: auto;
}
@media (min-width: 1200px) {
  #timeline .demo-card-wrapper {
    display: flex;
    flex-flow: column wrap;
    width: 1170px;
    height: 1150px;
    margin: 0 auto;
  }
}
#timeline .demo-card-wrapper::after {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 1px solid rgba(191, 191, 191, 0.4);
}
@media (min-width: 1200px) {
  #timeline .demo-card-wrapper::after {
    border-left: 1px solid #bdbdbd;
  }
}
#timeline .demo-card {
  position: relative;
  display: block;
  margin: 10px auto 80px;
  max-width: 94%;
  z-index: 2;
}
@media (min-width: 480px) {
  #timeline .demo-card {
    max-width: 90%;
    box-shadow: 0px 1px 22px 4px rgba(0, 0, 0, 0.07);
  }
}
@media (min-width: 720px) {
  #timeline .demo-card {
    max-width: 60%;
  }
} 
@media (min-width: 1200px) {
  #timeline .demo-card {
    max-width: 450px;
    height: 370px;
    margin: 90px;
    margin-top: 45px;
    margin-bottom: 45px;
  }
  #timeline .demo-card:nth-child(odd) {
    margin-right: 45px;
  }
  #timeline .demo-card:nth-child(odd) .head::after {
    border-left-width: 15px;
    border-left-style: solid;
    left: 100%;
  }
  #timeline .demo-card:nth-child(odd) .head::before {
    left: 491.5px;
  }
  #timeline .demo-card:nth-child(even) {
    margin-left: 45px;
  }
  #timeline .demo-card:nth-child(even) .head::after {
    border-right-width: 15px;
    border-right-style: solid;
    right: 100%;
  }
  #timeline .demo-card:nth-child(even) .head::before {
    right: 489.5px;
  }
  #timeline .demo-card:nth-child(2) {
    margin-top: 180px;
  }
}
#timeline .demo-card .head {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 400;
}
#timeline .demo-card .head .number-box {
  display: inline;
  float: left;
  margin: 15px;
  padding: 10px;
  font-size: 35px;
  line-height: 35px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.17);
}
#timeline .demo-card .head h2 {
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: inherit;
  letter-spacing: 2px;
  margin: 0;
  padding-bottom: 6px;
  line-height: 1rem;
}
@media (min-width: 480px) {
  #timeline .demo-card .head h2 {
    font-size: 165%;
    line-height: 1.2rem;
  }
}
#timeline .demo-card .head h2 span {
  display: block;
  font-size: 0.6rem;
  margin: 0;
}
@media (min-width: 480px) {
  #timeline .demo-card .head h2 span {
    font-size: 0.8rem;
  }
}
#timeline .demo-card .body {
  background: #fff;
  border: 1px solid rgba(191, 191, 191, 0.4);
  border-top: 0;
  padding: 15px;
}
/* @media (min-width: 1200px) {
  #timeline .demo-card .body {
    height: 275px;
  }
} */
#timeline .demo-card .body p {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 15px;
}
#timeline .demo-card .body img {
  display: block;
  width: 100%;
  height: 80%;
  overflow: hidden;
}
#timeline .demo-card--step1,#timeline .demo-card--step2,#timeline .demo-card--step3,#timeline .demo-card--step4 {
  background-color: var(--dark-beige);
}
#timeline .demo-card--step1 .head::after,#timeline .demo-card--step2 .head::after, #timeline .demo-card--step3 .head::after,#timeline .demo-card--step4 .head::after {
  border-color: var(--dark-beige);
}
/*
#timeline .demo-card--step2 {
  background-color: var(--light-green);
}
#timeline .demo-card--step2 .head::after {
  border-color: var(--green);
}
#timeline .demo-card--step3 {
  background-color: var(--light-green);
}
#timeline .demo-card--step3 .head::after {
  border-color: var(--green);
}
#timeline .demo-card--step4 {
  background-color: var(--light-green);
}
#timeline .demo-card--step4 .head::after {
  border-color: var(--green);
}
#timeline .demo-card--step5 {
  background-color: var(--light-green);
}
#timeline .demo-card--step5 .head::after {
  border-color: var(--green);
}  */

/*
.animate {
  animation: animate 1s ease-in-out forwards;
}

@keyframes animate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*/

.about-us {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.about-us .title {
  padding: 2.5rem 0;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--beige-modified);
}

.about-us .container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white-modified);
}

.about-us .container p {
  margin: 5rem;
}

.about-us .container img {
  border-radius: 8px;
  width: 25%;
  margin: 3.75rem;
}

footer {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 13px;
  padding: 1.25rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
}
footer a {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 13px;
  color: white;
}

@media only screen and (max-width: 1080px) {
  .about-us .container img {
    width: 40%;
    margin: 2.5rem;
  }

  .about-us .container p {
    margin: 3.75rem;
  }
  .story .container img {
    order: 1;
    width: 40%;
    margin: 2.5rem;
  }

  .story .container p {
    margin: 3.75rem;
  }
}

@media only screen and (max-width: 850px) {
  .about-us .container {
    flex-direction: column;
  }
  .about-us .container img {
    order: 1;
    width: 75%;
    margin: 1.25rem;
  }

  .about-us .container p {
    margin: 1.25rem 5rem;
    order: 2;
  }
  .story .container {
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }
  .story .container img {
    order: 1;
    width: 75%;
    margin: 1.25rem;
  }

  .story .container p {
    margin: 1.25rem 5rem;
    order: 2;
  }
}

.rooms-hero {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0)
    ),
    url("images/test1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.page-title {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-title h2 {
  text-transform: uppercase;
  color: var(--white-modified);
  font-size: 50px;
  z-index: 0;
  font-family: var(--unica);
  font-weight: bold;
  word-spacing: 0.6rem;
  font-size: 80px;
}

.rooms {
  position: relative;
  height: max-content;
  display: flex;
  flex-direction: column;
  z-index: -1;
}

.rooms .room {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  background-color: var(--white-modified);
  padding: 0.5rem;
  border-bottom: 1px solid black;
}

.rooms .room img {
  overflow: hidden;
  /* height: 25rem; */
  width: 50%;
  padding: 1rem;
  border-radius: 2.5rem;
}

.rooms .room .container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 1rem;
  align-items: center;
}

.rooms .room .container .title {
  font-size: 1.5rem;
  text-align: center;
}

.rooms .room:nth-child(odd) {
  flex-direction: row-reverse;
}

.rooms .room .container p {
  padding: 1rem 5rem;
  text-align: justify;
}

.rooms .room .container button {
  text-align: center;
  border: 1px solid var(--dark-beige);
  border-radius: 25px;
  background-color: var(--dark-beige);
  width: 5rem;
}

@media only screen and (max-width: 1080px) {
  .rooms:nth-child(odd) {
    flex-direction: column-reverse;
  }
  .rooms:nth-child(odd) {
    flex-direction: column-reverse;
  }
}

.about-hero {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0)
    ),
    url("images/test4.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.us {
  position: relative;
  height: max-content;
  display: flex;
  flex-direction: column;
  z-index: -1;
}

.us .people {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  background-color: var(--white-modified);
  padding: 0.5rem;
  border-bottom: 1px solid black;
}

.us .people img {
  overflow: hidden;
  height: 25rem;
  width: 30%;
  padding: 1rem;
  border-radius: 2.5rem;
}

.us .people .container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 1rem;
  align-items: center;
}

.us .people .container .title {
  font-size: 1.5rem;
  text-align: center;
}

.us .people:nth-child(even) {
  flex-direction: row-reverse;
}

.us .people .container button {
  text-align: center;
  border: 1px solid var(--tortora);
  border-radius: 1.25rem;
  background-color: var(--tortora);
  width: 5rem;
}

.together {
  border-top: 1px solid rgba(191, 191, 191, 0.4);
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--white-modified);
}

.together .desc{
  width: 50%;
  text-align: center;
}

.together .desc .title {
  text-transform: uppercase;
  font-family: var(--unica);
  font-weight: bold;
  font-size: 30px;
  padding-top: 2rem;
}

.together .img {
  margin: 2rem;
  height: 20rem;
  width: 40%;
  background-image: url('images/about1.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  border-radius: 25px;
}

.together .desc p {
  font-size: 20px;
  margin: 2rem 5rem;
  text-align: justify;
}

@media (max-width:1080px){
  .together{
    flex-direction: column-reverse;
  }

  .together .desc{
    width: 100%;
  }

  .together .desc p{
    margin: 0;
  }

  .together .img{
    margin-top: 0;
    width: 90%;
  }
}

.contact-hero {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.75)
    ),
    url("images/spring_home_edit.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


.contact {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  z-index: -1;
  height: max-content;
  background-color: var(--white-modified);
}

.contact .text {
  text-align: center;
  padding: 2rem;
  background-color: var(--white-modified);
}

.contact .text a {
  color: black;
}

.contact .container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.contact .container h3 {
  text-align: left;
  font-size: 40px;
  margin-top: 2rem;
  margin-left: 5rem;
}

.contact .container form {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  margin: auto;
}

.contact .container form label {
  margin-top: 1rem;
}
.contact .container form input {
  border: 1px solid black;
  width: 60%;
}
.contact .container form #id_message {
  border: 1px solid black;
  width: 100%;
  height: 7.5rem;
}

.contact .container form button {
  margin: auto;
  margin-top: 1rem;
  padding: 0.5rem;
  background-color: var(--dark-beige);
}

.contact .container .data {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 0;
}

.contact .container .data li {
  padding: 1rem;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  justify-content: center;
}

.contact .container .data li a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: black;
}

.contact .container #map {
  margin: 1rem auto;
  display: block;
  height: 25rem;
  width: 80%;
  border: 0;
}

@media only screen and (max-width: 850px) {
  .contact .container h3 {
    margin-left: 0;
    text-align: center;
  }
  .contact .container form {
    width: 90%;
    margin: auto;
  }
}

.modern-hero {
  position: relative;
  width: 100%;
  height: 60%;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0)
    ),
    url("images/test4.jpg"); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.room-title {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  color: var(--white-modified);
  font-size: 50px;
  z-index: 0;
  font-family: var(--unica);
  font-weight: bold;
  word-spacing: 0.6rem;
  font-size: 80px;
}

.product {
  padding: 2rem 0;
  width: 100%;
  height: max-content;
  background-color: var(--white-modified);
  display: grid;
  grid-template-columns: 50% 50%;
}

.product .product-gallery {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.product .product-gallery .product-image {
  position: relative;
  width: 100%;
  height: 30rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.product .product-gallery .product-image img {
  width: 100%;
  height: auto;
}

.product .product-gallery .image-list {
  padding: 0;
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.product .product-gallery .image-list .image-item {
  position: relative;
  width: 10rem;
  height: 10rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.product .product-gallery .image-list .image-item img {
  max-width: 100%;
  min-height: 100%;
  padding: 0 1rem;
}

.product .product-info {
  display: flex;
  width: 80%;
  margin: 0 auto;
  flex-direction: column;
  justify-content: space-evenly;
}
.product .product-info .product-title {
  font-size: 30px;
  text-transform: uppercase;
}

.product .product-info .product-description {
  text-align: justify;
  font-size: 20px;
}

.product .product-info .product-services ul li {
  margin: 0.3rem 0;
}

.product .product-info .product-price span {
  font-size: 20px;
}
/*
.product .product-info .book-this {
  width: 100%;
  text-align: center;
}

.product .product-info .book-this a {
  text-transform: uppercase;
}*/

@media only screen and (max-width: 1080px) {
  .product {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-evenly;
    padding: 2rem;
  }
  .product .product-gallery {
    width: 100%;
  }
  .product .product-info {
    width: 100%;
  }
  .product .product-info .product-title {
    margin: 0.5rem 0;
    margin-top: 1rem;
  }
  .product .product-info .product-description {
    margin: 0.5rem 0;
  }
  .product .product-info .product-services {
    margin: 0.5rem 0;
  }
  .product .product-info .product-price {
    margin: 0.5rem 0;
  }
  .product .product-info .book-this {
    margin: 0.5rem 0;
  }
}

#book-body {
  background-color: var(--white-modified);
}

.arrow {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  margin: 0 2px;
  margin-bottom: 2px;
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.nav-book {
  position: relative;
  display: grid;
  grid-template-columns: 30% 40% 30%;
  height: 20vh;
}

.nav-book .title {
  text-align: center;
  text-transform: uppercase;
  font-size: 30px;
  margin: auto;
}

.nav-book .back {
  margin: auto;
}

.nav-book .total-price {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin: auto;
}

#booking-form, #data-form{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin: 0;
}

#booking-form .input-div, #data-form .input-div{
  margin: 1rem 0;
  display: grid;
  grid-template-columns: 5% 42.5% 5% 42.5% 5%;
}

#data-form .input-div{
  grid-template-columns: 10% 22.5% 5% 52.5% 10%;
}

#booking-form .input-div label, #data-form .input-div label{
  text-align: right;
}

#data-form .note-input-div{
  margin: 1rem 0;
  display: grid;
  grid-template-columns: repeat(1,1fr);
}

#data-form .note-input-div #counter{
  text-align: left;
}

#booking-form .input-div input,
#booking-form .input-div select{
  cursor: pointer;
  text-align: start;
  width: 160px;
}

#data, #book{
  border-radius: 25px;
  background-color: var(--gray);
  padding: 0.5rem;
  text-transform: uppercase;
  margin: 1rem auto;
}

#bdata{
  margin: 1rem;
  display: grid;
  grid-template-columns: repeat(1,1fr);
  grid-column-gap: 1rem;
  text-align: center;
}

#termsconditions_link{
  text-transform: uppercase;
  font-size: 17px;
}

@media (min-width: 1440px){
  #bdata{
    grid-template-columns: repeat(3,1fr);
  }
}

#bdata .resume, #bdata .info{
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--beige-modified);
  padding: 2rem;
}

#bdata .resume > .title, #bdata .info > .title{
  padding-bottom: 0.5rem;
}

#bdata .info .data div{
  text-align: justify;
}

.offers-hero {
  position: relative;
  width: 100%;
  height: 60%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0)
    ),
    url("images/2000.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.offer {
  border-top: 1px solid black;
  padding: 3rem 0;
  width: 100%;
  height: fit-content;
}

.grid {
  display: grid;
  grid-template-columns: 50% 50%;
}

.offer .off-content {
  padding: 0 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.offer .off-content .description {
  text-align: justify;
}


.offer .off-content .title h3 {
  font-family: var(--unica);
  font-size: 30px;
  text-transform: uppercase;
}

.offer .img {
  margin: 0 auto;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
  border-radius: 10px;
  min-width: 90%;
  max-width: 100%;
  min-height: 400px;
  max-height: 100%;
  width: auto;
  height: auto;
}

.offer .off-content .desc .price-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

@media (max-width: 1080px){
  .offer{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .offer .off-content .title {
    padding: 0;
  }
  .offer .off-content .desc .price-container {
    flex-direction: column-reverse;
  }
}

.hotel-home {
  padding: 3rem 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  background-color: var(--white-modified);
}

.hotel-home .desc {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.hotel-home .desc .title {
  text-align: center;
  text-transform: uppercase;
}
.hotel-home .desc .title h3 {
  font-size: 30px;
  font-family: var(--unica);
}

.hotel-home .desc .text {
  padding: 1rem 5rem;
  text-align: justify;
}

.hotel-home .img {
  width: 30%;
  background-image: url("images/spring_home_edit.jpg");
  border-radius: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.index-rooms {
  height: auto;
  width: 100%;
  display: grid;
  place-items: center;
  background-color: var(--white-modified);
  padding: 1rem 0;
}

.index-rooms .title h3 {
  text-transform: uppercase;
  font-size: 30px;
  font-family: var(--unica);
}

.rooms-home {
  display: grid;
  grid-gap: 3rem;
  padding: 1rem;
  max-width: 60%;
  margin: 0 auto;
  font-family: var(--font-sans);
  grid-template-columns: repeat(1,1fr);
}

.room-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  text-align: center;
  color: whitesmoke;
  background-color: whitesmoke;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1),
    0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1),
    0 16px 16px rgba(0, 0, 0, 0.1);
}
@media (min-width: 600px) {
  .room-card {
    height: 350px;
  }
}
.room-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}
.room-card:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.009) 11.7%,
    rgba(0, 0, 0, 0.034) 22.1%,
    rgba(0, 0, 0, 0.072) 31.2%,
    rgba(0, 0, 0, 0.123) 39.4%,
    rgba(0, 0, 0, 0.182) 46.6%,
    rgba(0, 0, 0, 0.249) 53.1%,
    rgba(0, 0, 0, 0.32) 58.9%,
    rgba(0, 0, 0, 0.394) 64.3%,
    rgba(0, 0, 0, 0.468) 69.3%,
    rgba(0, 0, 0, 0.54) 74.1%,
    rgba(0, 0, 0, 0.607) 78.8%,
    rgba(0, 0, 0, 0.668) 83.6%,
    rgba(0, 0, 0, 0.721) 88.7%,
    rgba(0, 0, 0, 0.762) 94.1%,
    rgba(0, 0, 0, 0.79) 100%
  );
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}

.card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transition: transform var(--d) var(--e);
  z-index: 1;
}
.card-content > * + * {
  margin-top: 1rem;
}
.card-title {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: black 2px 2px 2px;
}
.card-copy {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.35;
}
.btn {
  cursor: pointer;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: black;
  border: none;
}

.btn a {
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  color: white;
}

.btn:hover {
  background-color: #0d0d0d;
}
.btn:focus {
  outline: 1px dashed yellow;
  outline-offset: 3px;
}
@media (hover: hover) and (min-width: 1080px) {
  .room-card:after {
    transform: translateY(0);
  }
  .card-content {
    transform: translateY(calc(100% - 4.5rem));
  }
  .card-content > *:not(.card-title) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }
  .room-card:hover,
  .room-card:focus-within {
    align-items: center;
  }
  .room-card:hover:before,
  .room-card:focus-within:before {
    transform: translateY(-4%);
  }
  .room-card:hover:after,
  .room-card:focus-within:after {
    transform: translateY(-50%);
  }
  .room-card:hover .card-content,
  .room-card:focus-within .card-content {
    transform: translateY(0);
  }
  .room-card:hover .card-content > *:not(.card-title),
  .room-card:focus-within .card-content > *:not(.card-title) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--d) / 8);
  }
  .room-card:focus-within:before,
  .room-card:focus-within:after,
  .room-card:focus-within .card-content,
  .room-card:focus-within .card-content > *:not(.card-title) {
    transition-duration: 0s;
  }
}

.pension-info {
  position: relative;
  top: 91px;
  padding-top: 2rem;
  width: 100%;
  background-color: gray;
  color: white;
}

.pension-info .pension-info-title {
  padding: 0 1rem;
}

.pension-info .pension-info-title span {
  font-size: 18px;
}

.pension-info ul {
  margin: 0;
  padding: 0.5rem 1.5rem;
}

.pension-info ul li {
  font-size: 16px;
  text-align: justify;
}



@media (max-width:1080px){
  .hotel-home{
    flex-direction: column;
  }
  .hotel-home .desc{
    width: 90%;
    margin: 0 auto;
  }

  .hotel-home .img{
    width: 90%;
    height: 30rem;
    margin: 0 auto;
  }
  .page-title h2{
    font-size: 1.5rem;
  }
  .rooms .room{
    flex-direction: column;
  }
  .rooms .room:nth-child(odd){
    flex-direction: column;
  }
  .rooms .room img{
    width: 90%;
    margin: 0 auto;
  }
  .room-title{
    font-size: 1.5rem;
  }
  .product .product-info .product-title{
    text-align: center;
  }
  .product .product-info .product-description{
    text-align: justify;
  }
  .us .people{
    flex-direction: column-reverse;
  }
  .us .people:nth-child(even){
    flex-direction: column-reverse;
  }

  .us .people img{
    width: 80%;
    margin: 0 auto;
  }

  .hotel-home .desc {
    width: 90%;
  }

  .hotel-home .desc .text {
    padding: 1rem 0;
  }

  .together p{
    padding: 1rem;
  }

  .rooms .room .container p{
    padding: 1rem;
  }

  .offer .off-content{
    padding: 0 1rem;
  }

  .rooms .room img {
    height: auto;
  }
}

@media (max-width:720px){
  .nav-book{
    grid-template-columns: repeat(1, 1fr);
  }
}