/* makes sizing simpler */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* remove default spacing */
/* force styling of type through styling, rather than elements */

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* dark mode user-agent-styles */

/* min body height */

body {
  min-height: 100vh;
}

/* responsive images/videos */
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}
/* end kevinpowell reset */

body {
  font-family: Montserrat;
  background: #e7eef1;
}

a {
  color: #0088ff;
  text-decoration: none;
}

strong {
  font-weight: 600;
}

ul {
  list-style-type: disc;
  margin-left: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  list-style-position: outside;
}
.page-content ul {
  font-size: 0.9rem;
  padding: 10px 5px;
  text-align: justify;
}
li {
  font-size: 0.95rem;
  line-height: inherit;
}


[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'], textarea {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 2.4375rem;
    padding: 0.5rem;
    border: 1px solid #cacaca;
    margin: 0 0 1rem;
    font-size: 1rem;
    background-color: #fefefe;
    box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
    border-radius: 3px;
}

button {
  display: block;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 0.85em 1em;
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  background-color: #F39D30;;
  color: #fefefe;
}


header {
  background: white;
}
.main {
  display: flex;
  flex-wrap: wrap;
  max-width: 1288px;
  margin: auto;
  align-items: start;
  gap: 1em;
  background: #f4f4f7;
}
.content {
  flex-basis: 500px;
  flex-grow: 9999;
}
.sidebar {
  flex-basis: 300px;
  flex-grow: 1;
  margin: 20px 0 20px 0;
  padding: 11px;
}
.sidebar-blocks a {
  display: grid;
  grid-template-columns: auto auto;
  gap: 1em;
  background: white;
  padding: 17px 17px;
  font-size: 0.9rem;
  border: 1px solid #f0962457;
  border-radius: 7px;
  color: black;
}
.sidebar-blocks hr {
  border: 1px solid white;
  border-radius: 19px;
  margin: 14px 0;
}
.rightblock {
  background: white;
  padding: 17px 17px;
  font-size: 0.9rem;
  line-height: 1.5;
  border: 1px solid #f0962457;
  border-radius: 7px;
}
.rightblock  h2 {
  font-size: 1.1rem;
}
.rightblock  h3 {
  font-size: 1rem;
}
.rightblock > p {
  margin: 10px 0;
}
.rightblock > img {
  border-radius: 50%;
  padding: 13px 45px;
}

footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 4rem;
  background: #f09624;
  padding: 20px 25px;
  line-height: 1.5;
  background-image: url(../images/background-sun.png);
  background-repeat: no-repeat;
  background-position: top center;
}
@media only screen and (orientation:portrait)
{
    footer {background-position: bottom center; }   
}
footer > div {
    display: flex;
}
footer h2 {
  font-size: clamp(1.05rem, 2.3vw, 1.6rem);
  writing-mode: vertical-lr;
}
footer a {
  color: white;
  text-decoration: none;
}


.nav-hamburger {
  height: 92px;
}
/* .hamburger {
  position: fixed;
  top: -378px;
  right: -344px;
  transform-origin: 113px 400px;
  max-width: 480px;
  transition: 0.4s ease-in-out;
  z-index: 100;
} */

/* Hamburger - https://codepen.io/alvarotrigo/pen/ExwgbZv */
label .menu {
  position: fixed;
  right: -100px;
  top: -100px;
  z-index: 100;
  width: 190px;
  height: 190px;
  background: #FFF;
  border-radius: 50% 50% 50% 50%;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  box-shadow: 0 0 0 0 #FFF, 0 0 0 0 #FFF;
  cursor: pointer;
  
}

label .hamburger {
  position: absolute;
  top: 129px;
  left: 43px;
  width: 30px;
  height: 4px;
  background: #f69a25;
  display: block;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

label h1 {
    margin: 10px 0 5px;
    font-size: 1.4rem;
    text-transform: uppercase;
}

label .hamburger:after, label .hamburger:before {
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #f69a25;
}

label .hamburger:before { top: -10px; }

label .hamburger:after { bottom: -10px; }

label input { display: none; }

label input:checked + .menu {
  box-shadow: 0 0 0 100vw #FFF, 0 0 0 100vh #FFF;
  border-radius: 0;
  
}

label input:checked + .menu .hamburger {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  
}

label input:checked + .menu .hamburger:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  bottom: 0;
  
}

