@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Water+Brush&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Water+Brush&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cookie&display=swap");
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translate(-10rem);
  }
  80% {
    transform: translate(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translate(20rem);
  }
  80% {
    transform: translate(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInLCA {
  0% {
    transform: translateY(6rem);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes AmineSlogan {
  0% {
    opacity: 1;
    transform: translateY(3rem);
    color: #000;
  }
  100% {
    color: #faedcd;
    opacity: 1;
    transform: translate(0);
  }
}
* {
  margin: 0;
  padding: 0;
  user-select: none;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html {
  font-size: 100%;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.heading-primary {
  color: #fff;
  backface-visibility: hidden;
  padding-bottom: 3rem;
  font-family: "Water Brush", cursive;
  display: block;
  font-size: 6rem;
  font-weight: 400;
  animation-name: moveInLeft;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
}

.heading-primary-sub {
  color: #fff;
  display: block;
  font-size: 2rem;
  font-weight: 500;
  animation: moveInRight 5s ease-in-out;
  text-align: center;
}

h2 {
  font-family: "Cookie", cursive;
  display: block;
  font-size: 3rem;
  font-weight: 400;
  animation-name: moveInLeft;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  text-align: center;
  padding: 20px;
}

h3 {
  font-family: "Cookie", cursive;
  display: block;
  font-size: 2rem;
  font-weight: 400;
  animation-name: moveInRight;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  text-align: center;
}

@media screen and (max-width: 1300px) {
  .heading-primary {
    font-size: 4em;
  }
}
@media screen and (max-width: 1000px) {
  .heading-primary {
    font-size: 3em;
  }
}
.u-center-text {
  text-align: center;
}

.u-margin-bottom-small {
  margin-bottom: 2rem;
}

.u-margin-bottom-mediun {
  margin-bottom: 4rem;
}

.u-margin-bottom-big {
  margin-bottom: 8rem;
}

.u-margin-top-small {
  margin-top: 2rem;
}

.u-margin-top-mediun {
  margin-top: 4rem;
}

.u-margin-top-big {
  margin-top: 8rem;
}

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.btn--white {
  background-color: #fff;
  color: #777;
}
.btn--white::after {
  background-color: #fff;
}
.btn--blue {
  background-color: #333333;
  color: #fff;
}
.btn--blue::after {
  background-color: #333333;
}
.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
.btn--animated {
  animation: moveInBottom 0.5s ease-out 0.75s;
  animation-fill-mode: backwards;
}

.btn-text:link, .btn-text:visited {
  font-size: 1.6rem;
  color: #faedcd;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #faedcd;
  padding: 3px;
  transition: all 0.2s;
}
.btn-text:hover {
  background-color: #faedcd;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}

.contact-message {
  text-align: center;
}

.contact-form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 80%;
  margin: auto;
}

.contact-form input, .contact-form textarea {
  font-size: 1.5rem;
  font-family: inherit;
  color: inherit;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-bottom: 3px solid #333333;
  display: block;
  transition: all 0.3s;
}

.zone__input {
  max-width: 100%;
  margin-bottom: 2rem;
}

.form__textarea {
  height: 10rem;
  width: 100%;
  resize: vertical;
}

.zone__input:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #faedcd;
}

.zone__input:focus:invalid {
  border-bottom: 3px solid #035e80;
}

.zone__input::-webkit-input-placeholder {
  color: #999;
}

.form__textarea:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #faedcd;
}

.form__textarea:focus:invalid {
  border-bottom: 3px solid #035e80;
}

.form__textarea::-webkit-input-placeholder {
  color: #999;
}

.form__label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 2rem;
  margin-top: 0.7rem;
  display: block;
  transition: all 0.3s;
}

.zone__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}

.form__textarea:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}

.form__envoyer {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-info .item {
  width: calc(33% - 2rem);
  max-height: 40vh;
  background-color: #333333;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s linear;
  text-align: center;
}
@media only screen and (max-width: 56.25em) {
  .contact-info .item {
    width: 100%;
    margin: 1rem 0;
  }
}

.contact-info .item:hover {
  background-color: #faedcd;
}

.contact-info .item img {
  margin: 3rem;
  width: 3.2rem;
  height: 3.2rem;
}

.row {
  margin: 0 auto;
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 56.25em) {
  .row:not(:last-child) {
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .row {
    max-width: 50rem;
    padding: 0 3rem;
  }
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^=col-] {
  float: left;
}
.row [class^=col-]:not(:last-child) {
  margin-right: 6rem;
}
.row .col-1-of-2 {
  width: calc((100% - 6rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 2 * 6rem) / 3);
}
.row .col-2-of-3 {
  width: calc(2 * ((100% - 2 * 6rem) / 3) + 6rem);
}
.row .col-1-of-4 {
  width: calc((100% - 3 * 6rem) / 4);
}
.row .col-2-of-4 {
  width: calc(2 * ((100% - 3 * 6rem) / 4) + 6rem);
}
.row .col-3-of-4 {
  width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem);
}

header {
  height: 75vh;
  background-image: url(../img/background-header.jpg);
  background-size: cover;
  background-position: top;
  position: relative;
}

.accueil {
  width: 100%;
  position: relative;
}

.accueil-content {
  position: absolute;
  right: 100px;
  top: 300px;
}

.text-box {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.text-box_annexe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.animation-lca {
  width: 3rem;
  height: 3rem;
  animation-name: moveInLCA;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

.img-smartphone {
  display: none;
  padding: 10px;
}

@media screen and (max-width: 900px) {
  header {
    height: auto;
    background: #333333;
    position: relative;
  }
  .img-smartphone {
    display: block;
    padding: 10px;
  }
  .accueil-content {
    position: relative;
    width: 100%;
    text-align: center;
    right: 0;
    top: 0;
  }
}
footer {
  width: 100%;
  background-color: #333;
}

.main-content {
  display: flex;
}

.main-content .box {
  flex-basis: 50%;
  padding: 10px 20px;
}

.footer__logo {
  height: 5rem;
  margin-top: 1rem;
}

.box h2 {
  margin-top: 3rem;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.box h3 {
  font-family: "Montserrat", sans-serif;
  margin-top: 1rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.box .content {
  margin: 20px 0 0 0;
  position: relative;
}

.box .content:before {
  position: absolute;
  content: "";
  top: -10px;
  height: 2px;
  width: 100%;
  background: #fff;
}

.box .content:after {
  position: absolute;
  content: "";
  height: 2px;
  width: 15%;
  background: #faedcd;
  top: -10px;
}

.left .content p {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #fff;
  text-align: justify;
  width: 80%;
}

.center .content p {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #fff;
  text-align: justify;
  width: 100%;
}

.center .content .social {
  margin: 20px 0 0 0;
  text-align: center;
}

.center .content .social a {
  padding: 0 10px;
}

.center .content .social a span {
  height: 50px;
  width: 50px;
  color: #000;
  background-color: #faedcd;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  border-radius: 5px;
  transition: 0.3s;
}

.center .content .social a span:hover {
  color: #faedcd;
  background-color: #000;
}

.right .liens a span {
  color: #fff;
  font-size: 1rem;
}

.right .liens a {
  text-decoration: none;
}

.right .liens a span:hover {
  color: #faedcd;
}

.bottom center {
  padding: 5px;
  font-size: 1rem;
  background: #faedcd;
}

.bottom center span {
  color: #000;
  font-size: 1rem;
}

.bottom center a {
  font-size: 1rem;
  color: #333;
  text-decoration: none;
}

.bottom center a:hover {
  text-decoration: underline;
}

.icon-social {
  width: 50px;
}

@media screen and (max-width: 900px) {
  footer {
    position: relative;
    bottom: 0px;
  }
  .main-content {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .main-content .box {
    margin: 5px 0;
    padding: 10px 10px;
  }
  .left .content p {
    width: 100%;
  }
}
/* Navigation - Menu */
nav {
  width: 100%;
  height: 70px;
  margin: auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
}

.logo {
  width: 150px;
  cursor: pointer;
  margin-left: 50px;
  margin-top: 100px;
  z-index: 100;
}

.liste-nav {
  height: 70px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
  position: fixed;
  z-index: 100;
  padding-right: 50px;
}

.item-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-nav a {
  font-size: 15px;
  color: #f1f1f1;
  text-decoration: none;
  margin: 0 20px;
}

.item-nav a::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 0%;
  height: 2px;
  background: #faedcd;
  transition: all 0.2s ease-in-out;
}

.item-nav a:hover::after {
  width: 100%;
}

.logo-menu {
  display: none;
}

@media screen and (max-width: 1100px) {
  .logo {
    width: 70px;
    margin-left: 10px;
    margin-top: 10px;
  }
  .logo-menu {
    display: block;
    width: 50px;
    z-index: 200;
    margin-right: 20px;
  }
  .liste-nav {
    display: none;
    flex-direction: column;
    background: #333333;
  }
  .liste-nav.active {
    display: block;
  }
  .item-nav {
    height: 70px;
    background: #333333;
  }
  .item-nav:nth-child(1) {
    margin-top: 70px;
  }
}
@media screen and (max-width: 400px) {
  .title {
    font-size: 1.5rem;
  }
}
.menu-midi {
  width: 100%;
  height: auto;
  margin: auto;
}

.vague-haut {
  width: 100%;
  height: 350px;
  background-image: url(../img/fond-vague.png);
  background-size: cover;
  background-position: bottom;
  position: relative;
}

.vague-bas {
  width: 100%;
  height: 350px;
  background-image: url(../img/fond-vague-bas.png);
  background-size: cover;
  background-position: top;
  position: relative;
  z-index: 1000;
}

.img-menu {
  width: 450px; /* Ajustez la taille selon vos besoins */
  height: 450px; /* Ajustez la taille selon vos besoins */
  overflow: hidden;
  border-radius: 50%; /* Rend l'image circulaire */
}

.img-menu img {
  width: 100%;
  height: auto;
  display: block;
  z-index: 1000;
}

.text-menu-white h2 {
  background: #fff;
  color: #333333;
  font-size: 4em;
}

.text-menu-black h2 {
  color: #fff;
  background: #333333;
  font-size: 4em;
}

.lesplats {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.content-article {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.content-article p {
  width: 600px;
  text-align: justify;
  padding: 40px;
}

.content-article img {
  width: 300px;
  height: auto;
  padding: 10px;
}

.plat {
  text-align: center;
}

.plat img {
  width: 200px;
  height: 200px;
}

.milieu-menu {
  width: 100%;
  background: #333333;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.content-formulemidi {
  width: 600px;
  margin: auto;
}

.content-formulemidi p {
  text-align: justify;
  padding: 40px;
  font-size: 20px;
  color: #fff;
  text-align: center;
}

.lesplus {
  width: 100%;
  height: 50vh;
  background-image: linear-gradient(to right bottom, rgba(233, 234, 233, 0.8), rgba(224, 223, 223, 0.8)), url(../img/background-terrasse.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-lesplus {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #333;
}

.card-lesplus {
  width: 300px;
}

.card-lesplus p {
  text-align: justify;
}

.img-box-notrecarte {
  width: 600px;
  height: auto;
  padding: 10px;
}

.img-box-notrecarte img {
  width: 600px;
}

.text-box-notrecarte h3 {
  background: linear-gradient(90deg, transparent 0%, #f1f1f1 10%, white 50%, #f1f1f1 90%, transparent 95%);
  text-align: center;
  font-size: 24px;
  padding: 10px;
}

.content-notrecarte h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 5px;
}

.content-notrecarte p {
  padding: 5px;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.milieu-cocktails {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: start;
}

.img-box-cocktails {
  width: 600px;
  height: auto;
  padding: 10px;
}

.img-box-cocktails img {
  width: 600px;
}

.text-box-cocktails h3 {
  background: linear-gradient(90deg, transparent 0%, #f1f1f1 10%, white 50%, #f1f1f1 90%, transparent 95%);
  text-align: center;
  font-size: 24px;
  padding: 10px;
}

.content-cocktails h4 {
  color: #000;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 5px;
}

.content-cocktails p {
  padding: 5px;
  color: #000;
  font-size: 12px;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .menu-midi {
    width: 100%;
  }
  .text-box-cocktails {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .content-article,
  .content-lesplus,
  .lesplats,
  .milieu-menu,
  .milieu-cocktails,
  .lesplus {
    flex-direction: column;
  }
  .img-box-cocktails,
  .img-box-cocktails,
  .img-box-notrecarte {
    width: 100%;
  }
  .content-formulemidi {
    width: 100%;
  }
  .content-article p {
    width: 100%;
    padding: 10px;
  }
  .lesplus {
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.vins p {
  text-align: center;
}

.cartesdesvins {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 5px;
}

.vins-wrapper {
  width: 650px;
  padding: 5px;
}

.content-qualite,
.content-vins {
  width: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}

.content-qualite .box-text {
  width: 450px;
  padding: 2px;
}

.content-qualite .Qte {
  width: 100px;
  padding: 4px;
  text-align: center;
}

.content-vins .box-text {
  width: 450px;
  padding: 2px;
}

.content-vins .box-text h4 {
  font-size: 15px;
}

.content-vins .box-text span {
  font-size: 12px;
}

.content-vins .box-text p {
  font-size: 12px;
}

.content-vins .prix {
  width: 100px;
  padding: 2px;
}

@media screen and (max-width: 900px) {
  .cartesdesvins {
    flex-direction: column;
    align-items: center;
  }
  .vins-wrapper {
    width: 350px;
  }
  .content-qualite,
  .content-vins {
    width: 350px;
  }
  .content-vins .box-text {
    width: 350px;
  }
  .content-vins .box-text h4 {
    font-size: 12px;
  }
  .content-vins .box-text span {
    font-size: 10px;
  }
  .content-vins .box-text p {
    font-size: 10px;
  }
  .content-vins .prix h4 {
    font-size: 12px;
  }
  .Qte h4 {
    font-size: 10px;
  }
  .Qte p {
    font-size: 8px;
  }
}

/*# sourceMappingURL=tams-editions.css.map */
