:root {
  --padding-150: 80px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  max-width: 1920px;
  margin: auto;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  background-color: white;
}

* {
  box-sizing: border-box;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* width */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  overflow: hidden;
}

/* Track */
::-webkit-scrollbar-track {
  background: white;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #2E2E2E;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: black;
}

.width {
  padding: 0 5%;
  margin: 0 auto;
}

a,
p,
li,
span {
  font-family: "Inter", sans-serif;
}

span {
  display: inline-block;
}

span.accent {
  display: inline-block;
  color: #700910;
  margin-bottom: 12px;
  position: relative;
  font-family: "Caveat", cursive;
  font-weight: 400;
  font-size: 34px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  padding: 0 18px;
}
span.accent:before, span.accent:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #C02A33;
}
span.accent:before {
  left: 0;
}
span.accent:after {
  right: 0;
}

h1 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 58px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #2E2E2E;
  margin-bottom: 50px;
}

h2 {
  font-size: 52px;
  font-family: "Inter", sans-serif;
  line-height: 110%;
  margin-bottom: 30px;
  font-weight: 700;
  color: #C02A33 !important;
}

p b {
  font-weight: 800;
  font-style: italic;
}

p,
li, a {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0em;
  color: #2E2E2E;
  text-decoration: none;
}

a.btn {
  display: inline-block;
  width: auto;
  background-color: #700910;
  border: 1px solid #700910;
  color: #FFFFFF;
  padding: 11px 21px;
  text-transform: uppercase;
  transition: all 0.3s linear;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  border-radius: 16px;
}
a.btn:hover {
  color: #700910;
  background-color: transparent;
}

.phone-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #700910;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  animation: pulse 2s infinite;
  transition: background-color 0.3s ease;
}
.phone-button:hover {
  background-color: #218838;
}
.phone-button svg {
  width: 24px;
  height: 24px;
  fill: white;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(112, 9, 16, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
  animation: fadeBg 1s ease-in-out forwards;
}
.loader.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.loader .logo {
  animation: scaleLogo 1s ease-in-out infinite alternate;
}
.loader .logo img {
  width: 700px;
  height: auto;
}

@keyframes fadeBg {
  0% {
    background-color: rgb(255, 255, 255);
  }
  100% {
    background-color: rgba(255, 255, 255, 0.6);
  }
}
@keyframes scaleLogo {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding: 15px 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s linear;
  background-color: white;
}
header .width {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .width .logo {
  width: auto;
  height: 80px;
  position: relative;
  z-index: 100;
  transition: all 0.3s linear;
}
header .width .logo img {
  transition: all 10s linear;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .width nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .width nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
}
header .width nav ul li {
  margin-left: 15px;
  transition: all 0.3s linear;
  position: relative;
  padding-bottom: 8px;
  padding-top: 8px;
}
header .width nav ul li .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
header .width nav ul li .dot.red {
  background-color: #C02A33;
}
header .width nav ul li .dot.green {
  background-color: #C02A33;
}
header .width nav ul li:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background-color: transparent;
  width: 0%;
  height: 3px;
  border-radius: 16px;
  transition: all 0.7s linear;
}
header .width nav ul li:hover:after {
  background-color: #C02A33;
  width: 100%;
}
header .width nav ul li:hover a {
  color: #700910;
}
header .width nav ul li:last-child {
  position: initial;
}
header .width nav ul li:last-child:after {
  display: none;
}
header .width nav ul li:last-child:after a {
  color: initial;
  font-weight: initial;
}
header .width nav ul li a {
  color: #2E2E2E;
  transition: all 0.1s linear;
  text-transform: uppercase;
  text-align: left;
  font-family: "Inter", sans-serif;
  transition: all 0.3s linear;
}
header .width nav ul li.accent {
  font-weight: 700;
  background-color: #700910;
  border: 1px solid #700910;
  color: #FFFFFF;
  border-radius: 21px;
  padding: 11px 21px;
  margin-left: 58px;
}
header .width nav ul li.accent:hover {
  background-color: transparent;
}
header .width nav ul li.accent:hover a {
  color: #700910;
}
header .width nav ul li.accent a {
  color: #FFFFFF;
}

#menu-btn {
  background-color: transparent;
  cursor: pointer;
  border: none;
  width: 40px;
  height: 60px;
  position: relative;
  z-index: 100;
  display: none;
}
#menu-btn.activeColor span,
#menu-btn.activeColor span::before,
#menu-btn.activeColor span::after {
  content: "";
  width: 40px;
  height: 1px;
  display: block;
  position: absolute;
  background-color: #700910;
}
#menu-btn.active span {
  width: 35px;
  background-color: transparent;
}
#menu-btn.active span::before {
  transform: translateY(-10px) rotate(135deg);
  background-color: #700910;
  width: 35px;
}
#menu-btn.active span::after {
  transform: translateY(10px) rotate(-135deg);
  background-color: #700910;
  width: 35px;
}
#menu-btn span,
#menu-btn span::before,
#menu-btn span::after {
  content: "";
  width: 45px;
  height: 1px;
  display: block;
  position: absolute;
  background-color: #700910;
}
#menu-btn span::before {
  top: 10px;
  transition: all 0.5s linear;
}
#menu-btn span::after {
  bottom: 10px;
  transition: all 0.5s linear;
}