label input:checked + .menu .hamburger:before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
  
}

label input:checked + .menu + .mobile-menu-links { visibility: visible; }

label .mobile-menu-links {
  z-index: 200;
  position: fixed;
  top: 50%;
  left: 40%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  visibility: hidden;
  -webkit-transition: .25s 0s ease-in-out;
  transition: .25s 0s ease-in-out;
}

label a {
  margin-bottom: 0.5em;
  display: block;
  color: #f38630;
  text-decoration: none;
  
}


.nav-locations {
  display: none;
  grid-template-columns: auto 130px 130px 130px 155px 130px;
  /* margin: 10px; */
  padding: 16px 10px 0 0;
  justify-items: center;
  font-size: 0.9rem;
}
.nav-links {
  display: none;
  grid-template-columns: 1fr repeat(8, auto);
  gap: 2rem;
  justify-items: center;
  /* margin: 21px 10px 14px; */
  padding: 25px 10px 14px;
  font-size: 0.9rem;
}

@media only screen and (min-width: 980px) {
  .nav-hamburger {
    display: none;
  }
  .nav-locations {
    display: grid;
  }
  .nav-links {
    display: grid;
  }
}

.header-background {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 135px;
}
.header-greece {
  background: url(../images/greece-beach-header.jpg);
}
.header-morocco {
  background: url(../images/fabric-drying-morocco.jpg);
}
.header-uk {
  background: url(../images/uk-fields.jpg);
}

.image-title-box {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #ffffffd6;
  padding: 8px 10px;
  font-family: "Montserrat";
  font-weight: 600;
  border: 1px solid black;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
}

.home-hero {
  background: url(../images/beach-in-greece-with-flowers.jpg);
  height: 70vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  align-content: center;
  padding: 20px 20px 75px;
}
.home-hero > h1 {
  font-size: clamp(1.25rem, 8.9vw, 5.6rem);
  color: white;
}
.home-hero > h2 {
  font-size: clamp(1.05rem, 2.3vw, 1.6rem);
  color: white;
}
.home-main-text {
  margin: 20px 25px 10px 20px;
  font-family: Montserrat;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  text-align: justify;
}
.home-grid-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
  margin: 10px;
  padding: 10px;
  background: #f4f4f7;
}
/* .home-grid-blocks > div {
  background-color: white;
  box-shadow: 5px 5px 10px #eceaea;
  padding: 3px 12px;
} */
.home-grid-blocks > a {
  background-color: white;
  box-shadow: 5px 5px 10px #eceaea;
  padding: 3px 12px;
  color: black;
}

.home-season-dates {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #ffffffd6;
  padding: 8px 10px;
  font-family: "Montserrat";
  font-weight: 600;
  border: 1px solid black;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
}
.home-location-description {
  margin: 13px 0 20px;
  font-family: Montserrat;
  font-size: 0.85rem;
  line-height: 1.4;
  font-weight: 400;
  text-align: justify;
}
/* https://codepen.io/scottzirkel/pen/yNxNME */
.hr-text {
  line-height: 1em;
  position: relative;
  outline: 0;
  border: 0;
  color: black;
  text-align: center;
  height: 1.5em;
  opacity: 0.9;
  margin: 10px 0;
}
.hr-text:before {
  content: "";
  background: linear-gradient(to right, transparent, #818078, transparent);
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
}
.hr-text:after {
  content: attr(data-content);
  position: relative;
  display: inline-block;
  color: black;
  padding: 0 0.5em;
  line-height: 1.5em;
  color: #818078;
  background-color: #fcfcfa;
}

.home-grid-people {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(335px, 1fr));
  gap: 1.2rem;
  margin: 10px;
  padding: 10px;
  background: #f4f4f7;
}
.home-grid-people > div {
  display: grid;
  grid-template-columns: 8vw auto;
  background-color: white;
  box-shadow: 5px 5px 10px #eceaea;
  padding: 3px 12px;
}
.home-grid-people img {
  border-radius: 50%;
  padding: 10px 0;
}
.home-grid-people h3 {
  font-weight: 600;
  padding: 10px 0 0 10px;
}
.home-grid-people p {
  font-size: 0.9rem;
  padding: 10px;
}

