@charset "UTF-8";
/*
Theme Name: Natik Epure
Template: natik
Author: Nathalie TK
Theme URI: 
Author URI: 
Description: Thème WordPress for Natik collection
Version: 1.0.0
License: 
License URI: 
Text Domain: natik-epure
Tested up to: 6.8
Requires PHP: 8.3
*/
@import url("node_modules/@fortawesome/fontawesome-free/css/all.min.css");
:root {
  --main-color: rgb(85, 154, 144);
  --secondary-color: rgb(136, 212, 201);
  --body-color-on-main: white;
  --background-color: white;
  --body-color: #343434;
  --light-body-color: rgb(137, 115, 106);
  --color-on-body-color: white;
  --header-background: linear-gradient(180deg, rgba(85, 154, 144, 0.85) 40%,rgba(137, 115, 106, 0.6)) no-repeat;
  --header-color: white;
  --offer-background-color: #f8f1ee;
  --offer-separation-color: transparent;
  --gallery-background-color: transparent;
  --title-font-family: "Josefin sans";
  --title-font-size-coeff: 1;
  --title-font-weight: 400;
  --title-font-weight-bold: 600;
  --body-font-family: "IBM Plex Sans", "Roboto";
  --body-font-size: 1rem;
  --body-font-weight: 300;
  --body-font-weight-bold: 700;
  --border-radius-amount: 100;
  --mobile-border-radius: 10rem;
  --image-border-radius: 2rem;
}

body {
  margin: 0;
  padding: 0;
  background: var(--background-color);
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.site-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.container, .carousel, .contact__form, .gallery__container, .assets {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 1;
}

.section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.page-content {
  padding: 2.5rem 0 5rem;
}

html {
  font-size: 15px;
}

body {
  color: var(--body-color);
  font-family: var(--body-font-family);
  font-weight: var(--body-font-weight);
  line-height: 1.5;
  font-size: var(--body-font-size);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--title-font-family);
  font-weight: var(--title-font-weight);
  line-height: 1.1;
}

h1 {
  font-size: calc(2.625rem * var(--title-font-size-coeff));
}

h2 {
  font-size: calc(1.75rem * var(--title-font-size-coeff));
}

h3 {
  font-size: calc(1.2rem * var(--title-font-size-coeff));
}

