/* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Import Google Fonts dans le HTML */

body {
  font-family: 'Lato', Arial, sans-serif;
  background: linear-gradient(180deg, rgba(80,180,80,0.18) 0%, rgba(255,255,255,0.7) 40%, rgba(180,80,80,0.10) 100%), #f8f6f1;
  color: #2d2d2d;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 380px;
  z-index: -3;
  background: url('a.png') center top/cover no-repeat;
  opacity: 0.65;
  filter: blur(1.5px) brightness(1.08);
}
body::after {
  content: '';
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: 420px;
  z-index: -3;
  background: url('a.png') center bottom/cover no-repeat;
  opacity: 0.55;
  filter: blur(1.5px) brightness(1.08);
}
.bg-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  background: rgba(255,255,255,0.82);
  pointer-events: none;
}
.garden-deco {
  position: fixed;
  left: 2vw;
  top: 60vh;
  width: 110px;
  z-index: 0;
  opacity: 0.8;
  filter: drop-shadow(0 4px 12px #bfa76a44);
}
.garden-deco2 {
  position: fixed;
  right: 2vw;
  top: 18vh;
  width: 90px;
  z-index: 0;
  opacity: 0.7;
  filter: drop-shadow(0 4px 12px #bfa76a44);
}
header {
  background: transparent;
  padding: 2.5rem 1rem 1.5rem 1rem;
  text-align: center;
  box-shadow: none;
  border-bottom: none;
  position: relative;
}
.logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 0.7rem;
  border-radius: 50%;
  border: 2px solid #bfa76a;
  background: #fff;
  box-shadow: 0 0 24px #bfa76a33, 0 0 0 #fff0;
  transition: box-shadow 0.3s;
}
.logo:hover {
  box-shadow: 0 0 48px #bfa76a99, 0 0 0 #fff0;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  letter-spacing: 7px;
  color: #a09d9d;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-shadow: 0 2px 24px #bfa76a22;
  position: relative;
  top: 32px;
}
h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #bfa76a;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 16px #bfa76a22;
}
main {
  background: rgba(5, 5, 5, 0.98);
  border-radius: 32px;
  box-shadow: 0 12px 48px #00000022, 0 0 0 #fff0;
  padding: 2.5rem 2.5rem;
  max-width: 950px;
  margin: 2.5rem auto;
  animation: fadeIn 1.2s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.about {
  margin-bottom: 2.5rem;
}
.about h2 {
  color: #bfa76a;
  margin-bottom: 0.7rem;
  font-size: 1.5rem;
}
.about p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #ffffff;
}
.btn {
  display: inline-block;
  background: linear-gradient(90deg, #bfa76a 0%, #e5c07b 100%);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 2rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1.08rem;
  box-shadow: 0 0 24px #bfa76a33, 0 0 0 #fff0;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #bfa76a22;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #00eaff44 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.btn:hover {
  background: linear-gradient(90deg, #a77a2d 0%, #d1b06e 100%);
  box-shadow: 0 0 48px #bfa76a99, 0 0 0 #fff0;
  transform: scale(1.04);
}
.btn:hover::after {
  opacity: 1;
}
footer {
  text-align: center;
  padding: 1.2rem;
  background: transparent;
  box-shadow: none;
  border-top: none;
}
footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Lato', Arial, sans-serif;
  text-shadow: 0 2px 8px #bfa76a22;
  transition: color 0.2s;
}
footer a:hover {
  color: #2d2d2d;
}
.back {
  position: absolute;
  left: 1.5rem;
  top: 2rem;
  color: #bfa76a;
  text-decoration: none;
  font-size: 1.1rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.2s;
  text-shadow: 0 2px 8px #bfa76a22;
}
.back:hover {
  color: #2d2d2d;
}
.menu-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  animation: fadeIn 1.2s cubic-bezier(.4,0,.2,1);
}
.menu-section h2 {
  width: 100%;
  text-align: left;
  margin-bottom: 1.2rem;
  font-size: 2rem;
  color: #ffffff;
  text-shadow: 0 2px 16px #bfa76a22;
}
.menu-item {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 32px #bfa76a22, 0 0 0 #fff0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 260px;
  padding: 1.5rem 1rem 1.7rem 1rem;
  text-align: center;
  border: 2px solid #f3e9dc;
  transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
  position: relative;
  overflow: hidden;
  animation: popIn 0.8s cubic-bezier(.4,0,.2,1);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.92) translateY(40px); }
  to { opacity: 1; transform: none; }
}
.menu-item:hover {
  box-shadow: 0 8px 48px #bfa76a55, 0 0 0 #fff0;
  transform: translateY(-6px) scale(1.05);
  border: 2.5px solid #bfa76a;
}
.menu-item img {
  width: 180px;
  height: 130px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 0.8rem;
  border: 4px solid #fff;
  box-shadow: 0 2px 24px #bfa76a33;
  transition: box-shadow 0.3s, border 0.3s;
}
.menu-item:hover img {
  box-shadow: 0 8px 32px #bfa76a99;
  border: 4px solid #f3e9dc;
}
.menu-item h3 {
  font-size: 1.25rem;
  color: #bfa76a;
  margin-bottom: 0.4rem;
  font-family: 'Playfair Display', serif;
  text-shadow: 0 2px 16px #bfa76a22;
}
.menu-item p {
  font-size: 1.05rem;
  color: #3d3d3d;
  margin-bottom: 0.6rem;
  font-family: 'Lato', Arial, sans-serif;
}
.price {
  font-family: 'Fira Mono', 'Consolas', monospace;
  font-weight: bold;
  color: #fff;
  font-size: 1.15rem;
  background: linear-gradient(90deg, #bfa76a 0%, #e5c07b 100%);
  padding: 0.2rem 0.7rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px #bfa76a33;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s;
}
.menu-item:hover .price {
  background: linear-gradient(90deg, #e5c07b 0%, #bfa76a 100%);
  color: #bfa76a;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  animation: fadeIn 1.2s cubic-bezier(.4,0,.2,1);
}
.contact-form label {
  font-weight: 700;
  color: #bfa76a;
  font-family: 'Lato', Arial, sans-serif;
  text-shadow: 0 2px 8px #bfa76a22;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 2px solid #f3e9dc;
  border-radius: 8px;
  font-size: 1.05rem;
  background: #fff;
  font-family: 'Lato', Arial, sans-serif;
  color: #2d2d2d;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px #bfa76a22;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid #bfa76a;
  outline: none;
  box-shadow: 0 4px 16px #bfa76a33;
}
.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}
.contact-info {
  background: #fff;
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: 0 2px 12px #bfa76a33;
  border: 2px solid #f3e9dc;
  animation: fadeIn 1.2s cubic-bezier(.4,0,.2,1);
}
.contact-info h2 {
  color: #bfa76a;
  margin-bottom: 0.7rem;
  font-family: 'Playfair Display', serif;
  text-shadow: 0 2px 16px #bfa76a22;
}
.contact-info p {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.05rem;
  color: #3d3d3d;
}
@media (max-width: 900px) {
  main {
    padding: 1rem 0.5rem;
    margin: 1.2rem 0;
  }
  .menu-section {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .menu-item {
    width: 100%;
    max-width: 340px;
  }
  .back {
    position: static;
    display: block;
    margin-bottom: 1rem;
  }
  body::before, body::after {
    height: 180px;
    background-size: cover;
  }
  .garden-deco, .garden-deco2 {
    width: 60px;
  }
} 

/* --- Animated Wavy Underline for Section Titles --- */
.menu-section h2 {
  position: relative;
  overflow: visible;
}
/* Remove wavy underline animation under section titles */
.menu-section h2::after {
  display: none !important;
}

/* --- Animated Header Slide In --- */
header {
  animation: headerSlideIn 1.2s cubic-bezier(.4,0,.2,1);
}
@keyframes headerSlideIn {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: none; }
}

/* --- Floating Animation for Menu Images --- */
.menu-item img {
  animation: floatImg 3.5s ease-in-out infinite alternate;
}
@keyframes floatImg {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px) scale(1.04); }
}