#accueil {
  height: 100vh;
  max-height: 900px;
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#accueil .left {
  width: 40%;
}
#accueil .left p {
  max-width: 46ch;
  margin-bottom: 66px;
}
#accueil .right {
  width: 60%;
}
#accueil .right img {
  width: 100%;
}
#accueil .right2 {
  width: 50%;
  margin-top: 150px;
}
#accueil .right2 img {
  transform: rotate(-2deg);
}

#accueil2 {
  height: 100vh;
  max-height: 900px;
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#accueil2 .left {
  width: 40%;
}
#accueil2 .left a.btn {
  margin-top: 35px;
}
#accueil2 .right {
  width: 50%;
}
#accueil2 .right img {
  transform: rotate(-2deg);
}

.flex {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex .left {
  width: 30%;
}
.flex .right {
  width: 60%;
  height: 550px;
}
.flex .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1.2);
  }
}
.margin-top {
  margin-top: 150px;
}

#quick-menu, #petits-dejeuners, #evenements {
  padding-top: 50px;
  padding-bottom: 150px;
  text-align: center;
  background-color: #FFFFFF;
}
#quick-menu p, #quick-menu h2, #petits-dejeuners p, #petits-dejeuners h2, #evenements p, #evenements h2 {
  color: #2E2E2E;
}
#quick-menu p, #petits-dejeuners p, #evenements p {
  max-width: 80ch;
  margin: auto;
}
#quick-menu span, #petits-dejeuners span, #evenements span {
  color: #700910;
}
#quick-menu .container, #petits-dejeuners .container, #evenements .container {
  margin-top: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#quick-menu .container img, #petits-dejeuners .container img, #evenements .container img {
  width: 22%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  transition: all 0.3s linear;
}
#quick-menu a.btn, #petits-dejeuners a.btn, #evenements a.btn {
  margin-top: 100px;
}

#evenements .anim-top img {
  margin-top: 50px;
  width: 100px;
  opacity: 0.6;
}
#evenements .container {
  margin-top: 50px;
}

#petits-dejeuners, #evenements {
  padding-bottom: 0px;
}

#icons {
  padding-top: 50px;
  padding-bottom: 150px;
  text-align: center;
}
#icons .container {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}
#icons .container .left, #icons .container .right {
  display: flex;
  flex-direction: column;
  width: 35%;
  margin: 40px;
}
#icons .container .left .box, #icons .container .right .box {
  width: 100%;
  margin-bottom: 80px;
}
#icons .container .left .box .img, #icons .container .right .box .img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  margin: 0 auto;
  opacity: 0.6;
  margin-bottom: 25px;
}
#icons .container .left .box .img img, #icons .container .right .box .img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#icons .container .left .box h3, #icons .container .right .box h3 {
  margin: 20px 0;
  font-family: "Caveat", cursive;
  font-weight: 400;
  font-size: 52px;
  line-height: 76px;
  letter-spacing: 0%;
  color: #700910;
}
#icons .container .separator {
  width: 3px;
  border-radius: 16px;
  background-image: repeating-linear-gradient(to bottom, #C02A33, #C02A33 5px, transparent 5px, transparent 10px);
}

#notre-historie {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#notre-historie .left {
  width: 60%;
  height: 650px;
}
#notre-historie .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#notre-historie .right {
  width: 35%;
}
#notre-historie .right a.btn {
  margin-top: 40px;
}

#notre-historie2 {
  margin-top: 100px;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#notre-historie2 .left {
  width: 50%;
  height: 550px;
}
#notre-historie2 .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#notre-historie2 .right {
  width: 40%;
}
#notre-historie2 .right a.btn {
  margin-top: 40px;
}

