/* Box Model Hack */
* {
  box-sizing: border-box;
  font-family: 'Cinzel', serif;
}

html {
  font-size: 62.5%;
}
/* Clear fix hack */
.clearfix:after {
     content: ".";
     display: block;
     clear: both;
     visibility: hidden;
     line-height: 0;
     height: 0;
}

.clear {
	clear: both;
}

/******************************************
/* BASE STYLES
/*******************************************/

body {
  width: 100%;
  height: auto;
  margin: auto;

}
section {
  margin: auto;
  padding: 10%;
}

span, li, i {
  font-size: 1.6rem;
}

p{
  font-size: 1.6rem;
}

h1 {
  font-weight: lighter;
  font-size: 4rem;
  max-width: 30%;
  color: white;
}
.top-section h1 {
  font-size: 6rem;

}

 h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2rem;
} 

header {
  justify-content: space-between;
  flex-direction: row;
  position:sticky;

}
#main-nav, #main-nav ul, section, header, footer, .columns {
  width: 100%;
  height: auto;
}
#main-nav {
 background-color: white;
 position: sticky;
 padding: 0;
 
}
#main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: no-wrap;
  justify-content: space-evenly; 
  align-items: center;
}

.book-online {
  margin-left: 5%;
  
}

.top-section {
  color: white;
  background: url(../assets/blondemodel.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  /* clip-path: polygon(0 0, 100% 0, 100% 103%, 0 80%); */
  border-bottom-right-radius: 10%;
  filter: drop-shadow(1px 5px 5px rgb(122, 98, 105));
  justify-content: space-between;
  flex-direction: column;
}
.image-section {
  background: url(../assets/blondemodel3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.limit-width {
  width: 80%;
  padding: 5%;
}

button{
  background-color: black;
  color: white;
  margin-top:2%;
  margin-bottom:2%;
  border-radius: 1%;
  font-size: 1.4rem;
}


#offer-box {
  position: relative;
  top: 5rem;
  background-color: black;
  padding: 2%;
  width: 30%;
  height: 40%;
  z-index: -1;
  opacity: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center; 
}

.col3 {
  column-count: 3;
  column-gap: 2%;  
}
.col2 {
  column-count: 2;
}

.card {
  justify-content: space-evenly;
  align-items: center;
  border-radius: 1rem;
  height: auto;
  margin-top: 3rem;
  -webkit-column-break-inside: avoid; /* Chrome, Safari, Opera */
          page-break-inside: avoid; /* Firefox */
               break-inside: avoid; /* IE 10+ */
}

.card img {
  width:20%;
  display: block;
  margin: 0 auto;
}

iframe {
	aspect-ratio: 16 / 9;
	height: 100%;
	width: 100%;
  border-radius: 1rem;
}
/******************************************
/* LAYOUT
/*******************************************/
/* header {

} */

button, header span, li, .bold, .logo {
  cursor: pointer;
}

 footer {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* +header, section */

footer {
  padding: 1.5%;
}
footer span {
  font-size: 1.4rem;
}
.footer-span {
  font-size: 1.2rem;
}
 .footer-nav span, .footer-nav i, button {
  padding: 1rem;
}


/******************************************
/* ADDITIONAL STYLES
/*******************************************/
.card .round-img {
  width:60%;
  border-radius: 50%;
  margin-bottom: 5%;
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
.center {
  text-align: center;
}
.grey {
  color: #b9b2b5;
}
.grey-backdrop {
  background-color: #b9b2b5;
  color: white;
}

.bold {
  font-weight: 700;
}

.top-margin-none{
  margin-top: 0
}
.white-border-left {
  border-left: white solid 2px;
  padding-left: 3%;
}

.white-button {
  background-color: white;
  color: black;
  font-weight: 700;
  padding: 3%;
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}


@media (max-width: 750px) {
  .card .round-img, .dark {
    width: 40%;
  }
  #main-nav ul {
    padding-left: 0;
  }
.column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
  .col2, .col3 {
    column-count: 1;
    column-gap: 7rem;
    text-align: center;
 }
 .limit-width {
  width: 100%;
 }
 section {
  padding-left: 3%;
  padding-right: 3%;
 }
 .top-section h1 {
  font-size: 4rem;
 }

  li {
    font-size: 1.3rem;
  }

  .book-online {
    margin-left: 10%;
  }
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
  .hide {
    display: none;
  }
  span {
    font-size: 1.4em;;
  }
  .footer-span  {
    font-size: 1.2rem;
  }
 #offer-box {
  width: 40%;
 }

}/* Responsive layout - makes a two column-layout instead of four columns *