p {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.home {
  text-align: center;
}
.home h1, .home h2, .home h3, .home h4, .home h5, .home h6 {
  margin: 0;
}
.home h2 {
  position: relative;
  display: inline-block;
  margin: 0 auto 2.25rem;
  padding-bottom: 0.375rem;
  color: var(--light-body-color);
}
.home h2:after {
  content: "";
  position: absolute;
  width: 10rem;
  max-width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2.5px;
  background-color: var(--secondary-color);
  transition: 0.3s;
}
.home a,
.home a:active,
.home a:visited,
.home a:focus {
  text-decoration: none;
}

a,
a:active,
a:visited,
a:focus {
  color: currentColor;
  outline: none;
}

.not-found {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.not-found .navbar {
  background: var(--main-color);
}
.not-found h1 {
  font-size: 10rem;
  color: var(--main-color);
  margin-bottom: 0;
}

.page-template-home .navbar {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.navbar {
  background-color: var(--secondary-color);
  color: var(--header-color);
}
.navbar__container {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar__menu-wrapper {
  position: absolute;
  top: 0;
  right: 1.5rem;
  height: 60px;
}
.navbar__menu {
  top: 60px;
  padding: 1.5rem 0.75rem;
  border-radius: 2rem 0 0 0;
}
.navbar .menu-item {
  color: var(--body-color);
  font-family: var(--title-font-family);
  font-size: calc(1rem * var(--title-font-size-coeff));
}
.navbar .menu-item a {
  padding: 0.75rem 1.5rem;
  position: relative;
}
.navbar .menu-item a:after {
  content: "";
  position: absolute;
  width: 8rem;
  max-width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2.5px;
  background-color: var(--secondary-color);
  transition: 0.3s;
}
.navbar .menu-item a:after {
  left: 1.5rem;
  transform: none;
  background-color: transparent;
  transition: background-color 0.2s;
}
.navbar .menu-item a:hover:after {
  background-color: var(--secondary-color);
}

.custom-logo {
  max-height: calc(60px - 1.5rem);
}

.btn,
a.btn:active,
a.btn:visited,
a.btn:focus,
.wp-block-button__link {
  position: relative;
  padding-bottom: 0.375rem;
  font-size: calc(1rem * var(--title-font-size-coeff));
  font-family: var(--title-font-family);
  font-weight: var(--title-font-weight);
  color: currentColor;
  border: 0;
  border-radius: 0;
  background: none;
  padding: 0.375rem 1.5rem;
  cursor: pointer;
}
.btn:hover:after,
a.btn:active:hover:after,
a.btn:visited:hover:after,
a.btn:focus:hover:after,
.wp-block-button__link:hover:after {
  width: 100%;
}
.btn:after,
a.btn:active:after,
a.btn:visited:after,
a.btn:focus:after,
.wp-block-button__link:after {
  content: "";
  position: absolute;
  width: 90%;
  max-width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2.5px;
  background-color: var(--secondary-color);
  transition: 0.3s;
}

.wp-block-button__link {
  margin-bottom: 1.5rem;
}

.header {
  min-height: 35vw;
  padding-top: calc(2.5rem + 60px);
  padding-bottom: calc(2.5rem + var(--mobile-border-radius) * 0.1);
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  color: var(--header-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 var(--mobile-border-radius) var(--mobile-border-radius);
}

.assets {
  max-width: calc(1200px / (var(--border-radius-amount) * 0.01));
  border-radius: var(--mobile-border-radius);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-top: calc(2.5rem + var(--mobile-border-radius) * 0.1);
  padding-bottom: calc(2.5rem + var(--mobile-border-radius) * 0.1);
  overflow: hidden;
  background: linear-gradient(83deg, var(--secondary-color) 0%, var(--main-color) 100%) 0% 0% no-repeat;
  color: var(--body-color-on-main);
}
.assets__container {
  flex-direction: column;
  gap: 6rem;
}

.asset {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.asset__text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.asset__icon {
  width: fit-content;
  height: 4rem;
}
.asset a.btn:active,
.asset a.btn:visited,
.asset a.btn:focus {
  color: var(--body-color-on-main);
}
.asset a.btn:active:after,
.asset a.btn:visited:after,
.asset a.btn:focus:after {
  background-color: var(--background-color);
}

.carousel__button_prev {
  left: 0.75rem;
}
.carousel__button_next {
  right: 0.75rem;
}

.offer .offer__wrapper {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 1s ease;
}

.offer.out-left .offer__wrapper {
  opacity: 0;
  transform: translateX(-100%);
}

.offer.out-right .offer__wrapper {
  opacity: 0;
  transform: translateX(100%);
}

.offer {
  display: flex;
}
.offer:last-child .offer__wrapper {
  border-bottom: 0;
}
.offer__wrapper {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  width: 100%;
  flex-direction: column;
  flex-grow: 1;
  border-bottom: 2px solid var(--offer-separation-color);
}
.offer__card {
  display: flex;
  width: 100%;
  flex-grow: 1;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  background-color: var(--offer-background-color);
  border-radius: 2rem;
}
.offer__section {
  padding-top: 0;
  padding-bottom: 0;
}
.offer__section .section__title {
  margin-top: 2.5rem;
}
.offer__container {
  display: flex;
  flex-direction: column;
}
.offer__img-wrapper {
  width: 100%;
  max-width: 12rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  transform: translateY(-3rem);
  margin: 0 1.5rem -3rem 1.5rem;
  border-radius: var(--image-border-radius);
}
.offer__img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in-out;
}
.offer__text {
  flex-grow: 1;
  padding: 1.5rem;
  min-height: 13rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.offer__text h3 {
  text-transform: uppercase;
}
.offer__text p {
  color: var(--light-body-color);
}
.offer__price {
  font-size: 1.2rem;
  font-family: var(--title-font-family);
  font-weight: var(--title-font-weight-bold);
  color: var(--body-color);
  position: relative;
  padding-top: 0.375rem;
  margin: 1.5rem 0;
}
.offer__price:after {
  content: "";
  position: absolute;
  width: 2rem;
  max-width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2.5px;
  background-color: var(--secondary-color);
  transition: 0.3s;
}
.offer__price:after {
  top: 0;
  bottom: auto;
}

a.offer__card:hover .offer__img {
  transform: scale(1.1);
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about__img {
  aspect-ratio: 1/1;
  border-radius: var(--image-border-radius);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.separation {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 38vw;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.gallery {
  display: flex;
  justify-content: center;
}
.gallery__container {
  max-width: calc(1200px / (var(--border-radius-amount) * 0.01));
  border-radius: var(--mobile-border-radius);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-top: calc(2.5rem + var(--mobile-border-radius) * 0.1);
  padding-bottom: calc(2.5rem + var(--mobile-border-radius) * 0.1);
  overflow: hidden;
  background-color: var(--gallery-background-color);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.gallery__img {
  cursor: pointer;
  background-color: var(--background-color);
  padding: 0.75rem 0.75rem 2.25rem;
  margin: 0.75rem 0.375rem;
}
.gallery__img:hover img {
  transform: scale(1.1);
}
.gallery__img-container {
  overflow: hidden;
}
.gallery img {
  transition: all 0.3s ease-in-out;
  min-width: 100%;
}
.gallery__img-description {
  padding-top: 1.5rem;
  color: var(--light-body-color);
}
.gallery__img-description p {
  margin-bottom: 0;
}

.contact__text {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.contact__booking {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.contact__social-medias {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.375rem;
  justify-content: center;
  align-items: center;
  color: var(--color-on-body-color);
}
.contact__social-link {
  width: 1.75rem;
  height: 1.75rem;
  display: block;
  background-color: var(--body-color);
  border-radius: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.contact__form {
  max-width: calc(1200px / (var(--border-radius-amount) * 0.01));
  border-radius: var(--mobile-border-radius);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-top: calc(2.5rem + var(--mobile-border-radius) * 0.1);
  padding-bottom: calc(2.5rem + var(--mobile-border-radius) * 0.1);
  overflow: hidden;
  background-color: var(--gallery-background-color);
}

.map {
  margin-top: 2.5rem;
  min-height: 30vh;
  margin-bottom: 0;
}

input, textarea {
  display: block;
  width: 100%;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--light-body-color);
  padding: 0.75rem 0 0.375rem;
  font-family: var(--body-font-family);
  font-size: 0.9rem;
  font-weight: var(--body-font-weight);
  margin: 0 0 1.5rem 0;
  background-color: transparent;
}
input::placeholder, textarea::placeholder {
  color: var(--light-body-color);
}
input:focus, textarea:focus {
  outline: none;
}

.js-contact-form__response {
  margin-bottom: 0;
}

.form__response {
  display: block;
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
}
.form__response_success {
  color: #157800;
}
.form__response_error {
  color: #980a0a;
}

.footer {
  text-align: center;
  padding: 1.5rem 0;
  color: var(--light-body-color);
  font-size: 0.825rem;
}
.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .menu-item a {
  text-decoration: underline;
}

@media screen and (min-width: 680px) {
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .offer {
    flex: 0 0 50%;
    width: auto;
    min-width: 0;
  }
  .offer__wrapper {
    border-right: 2px solid var(--offer-separation-color);
    border-bottom: 0;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .offer:last-child .offer__wrapper {
    border-right: 0;
  }
  .offer__container {
    flex-direction: row;
    gap: 0;
    margin-right: -2px;
    margin-left: -2px;
  }
  .asset {
    min-width: 0;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .assets__container_carousel .asset {
    flex: 0 0 50%;
  }
  .assets {
    overflow: hidden;
    border-radius: calc(var(--border-radius-amount) * 0.2rem);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-left: 0;
    padding-right: 0;
  }
  .assets__container {
    flex-direction: row;
    gap: 0;
  }
  .assets__container_fixed {
    justify-content: center;
  }
  .carousel {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .about__content {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
  .about__text {
    flex-basis: calc(66% - 1.5rem);
    text-align: left;
  }
  .about__img-container {
    flex-basis: 33%;
    flex-grow: 1;
  }
  .gallery__container {
    border-radius: calc(var(--border-radius-amount) * 0.2rem);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    border-radius: calc(var(--border-radius-amount) * 0.1rem);
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .gallery__col {
    flex-basis: 50%;
  }
  .gallery__col:nth-child(1), .gallery__col:nth-child(3) {
    margin-top: 4rem;
  }
  .map {
    border-radius: calc(var(--border-radius-amount) * 0.2rem);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    min-height: 55vh;
    margin-bottom: 0;
  }
  .contact__form {
    border-radius: calc(var(--border-radius-amount) * 0.2rem);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    background-color: var(--gallery-background-color);
  }
  .contact__form-fields {
    display: flex;
    gap: 1.5rem;
  }
  .contact__form-fields div:nth-child(1) {
    flex-basis: calc(40% - 1.5rem);
    flex-shrink: 0;
  }
}
@media screen and (min-width: 860px) {
  .navbar__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 1.5rem;
    gap: 1.125rem;
  }
  .navbar__toggle {
    display: none;
  }
  .navbar__menu-wrapper {
    position: relative;
    height: auto;
  }
  .navbar__menu {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: auto;
    padding: 0;
    display: flex;
    justify-content: center;
    border-radius: 0;
    background: none;
    transition: none;
  }
  .navbar .menu-item {
    color: currentColor;
  }
  .navbar .menu-item a {
    padding: 0.375rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navbar .menu-item a:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .custom-logo {
    max-height: 60px;
  }
  .header {
    padding-top: calc(120px + 2.5rem);
    padding-bottom: calc(60px + 2.5rem);
    border-radius: calc(var(--border-radius-amount) * 1rem);
  }
  .header__text {
    margin-top: 3rem;
    max-width: 800px;
  }
  .gallery__container {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
  }
  .gallery__col {
    flex-basis: 33.33%;
  }
  .gallery__col:nth-child(2), .gallery__col:nth-child(3) {
    margin-top: 4rem;
  }
  .gallery__col:nth-child(2) {
    order: -1;
  }
  .gallery__col:nth-child(1) {
    margin-top: 0;
  }
  .map {
    margin: 0 auto;
    max-width: calc(1200px / (var(--border-radius-amount) * 0.01));
  }
  .contact__text {
    text-align: left;
    flex-direction: row;
  }
  .contact__text h2 {
    display: block;
  }
  .contact__text h2:after {
    width: 100%;
  }
  .contact__text > div {
    flex-grow: 1;
  }
  .contact__text > div:first-child {
    flex-basis: calc(66.66% - 3rem);
  }
  .contact__social-medias {
    justify-content: flex-start;
  }
  .separation {
    min-height: 20vw;
    background-attachment: fixed;
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 17px;
  }
  .assets__container_carousel .asset {
    flex: 0 0 33.33%;
  }
  .offer {
    flex: 0 0 33.33%;
  }
}

/*# sourceMappingURL=style.css.map */