.fullImg {
  height: 80vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.menu {
  padding-top: 0px;
}
.menu h2 {
  text-align: center;
}
.menu hr {
  width: 350px;
  text-align: center;
  margin: 0 auto 100px auto;
}
.menu .menu-item {
  margin: 40px 0;
}
.menu .menu-item .menu-line {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}
.menu .menu-item .menu-line .dish-name {
  white-space: nowrap;
  margin-right: 10px;
}
.menu .menu-item .menu-line .dots {
  flex-grow: 1;
  border-bottom: 1px dashed #d8d5d5;
  margin: 0 10px;
}
.menu .menu-item .menu-line .price {
  white-space: nowrap;
  color: #700910;
}
.menu .menu-item .ingredients {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #666;
  margin-left: 5px;
  margin-top: 4px;
}

#emporter {
  margin-top: 50px;
  padding-top: 150px;
  text-align: center;
  background-color: #FFFFFF;
}
#emporter p, #emporter h2 {
  color: #2E2E2E;
  margin-bottom: 10px;
}
#emporter p a, #emporter h2 a {
  font-weight: bold;
  color: #700910;
}
#emporter span {
  color: #700910;
}
#emporter h3 {
  margin: 20px;
  color: #2E2E2E;
}
#emporter h3 a {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #700910;
}
#emporter .container {
  margin-top: 100px;
  margin-bottom: 70px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
#emporter .container img {
  width: 23%;
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  margin-bottom: 30px;
}

#reserver {
  margin-top: 150px;
}
#reserver.flex .left a {
  color: #700910;
  font-weight: 700;
  font-style: italic;
}

#galerie {
  margin-top: 150px;
}
#galerie .title {
  text-align: center;
  margin-bottom: 50px;
}
#galerie .title h2 {
  max-width: 25ch;
  margin-left: auto;
  margin-right: auto;
}
#galerie .title p {
  max-width: 70ch;
  margin: 0 auto;
}
#galerie .gallery-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
#galerie .gallery-nav button {
  padding: 10px 20px;
  font-family: "Inter", sans-serif;
  margin: 0 10px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #2E2E2E;
  color: #2E2E2E;
  cursor: pointer;
  transition: background-color 0.3s;
}
#galerie .gallery-nav button:hover, #galerie .gallery-nav button.active {
  background-color: #2E2E2E;
  color: #FFFFFF;
}
#galerie .gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
#galerie .gallery .gallery-category {
  display: none;
  flex-wrap: wrap;
  gap: 20px;
}
#galerie .gallery .gallery-category .gallery-item {
  width: calc(33.33% - 20px);
  overflow: hidden;
  height: 450px;
}
#galerie .gallery .gallery-category .gallery-item img {
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  -o-object-position: 95%;
     object-position: 95%;
  cursor: pointer;
  -o-object-fit: cover;
     object-fit: cover;
}
#galerie .gallery .gallery-category .gallery-item img:hover {
  transform: scale(1.05);
}
#galerie .gallery .gallery-category.active {
  display: flex;
  animation: fadeIn 0.3s ease-in-out;
}
#galerie .full-screen-gallery {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 100;
}
#galerie .full-screen-gallery .fs-gallery-content {
  position: relative;
}
#galerie .full-screen-gallery .fs-gallery-content img {
  max-width: 90vw;
  max-height: 90vh;
}
#galerie .full-screen-gallery .fs-gallery-content .fs-navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
#galerie .full-screen-gallery .fs-gallery-content .fs-navigation button {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}
#galerie .full-screen-gallery .fs-gallery-content .fs-navigation button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
#galerie .full-screen-gallery .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

footer {
  text-align: center;
}
footer .logo {
  width: 450px;
  margin: 15px auto;
}
footer .container {
  background-color: #FFFFFF;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 100px;
}
footer .container .box {
  width: 33%;
  text-align: center;
}
footer .container .box img {
  width: 40px;
  opacity: 0.6;
}
footer .container .box h3 {
  color: #2E2E2E;
  font-size: 18px;
  margin: 20px 0;
}
footer .container .box p, footer .container .box a {
  color: #2E2E2E;
}

