/* =====================
   VARIABLES GLOBALES
===================== */
:root {
  --bg: #121212;
  --surface: #1a1a1a;
  --accent: #d4b483;
  --muted: #9a9a9a;
  --text: #eaeaea;
  --container: 1100px;
}

/* =====================
   RESET & BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

/* =====================
   LAYOUT
===================== */
.container {
  width: 90%;
  max-width: var(--container);
  margin: auto;
}

/* =====================
   HEADER / NAV
===================== */
.header {
  background: var(--surface);
  padding: 20px 0;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-weight: 600;
}

.nav a {
  font-size: 20px;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
}

/* =====================
   HERO
===================== */
.hero {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("../img/hero.jpg") center / cover no-repeat;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--muted);
}

/* =====================
   BUTTONS
===================== */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: var(--accent);
  color: #121212;
  border-radius: 4px;
  margin: 5px;
  font-weight: bold;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  color: var(--accent);
  border: 1px solid var(--accent);
  background: #121212;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  color: #121212;
  background-color: var(--accent);
}
/* =====================
   INFOS
===================== */
.infos {
  background: var(--bg);
  padding: 4rem 1rem;
}

.infos-header {
  text-align: center;
  margin-bottom: 3rem;
}

.infos-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.infos-header p {
  color: #666;
  max-width: 500px;
  margin: 0 auto;
}

.infos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.info-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  opacity: 0.9;
  color: var(--accent);
  background: #121212;;
}

.info-icon svg {
  width: 32px;
  height: 32px;
  fill: #b85c38;
}

.info-card h3 {
  margin-bottom: 0.5rem;
}

.info-link,
.phone {
  font-weight: 600;
  text-decoration: none;
  color: #b85c38;
}

.info-link:hover,
.phone:hover {
  text-decoration: underline;
}

.info-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #888;
}
/* =====================
   MENU
===================== */
.menu {
  padding: 60px 0;
}

.menu h2 {
  text-align: center;
  margin-bottom: 40px;
}

.menu section {
  margin-bottom: 40px;
}

.menu h3 {
  border-bottom: 1px solid #d4b483;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.menu-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--bg);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.menu-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.menu-img:hover {
  transform: scale(1.05);
}

.menu-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.prix {
  font-weight: bold;
  color: #8b0000;
}

@media (max-width: 600px) {
  .menu-item {
    flex-direction: column;
    text-align: center;
  }

  .menu-img {
    width: 100%;
    height: 180px;
  }
}
/* =====================
   RESERVATION
===================== */
.reservation {
  padding: 60px 0;
  max-width: 600px;
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.reservation-form label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.reservation-form input,
.reservation-form textarea {
  margin-top: 5px;
  padding: 10px;
  border-radius: 4px;
  border: none;
}

.reservation-form textarea {
  min-height: 80px;
}

/* =====================
   CONTACT
===================== */
.contact {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  margin-top: 5px;
  padding: 10px;
  border-radius: 4px;
  border: none;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}


/* =====================
   FOOTER
===================== */
.footer {
  text-align: center;
  padding: 30px 0;
  font-size: 14px;
  background: var(--bg);
  color: var(--muted);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 96vw !important;
  max-height: 96vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* =====================
   BOUTON BURGER
===================== */
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.burger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #f5f5f5;
  cursor: pointer;
}

/* Bouton réserver flottant - mobile */
.btn-reserver-mobile {
  display: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .btn-reserver-mobile {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);

    background: #c9a24d; /* beige / doré */
    color: #000;
    text-decoration: none;
    font-weight: bold;

    padding: 14px 24px;
    border-radius: 30px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 2000;
  }

  .btn-reserver-mobile:hover {
    opacity: 0.9;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #1a1a1a;

    display: flex;
    flex-direction: column;
    align-items: center;

    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;

    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
  }

  .nav a {
    width: 100%;
    padding: 15px 0;
    text-align: center;
    color: #ffffff;
    border-bottom: 1px solid #333;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .burger {
    display: block;
  }
}