.home-grid-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin: 10px;
  padding: 10px;
  background: #f4f4f7;
}
.home-grid-reviews > div {
  background-size: cover;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.home-grid-reviews img {
  width: 50px;
}
.home-grid-reviews p {
  color: white;
  margin: 16px 0;
}

.home-grid-featured-in {
  background: white;
  display: grid;
  /* grid-auto-flow: column; */
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  align-items: center;
  margin: 10px;
  padding: 10px;
}



.page-intro {
  margin: 20px 15px 8px 15px;
}
.page-intro h1 {
  font-size: 1.4rem;
  margin: 6px 0;
}
.page-intro p {
  font-family: Montserrat;
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 400;
  text-align: justify;
}
.page-content {
  background-color: white;
  box-shadow: 5px 5px 10px #eceaea;
  padding: 3px 12px;
  margin: 10px 10px 34px;
}
.page-content-title {
  font-size: 1.1rem;
  margin: 20px 0 20px 15px;
}
.page-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 10px 5px;
  text-align: justify;
}

.page-content li {
  font-size: 0.9rem;
}

/* PRICES */
.price-table-wrapper {
   box-shadow: 5px 5px 10px #eceaea;
}
@media screen and (min-width: 900px) {
  .price-table-wrapper {
  padding: 3px 12px;
  margin: 10px 10px 34px;
  }
}
.price-table {
  margin-left:0;
  background: white;
  max-width: 100vw;
  margin-left: 0;
  margin-right: 0;
}
.price-table thead {
  color: white;
}
.price-table td {
  font-size: 0.9rem;
  padding: 0.1em 0.2rem 0.2rem;
  border-right: 1px white solid;
}
.price-table td:first-child {
  position: sticky;
  left: 0;
  background: #f1f1f1;
}

.price-table b {
  font-weight: 600;
}
.nav-tabs {
  float: left;
  width: 100%;
  margin: 0;
  list-style-type: none;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0!important;
  background: white;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  float: left;
  margin-right: 2px;
  line-height: 1.42857143;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555;
  cursor: default;
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}
.tab-content {
  float: left;
  width: 100%;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .tab-pane.active {
  display: block;
  /* padding: 2.5% 3.5%; */
  background-color: #ffffff;
}
.tab-content > .active {
  display: block;
}

.accom-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 20px 0 0 15px;
}
.greece-accommodation {
  background-color: white;
  box-shadow: 5px 5px 10px #eceaea;
  padding: 3px 12px;
  margin: 10px 10px 34px;
}
.greece-accommodation-info {
  display: grid;
  grid-template-columns: 14vw auto;
}
@media screen and (min-width: 900px) {
  .greece-accommodation-info {
    grid-template-columns: 8vw auto;
  }
}
.greece-accommodation-info img {
  border-radius: 50%;
  max-width: 90%;
  padding: 10px 0;
}
.greece-accommodation-info h3 {
  font-weight: 600;
  padding: 10px 0 0 10px;
}
.greece-accommodation p {
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 10px 5px;
  text-align: justify;
}

