:root {
  --beige: #E8D9C0;
  --rouge-brique: #C3534B;
  --brun-cafe: #592E28;
  --brun-profond: #312720;
  --vert-olive: #A6AA90;
  --blanc: #FFFFFF;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--blanc);
  color: var(--brun-profond);
  line-height: 1.7;
  overflow-x: hidden;
}

/* HEADER STICKY */
.main-header {
  position: sticky;
  top: 0;
  background-color: var(--blanc);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 0.5rem;
  font-weight: 500;
}

.nav-link {
  color: var(--brun-profond);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--rouge-brique);
  transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link:focus {
  color: var(--rouge-brique);
}

/* HERO */
.hero {
  height: 100vh;
  background: url("./images/photo1.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(49, 39, 32, 0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--blanc);
  animation: fadeIn 1.5s ease;
}

.logo {
  width: 90vw;
  max-width: 340px;
  margin-bottom: 1rem;
}

/* Version mobile */
@media (max-width: 768px) {
  .logo {
    width: 180px;
  }
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- BOUTONS GLOBAUX --- */
.btn, .btn-outline, .btn-map {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1rem;
}

.btn {
  background-color: var(--rouge-brique);
  color: var(--blanc);
}

.btn:hover {
  background-color: var(--brun-cafe);
  color: var(--blanc);
}

.btn-outline {
  color: var(--brun-cafe);
  border: 2px solid var(--brun-cafe);
}

.btn-outline:hover {
  background-color: var(--brun-cafe);
  color: var(--blanc);
}

.btn-map {
  margin-top: 1rem;
  background-color: var(--rouge-brique);
  color: var(--blanc);
}

.btn-map:hover {
  background-color: var(--brun-cafe);
}

/* SECTIONS */
section {
  padding: 3rem 2rem;
  text-align: center;
  color: var(--brun-profond);
  background-color: var(--blanc);
}

.about {
  padding-bottom: 2rem;
}

.menu {
  padding-top: 2rem;
  padding-bottom: 1.8rem;
}

/* Contact & Accès : espacement réduit */
.contact {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--brun-cafe);
  margin-bottom: 1.2rem;
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* CONTACT */
.contact p {
  margin: 0.5rem 0;
}

.contact a {
  color: var(--rouge-brique);
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.contact a:hover {
  opacity: 0.8;
}

/* MAP */
.map iframe {
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  border-radius: 10px;
}

/* --- SECTION MENTIONS --- */
.mentions {
  background-color: var(--blanc);
  color: var(--brun-profond);
  padding: 4rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  animation: fadeIn 1.2s ease;
}

.mentions h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: var(--brun-cafe);
  margin-bottom: 2rem;
}

.mentions p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.mentions a {
  color: var(--rouge-brique);
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.mentions a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--rouge-brique);
  transition: width 0.3s ease;
}

.mentions a:hover::after {
  width: 100%;
}

/* --- BOUTON RETOUR AU SITE (STYLE IDENTIQUE AUX AUTRES BOUTONS) --- */
.mentions .btn {
  background-color: var(--rouge-brique);
  color: var(--blanc);
  border: none;
  border-radius: 30px;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.mentions .btn:hover {
  background-color: var(--brun-cafe);
  color: var(--blanc);
}

/* --- SECTION MENU PDF --- */
.menu-pdf {
  background-color: var(--blanc);
  color: var(--brun-profond);
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeIn 1s ease;
}

.menu-pdf h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: var(--brun-cafe);
  margin-bottom: 2rem;
}

.menu-frame {
  width: 90%;
  height: 90vh;
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 10px;
}

@media (max-width: 768px) {
  .menu-frame {
    width: 100%;
    height: 75vh;
  }
}

/* --- FOOTER --- */
.site-footer {
  background-color: var(--blanc);
  color: var(--brun-cafe);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.site-footer p,
.site-footer .footer-text {
  color: var(--brun-cafe);
}

.site-footer a {
  color: var(--brun-cafe);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 500;
}

.site-footer a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--rouge-brique);
  transition: width 0.3s ease;
}

.site-footer a:hover {
  color: var(--rouge-brique);
}

.site-footer a:hover::after {
  width: 100%;
}

.site-footer .socials {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.site-footer .footer-link {
  font-weight: 600;
}

/* ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  section {
    padding: 2.5rem 1.5rem;
  }
  .navbar {
    gap: 1rem;
  }
  .site-footer {
    font-size: 0.85rem;
  }
  .contact {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}