/******************************/
@media only screen and (max-width: 1700px) {
  .width {
    padding: 0 4%;
    margin: 0 auto;
  }

  header .width .logo {
    height: 70px;
}

  header .width nav ul li a {
    font-size: 15px;
  }
  header .width nav ul li.accent {
    margin-left: 25px;
  }
}
@media only screen and (max-width: 1610px) {
  h1 {
    font-size: 58px;
  }
  h2 {
    font-size: 42px;
  }
  header .width .logo {
    height: 55px;
  }
  header .width nav ul li {
    margin-left: 8px;
  }
  header .width nav ul li.accent {
    margin-left: 20px;
    padding: 5px 10px;
  }
  header .width nav ul li a {
    font-size: 14px;
  }
  #quick-menu .container img,
  #petits-dejeuners .container img,
  #emporter .container img, #evenements .container img {
    width: 22%;
    height: 250px;
  }
  #notre-historie .left,
  #notre-historie2 .left {
    height: auto;
  }
  footer .logo {
    width: 350px;
  }
}
@media only screen and (max-width: 1350px) {
  header .width .logo {
    height: 45px;
  }
  header .width nav ul li.accent {
    margin-left: 10px;
    padding: 6px 12px;
  }
  header .width nav ul li a {
    font-size: 13px;
  }
  h1 {
    font-size: 48px;
    line-height: 120%;
  }
  h2 {
    font-size: 36px;
    line-height: 120%;
  }
  #homePage #quick-menu, #homePage #petits-dejeuners {
    padding-bottom: 50px;
    padding-top: 0px;
  }
  #icons {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  span.accent {
    white-space: nowrap;
    font-size: 28px;
  }
  #icons .container .left, #icons .container .right {
    width: 40%;
  }
  #icons .container .left .box h3, #icons .container .right .box h3 {
    margin: 10px 0;
    font-size: 42px;
    line-height: 120%;
  }
}
@media only screen and (max-width: 1190px) {
  .margin-top {
    margin-top: 100px;
  }
  #menu-btn {
    display: block;
  }
  h1 {
    font-size: 42px;
    line-height: 120%;
  }
  header .width .logo {
    height: 80px;
  }
  header .width nav {
    position: fixed;
    right: -100%;
    margin-top: 40px;
    padding: 40px;
    background-color: white;
    top: 0;
    height: calc(100vh - 40px);
    width: 50vw;
    transition-duration: 0.6s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .width nav ul {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
  }
  header .width nav li {
    display: block;
    text-align: center;
    width: -moz-max-content;
    width: max-content;
  }
  header .width nav li:last-child {
    margin-top: 40px;
  }
  header .width nav li a {
    font-size: 16px !important;
  }
  header .width nav.active {
    right: 0;
  }
  #accueil {
    margin-top: 50px;
  }
  #accueil .right img {
    width: 100%;
  }
  #accueil2 {
    flex-direction: column;
    height: auto;
    max-height: auto;
    margin-top: 150px;
    margin-bottom: 100px;
  }
  #accueil2 .left {
    width: 100%;
    order: -1;
  }
  #accueil2 .right {
    margin-top: 50px;
    width: 80%;
  }
  #emporter {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 850px) {
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 34px;
  }
  #accueil {
    flex-direction: column;
    position: initial;
    margin-top: 150px;
    height: auto;
    max-height: auto;
    margin-bottom: 100px;
  }
  #accueil .left {
    width: 100%;
  }
  #accueil .right {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  #accueil .right img {
    width: 100%;
    margin: 0 auto;
  }
  #accueil2 {
    margin-bottom: 50px;
  }
  .flex {
    flex-direction: column;
    margin-top: 100px;
  }
  .flex .left {
    width: 100%;
  }
  .flex .right {
    width: 100%;
    height: auto;
    margin-top: 50px;
  }
  .flex .right iframe {
    height: 300px;
  }
  #quick-menu, #petits-dejeuners, #emporter, #evenements {
    padding-bottom: 50px;
  }
  #quick-menu .container, #petits-dejeuners .container, #emporter .container, #evenements .container {
    margin-top: 80px;
    flex-wrap: wrap;
    justify-content: center;
  }
  #quick-menu .container img, #petits-dejeuners .container img, #emporter .container img, #evenements .container img {
    width: 40%;
  }
  #quick-menu .container img:nth-child(3), #quick-menu .container img:nth-child(1), #petits-dejeuners .container img:nth-child(3), #petits-dejeuners .container img:nth-child(1), #emporter .container img:nth-child(3), #emporter .container img:nth-child(1), #evenements .container img:nth-child(3), #evenements .container img:nth-child(1) {
    transform: rotate(0deg);
    margin: 20px;
  }
  #quick-menu a.btn, #petits-dejeuners a.btn, #emporter a.btn, #evenements a.btn {
    margin-top: 50px;
  }
  #icons .container {
    margin-top: 50px;
  }
  #icons .container .box {
    width: 80%;
  }
  #notre-historie, #notre-historie2 {
    flex-direction: column;
  }
  #notre-historie .left, #notre-historie2 .left {
    width: 100%;
    margin-top: 50px;
  }
  #notre-historie .right, #notre-historie2 .right {
    width: 100%;
    order: -1;
  }
  #notre-historie .right:after, #notre-historie2 .right:after {
    top: -60%;
    opacity: 0.1;
  }
  #emporter h3 a {
    font-size: 18px;
  }
  footer .container {
    padding: 0px 5% 30px 5%;
    flex-wrap: wrap;
  }
  footer .container .box {
    width: 100%;
    margin: 30px;
  }
  .loader .logo img {
    width: 350px;
    height: auto;
  }
  #galerie .gallery .gallery-category .gallery-item {
    height: 250px;
  }
  #galerie .gallery-nav {
    flex-wrap: wrap;
  }
  #galerie .gallery-nav button {
    width: 40%;
  }
  footer .logo {
    width: 300px;
  }
}
@media only screen and (max-width: 560px) {
  .margin-top {
    margin-top: 50px;
  }
  h1 {
    margin-bottom: 30px;
  }
  span.accent {
    font-size: 22px;
  }
  .flex {
    flex-direction: column;
    margin-top: 50px;
  }
  .flex .right iframe {
    height: 300px;
  }
  .phone-button {
    bottom: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
  }


  .loader .logo img {
    width: 80vw;
    height: auto;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 18px;
  }
  h3 a {
    font-size: 18px;
  }
  header .width .logo {
    height: 70px;
    margin-right: 20px;
  }
  header .width nav {
    position: fixed;
    margin-top: 40px;
    right: -100%;
    height: 100vh;
    padding: 60px;
    width: 100vw;
  }
  #accueil {
    margin-bottom: 70px;
  }
  #accueil .left p {
    margin-bottom: 30px;
  }
  #accueil .right {
    margin: 50px auto 0;
  }
  #accueil .right img {
    width: 90%;
  }
  #accueil2 .right {
    margin-top: 50px;
    width: 100%;
  }
  #icons .container {
    flex-wrap: wrap;
  }
  #icons .container .left, #icons .container .right {
    width: 100%;
    margin: 0px 5%;
  }
  #icons .container .left .box, #icons .container .right .box {
    margin-bottom: 40px;
  }
  #icons .container .left .box h3, #icons .container .right .box h3 {
    font-size: 34px;
  }
  #quick-menu .container, #petits-dejeuners .container, #emporter .container, #evenements .container {
    margin-top: 50px;
  }
  #quick-menu .container img, #petits-dejeuners .container img, #emporter .container img, #evenements .container img {
    width: 45%;
    height: 150px;
    margin: 5px !important;
  }
  #notre-historie2 {
    margin-top: 60px;
  }
  .menu {
    padding-top: 20px;
  }
  .menu .menu-item .menu-line {
    font-size: 13px;
  }
  .menu .menu-item .menu-line .dots {
    margin: 0 5px;
  }
  .menu .menu-item .menu-line .price {
    font-size: 12px;
  }
  .menu .menu-item .ingredients {
    font-size: 13px;
  }
  #emporter {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #galerie .gallery .gallery-category {
    gap: 10px;
    justify-content: center;
  }
  #galerie .gallery .gallery-category .gallery-item {
    height: 150px;
    width: 45%;
  }
  footer .container {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 390px) {
  header .width .logo {
    height: 50px;
    margin-right: 10px;
  }
  header .width nav {
    overflow: scroll;
    height: 100%;
    min-height: 100dvh;
  }
  header .width nav ul {
    gap: 0;
    margin-top: 90px;
    padding-bottom: 50px;
  }
  header .width nav li a {
    font-size: 16px !important;
  }
  header .width nav ul li:after {
    bottom: 5px;
    height: 2px;
  }
  h1 {
    font-size: 38px;
    line-height: 110%;
  }
  span.accent {
    font-size: 20px;
    padding: 0 10px;
  }
}/*# sourceMappingURL=style.css.map */