.reel-frame {
  background: #f4f4f7;
  padding: 10px;
  margin: 10px -12px 20px;
  max-height: 100vh;
}
.reel {
  display: grid;
  gap: 11px;
  grid-auto-flow: column;
  grid-auto-columns: calc(50% - (var(--gap) / 2));
  grid-auto-columns: 92%;
  overflow-x: scroll;
  /* scroll-snap-type: x proximity; */
  scroll-padding: var(--gap);
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

@media screen and (min-width: 440px) {
  .reel {
    grid-auto-columns: 72%;
  }
}

@media screen and (min-width: 552px) {
  .reel {
    grid-auto-columns: 55%;
  }
}

@media screen and (min-width: 786px) {
  .reel {
    grid-auto-columns: 47%;
  }
}

@media screen and (min-width: 900px) {
  .reel {
    grid-auto-columns: 34%;
  }
}

@media (orientation: portrait) {
  .reel-frame {
    margin: 12px -22px 20px;
  }
  .reel {
    /* grid-auto-columns: 92%; */
    gap: 6px;
    /* scroll-snap-type: x proximity; */
  }
}
.reel::-webkit-scrollbar {
  display: none;
}
.reel > * {
  scroll-snap-align: start;
  max-height: 100vh;
}

.reel-description {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #ffffffd6;
  padding: 8px 10px;
  font-family: "Montserrat";
  font-weight: 600;
  border: 1px solid black;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
}

.reel-frame-big {
  position: fixed;
  z-index: 100;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: fit-content;
  width: 100%;
  background: #f4f4f7;
  border-top: solid 500px rgba(255,255,255,0.8);
  border-bottom: solid 500px rgba(255,255,255,0.8);
  background-clip: padding-box;
  /* padding: 10px; */
  /* margin: 10px -12px 20px; */
}
.reel-big {
  display: grid;
  gap: 10px;
  grid-auto-flow: column;
  /* grid-auto-columns: 85%; */
  /* grid-auto-columns: calc(50% - (var(--gap) / 2)); */
  grid-auto-columns: 75%;
  overflow-x: scroll;
  /* scroll-snap-type: x proximity; */
  scroll-padding: 15px;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.reel-big::-webkit-scrollbar {
  display: none;
}
.reel-big > * {
  scroll-snap-align: start;
  max-height: 100vh;
  overflow-y: hidden;

}

#reel-close {
  position: sticky;
  top: 0;
  right: 0;
  width: 178px;
  height: 51px;
  background: #f9bc43;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 600;
}

/* from Foundation  */
table {
  width: calc(100% - 20px);
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 1.5rem;
  border-radius: 3px;
  background: #e5e5e5;
}
  
  table thead,
  table tbody,
  table tfoot {
    border: 1px solid #f1f1f1;
    background-color: #fefefe; }
  table caption {
    font-weight: bold;
    padding: 0.5rem 0.625rem 0.625rem; }
  table thead,
  table tfoot {
    background: #f8f8f8;
    color: #0a0a0a; }
    table thead tr,
    table tfoot tr {
      background: transparent; }
    table thead th,
    table thead td,
    table tfoot th,
    table tfoot td {
      padding: 0.5rem 0.625rem 0.625rem;
      font-weight: bold;
      text-align: left; }
  table tbody tr:nth-child(even) {
    background-color: #f1f1f1; }
  table tbody th,
  table tbody td {
    padding: 0.5rem 0.625rem 0.625rem; }

@media screen and (max-width: 63.9375em) {
  table.stack thead {
    display: none; }
  table.stack tfoot {
    display: none; }
  table.stack tr,
  table.stack th,
  table.stack td {
    display: block; }
  table.stack td {
    border-top: 0; } }

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto; }

table.hover tr:hover {
  background-color: #f9f9f9; }

table.hover tr:nth-of-type(even):hover {
  background-color: #ececec; }

.table-scroll {
  overflow-x: auto;
}
.table-scroll table {
    width: auto;
}

.holiday-extra-info {
  transition: height .5s ease;
  overflow: hidden;
}
.holiday-extra-info:not(.active) {
  display: none;
}

.info-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 10px;
  margin: 10px 0 15px;
}


/* Social sharing buttons */
.social-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  margin: 10px 5px;
  gap: 5px;
}

.social-buttons a {
  background: #306199;
  color: white;
  font-size: 1.3rem;
  padding: 6px 12px;
  line-height: 1.5;
  border-radius: 3px;
  height: 100%;
}
.social-buttons p {
  font-size: 0.7rem;
}