/*
Theme Name: Klevie
Theme URI:
Author: Klevie
Author URI: https://klevie.com/
Description: Tailor-made by Klevie
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* GENERAL */
:root {
  --navy: #020b26;
  --off-white: #ecebea;
  --text-dark: #020b26;
  --font-bromwich: "Bromwich W01 Regular";
  --font-bonvivant: "BonVivant-Regular";
  --font-suisse: "SuisseRegular";
  --container: 1200px;
}

@font-face {
  font-family: 'BonVivant-Regular';
  src: url(./assets/fonts/BonVivant-Regular.woff2) format('woff2');
  font-style: normal;
}
@font-face {
  font-family: 'SuisseRegular';
  src: url(./assets/fonts/SuisseRegular.otf) format('opentype');
  font-style: normal;
}
*, *::before, *::after {box-sizing: border-box;}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  background-color: var(--off-white);
  scroll-padding-top: 144px!important;
}

h1 {
  font-size: 1px;
  position: absolute;
  left: -9999px;
  top: -9999px;
  pointer-events: none;
}

.lang-switcher {
  position: fixed;
  max-width: var(--container);
  width: 100%;
  right: 16px;
  top: 32px;
  z-index: 999;
  display: flex;
  justify-content: flex-end;
  gap: 4px;
}
.lang-switcher a {
  font-family: var(--font-suisse);
  font-size: 18px;
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
}
.lang-switcher a.active {
  font-weight: bold;
}

#hero {
  position: relative;
}
#hero>img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  object-position: 50% 55%;
}
#hero .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: var(--container);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
#hero .content .logo {
  object-fit: contain;
  display: block;
  height: auto;
  width: 200px;
}
#hero .content .title {
  font-family: var(--font-bromwich);
  font-size: 44px;
  line-height: 1.1;
  color: var(--navy);
  margin: 12px 0 0;
}
#hero .content .title p {
  margin: 24px 0 0;
}
#hero .content .title em {
  font-family: var(--font-bonvivant);
  font-size: 78px;
  line-height: 0.4;
}
#hero .content .subtitle {
  font-family: var(--font-suisse);
  font-size: 22px;
  color: var(--navy);
  margin: 0;
}
#hero .content a {
  background-color: var(--navy);
  font-size: 20px;
  font-family: var(--font-bromwich);
  padding: 10px 24px;
  border: none;
  text-decoration: none;
  color: var(--off-white);
  text-transform: uppercase;
}

#logos {
  background-color: var(--navy);
  padding: 24px 0;
}
#logos .inner {
  display: flex;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
  justify-content: space-between;
}
#logos .inner .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 200px;
}
#logos .inner .logo img {
  height: 80px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
}
#logos .inner .logo p {
  font-family: var(--font-suisse);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--off-white);
  text-align: center;
  margin: 0;
}

#slider {
  position: relative;
  max-width: 1200px;
  margin: 80px auto 40px;
}
#slider .glide__slide {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#slider .glide__slide img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
#slider .glide__slide .cursive {
  font-family: var(--font-bromwich);
  font-size: 20px;
  padding: 0;
  color: var(--navy);
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}
#slider .glide__slide .cursive p {
  margin: 0;
  line-height: 1.2;
}
#slider .glide__slide .cursive em {
  font-size: 34px;
  font-family: var(--font-bonvivant);
  text-transform: none;
  line-height: 0;
}
#slider .glide__arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 180px);
  display: flex;
  justify-content: space-between;
}
#slider .glide__arrows .glide__arrow {
  border: none;
  background-color: transparent;
  cursor: pointer;
}
#slider .glide__arrows .glide__arrow img {
  width: 70px;
  height: auto;
}

.reservar-btn-free {
  margin: 40px 0;
  background-color: var(--navy);
  font-size: 20px;
  font-family: var(--font-bromwich);
  padding: 10px 24px;
  border: none;
  text-decoration: none;
  color: var(--off-white);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  width: fit-content;
}

#footer {
  max-width: var(--container);
  margin: 40px auto 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0;
  border-top: 1px solid var(--navy);
  font-family: var(--font-bromwich);
  font-size: 14px;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
}
#footer em {
  font-family: var(--font-bonvivant);
  font-size: 22px;
  line-height: 0;
  text-transform: none;
}
#footer a {
  color: var(--navy);
  text-decoration: none;
}

@media (max-width: 1367px) {
  :root {
    --container: 94vw;
  }
  #slider {
    max-width: 80vw;
  }
  #slider .glide__arrows {
    width: 98vw;
  }
  #logos .inner {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 24px;
  }
  #slider .glide__arrows .glide__arrow img {
    width: 52px;
  }
}
@media (max-width: 767px) {
  #hero .content .logo {
    width: 160px;
  }
  #hero .content .title {
    font-size: 32px;
  }
  #hero .content .title em {
    font-size: 52px;
  }
  #hero .content .subtitle {
    display: none;
  }
  #hero .content a {
    font-size: 16px;
  }
  #hero>img {
    height: 340px;
  }
  #logos .inner .logo {
    gap: 8px;
    max-width: 150px;
  }
  #hero .content {
    gap: 16px;
  }
  #footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    margin: 20px auto;
  }
  #footer .left p {
    margin: 0;
  }
  #slider {
    max-width: 100vw;
    margin: 60px auto 20px;
  }
  #slider .glide__arrows {
    display: none;
  }
  #slider .glide__slide:first-child {
    margin-left: 32px;
  }
  .reservar-btn-free {
    margin: 0 0 40px;
    font-size: 16px;
  }
  #logos .inner {
    row-gap: 16px;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    justify-items: center;
    align-items: start;
  }
  #logos .inner .logo {
    max-width: 100%;
  }
  #logos .inner .logo:last-child {
    grid-column: 1 / -1;
  }
  #logos .inner .logo img {
    height: 60px;
    max-width: 92px;
    width: auto;
  }
}
@media (max-width: 420px) {
  #footer {
    font-size: 12px;
  }
}
@media (max-width: 375px) {
  #logos .inner .logo p {
    font-size: 14px;
  }
  #footer {
    font-size: 11px;
  }
}