/* --- Mediterranean Animated Background Accent --- */
body::before {
  animation: bgWaveDown 12s ease-in-out infinite alternate;
}
body::after {
  animation: bgWaveUp 14s ease-in-out infinite alternate;
}
@keyframes bgWaveDown {
  0% { background-position-y: 0; }
  100% { background-position-y: 40px; }
}
@keyframes bgWaveUp {
  0% { background-position-y: 0; }
  100% { background-position-y: -40px; }
}

/* --- Enhanced Button Ripple Effect --- */
.btn {
  position: relative;
  overflow: hidden;
}
.btn:active::after {
  opacity: 1;
  transition: opacity 0.4s, transform 0.4s;
  transform: scale(2.5);
}

/* --- Fade-in on Scroll for Menu Items --- */
.menu-item {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.menu-item.visible {
  opacity: 1;
  transform: none;
} 

/* --- Map Section Styling --- */
.map-title {
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  font-size: 1.3rem;
  margin: 2.2rem 0 0.7rem 0;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 0 2px 16px #bfa76a22;
}
.map-container {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 2.5rem auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 32px #bfa76a33, 0 0 0 #fff0;
  border: 2px solid #f3e9dc;
  background: #fff;
  animation: fadeIn 1.2s cubic-bezier(.4,0,.2,1);
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: none;
} 

/* --- Center Section Titles --- */
.menu-section h2 {
  text-align: center;
}

/* --- Center Animated SVGs --- */
.plats-anim, .boisson-anim {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
  margin-top: -0.5rem;
}
.plats-anim svg {
  display: block;
  max-width: 140px;
  width: 100%;
  height: auto;
}
.boisson-anim svg {
  display: block;
  max-width: 80px;
  width: 100%;
  height: auto;
}

/* --- Restore Plats Animation --- */
.steam {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  opacity: 0.7;
  animation: steamRise 2.2s ease-in-out infinite;
}
.steam1 { animation-delay: 0s; }
.steam2 { animation-delay: 0.7s; }
.steam3 { animation-delay: 1.4s; }
@keyframes steamRise {
  0% { stroke-dashoffset: 24; opacity: 0.1; }
  30% { opacity: 0.7; }
  60% { stroke-dashoffset: 0; opacity: 0.7; }
  100% { stroke-dashoffset: 24; opacity: 0.1; }
}

/* --- Restore Boisson Animation --- */
.bubble {
  opacity: 0.7;
  animation: bubbleRise 2.5s ease-in-out infinite;
}
.bubble1 { animation-delay: 0s; }
.bubble2 { animation-delay: 0.8s; }
.bubble3 { animation-delay: 1.4s; }
.bubble4 { animation-delay: 1.9s; }
@keyframes bubbleRise {
  0% { transform: translateY(0) scale(1); opacity: 0.7; }
  60% { opacity: 1; }
  80% { transform: translateY(-18px) scale(1.2); opacity: 0.8; }
  100% { transform: translateY(-28px) scale(0.7); opacity: 0; }
}

/* --- Center Contact Button --- */
.btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
} 
