body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fff;
    color: #222;
    /* Supprimer le padding latéral global qui affecte header/footer */
    /* padding-left: 16px; */
    /* padding-right: 16px; */
}

header {
    background: #944813;
    color: #fff;
    /* Supprimer tout padding/marge latéral éventuel */
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 60px;
}
.logo span {
    font-style: italic;
    font-weight: bold;
    font-size: 1.3em;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    min-height: 48px;           /* 48px minimum tap height */
    padding: 8px 10px;          /* ensure height for short text */
}
nav ul li a.active, nav ul li a:hover {
    color: #ffd700;
}

.hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #222;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.5;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
}
.hero-content h1 {
    font-size: 3em;
    margin: 0 0 10px 0;
}
.hero-content p {
    font-size: 1.3em;
    margin-bottom: 25px;
}
.btn-primary {
    background: #ff9900;
    color: #fff;
    padding: 12px 32px;
    border: none;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition:  0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    min-height: 48px;
    min-width: 48px;
}
.btn-primary:hover {
    background: #cc7a00;
}

.our-story {
    background: #fff;
    padding: 60px 0 40px 0;
    text-align: center;
}
.our-story h2 {
    color: #944813;
    font-size: 2.2em;
    margin-bottom: 40px;
}
.story-content {
    display: flex;
    justify-content: center;
    align-items: center; /* alignement vertical centré */
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}
.story-img {
    width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: block;
}
.story-text {
    flex: 1;
    font-size: 1.1em;
    color: #333;
}
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    font-size: 1em;
    margin-top: 40px;
}

.footer {
    background: #7a3a10;
    color: #fff;
    padding-top: 30px;
    margin-top: 40px;
    /* Supprimer tout padding/marge latéral éventuel */
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.footer-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
    flex-wrap: wrap;
}
.footer-col {
    min-width: 180px;
    font-size: 1em;
    line-height: 1.7;
}
.footer-col strong {
    font-size: 1.1em;
    font-weight: bold;
}
.footer-copyright {
    text-align: center;
    padding: 18px 0 10px 0;
    font-size: 1em;
    color: #fff;
    opacity: 0.95;
}
@media (max-width: 900px) {
    .footer-content {
        gap: 30px;
    }
}
@media (max-width: 700px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-bottom: 0;
    }
    .footer-col {
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 900px) {
    .story-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .story-img {
        width: 90vw;
        max-width: 350px;
        height: auto;
        margin-bottom: 12px;
    }
}
@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 10px 10px;
        gap: 10px;
    }
    .hero-content h1 {
        font-size: 2em;
    }
    .our-story h2 {
        font-size: 1.4em;
    }
}

.menu-section {
    background: #fdf6e3;
    padding: 60px 0 60px 0;
    text-align: center;
}
.menu-section h2 {
    color: #7a3a10;
    font-size: 2.3em;
    margin-bottom: 30px;
}
.menu-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}
.menu-filter {
    background: #fff;
    color: #7a3a10;
    border: none;
    border-radius: 7px;
    padding: 10px 28px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: background 0.2s, color 0.2s;
    min-height: 48px;
    min-width: 48px;
    margin: 4px;               /* extra spacing between targets */
}
.menu-filter.active, .menu-filter:hover {
    background: #7a3a10;
    color: #fff;
}
.menu-card {
    background: #fff;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 36px 32px 32px 32px;
    text-align: left;
}
.menu-category + .menu-category {
    margin-top: 38px;
}
.menu-category h3 {
    color: #a05a1c;
    font-size: 1.5em;
    margin-bottom: 12px;
    border-bottom: 2px solid #f2d18a;
    padding-bottom: 6px;
    font-weight: bold;
}
.menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px;
}
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 48%;
    margin-bottom: 18px;
    gap: 10px;
}
.menu-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 18px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  flex-shrink: 0;
  display: block;
}
.menu-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.menu-item strong {
    font-size: 1.08em;
    color: #222;
}
.menu-item .desc {
    font-size: 0.98em;
    color: #555;
    margin-top: 2px;
}
.menu-item .price {
    color: #a05a1c;
    font-weight: bold;
    font-size: 1.08em;
    white-space: nowrap;
    margin-left: 16px;
}
@media (max-width: 900px) {
    .menu-card {
        padding: 20px 6vw 20px 6vw;
    }
    .menu-item {
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    .menu-list {
        gap: 0;
    }
}
@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 10px 10px;
        gap: 10px;
    }
    nav ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-bottom: 0;
    }
    .footer-col {
        text-align: center;
        margin-bottom: 10px;
    }
}
@media (max-width: 600px) {
    .menu-section {
        padding: 20px 0 20px 0;
    }
    .menu-card {
        padding: 6px 1vw 6px 1vw;
    }
    .menu-section h2 {
        font-size: 1.1em;
    }
    .menu-category h3 {
        font-size: 1em;
    }
    .menu-list {
        flex-direction: column;
        gap: 0;
    }
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 6px;
        margin-bottom: 18px;
    }
    .menu-img {
        width: 48px;
        height: 48px;
        margin-right: 0;
        margin-bottom: 6px;
    }
    .menu-item strong {
        font-size: 1em;
    }
    .menu-item .desc {
        font-size: 0.95em;
    }
    .menu-item .price {
        font-size: 1em;
        margin-left: 0;
    }
    .menu-filters button:not(:first-child) {
        display: none;
    }
    .menu-filters button:first-child {
        width: 100%;
        margin: 0;
        border-radius: 7px;
        font-size: 1.1em;
    }
}

.gallery-section {
    background: #fdf6e3;
    padding: 60px 0 60px 0;
    text-align: center;
}
.gallery-section h2 {
    color: #7a3a10;
    font-size: 2.3em;
    margin-bottom: 30px;
}
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}
.gallery-filter {
    background: #fff;
    color: #7a3a10;
    border: none;
    border-radius: 7px;
    padding: 10px 28px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: background 0.2s, color 0.2s;
    min-height: 48px;
    min-width: 48px;
    margin: 4px;               /* extra spacing between targets */
}
.gallery-filter.active, .gallery-filter:hover {
    background: #7a3a10;
    color: #fff;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.15s;
}
.gallery-item:hover {
    transform: translateY(-4px) scale(1.03);
}
.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    box-shadow: 0 6px 32px 0 rgba(0,0,0,0.18); /* Ajout d'une ombre douce */
}
.gallery-label {
    position: absolute;
    left: 10px;
    bottom: 10px;
    background: #7a3a10;
    color: #fff;
    font-size: 0.95em;
    padding: 2px 12px;
    border-radius: 6px;
    opacity: 0.92;
    pointer-events: none;
}
@media (max-width: 900px) {
    .gallery-grid {
        gap: 14px;
    }
    .gallery-item img {
        height: 130px;
        /* l'ombre reste */
    }
}
@media (max-width: 600px) {
    .gallery-section {
        padding: 30px 0 30px 0;
    }
    .gallery-section h2 {
        font-size: 1.3em;
    }
    .gallery-grid {
        gap: 8px;
        padding: 0 2vw;
    }
    .gallery-item img {
        height: 90px;
        /* l'ombre reste */
    }
}

.findus-section {
    background: #fdf6e3;
    padding: 60px 0 60px 0;
    text-align: center;
}
.findus-section h2 {
    color: #7a3a10;
    font-size: 2.3em;
    margin-bottom: 30px;
}
.findus-map {
    width: 90vw;
    max-width: 900px;
    height: 300px;
    margin: 0 auto 32px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.findus-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 32px 24px;
    text-align: left;
}
.contact-info {
    flex: 1;
}
.contact-info h3 {
    color: #a05a1c;
    font-size: 1.3em;
    margin-bottom: 18px;
}
.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info li {
    margin-bottom: 18px;
    font-size: 1.08em;
    color: #333;
}
.contact-info a {
    color: #7a3a10;
    text-decoration: underline;
}
@media (max-width: 900px) {
    .findus-content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 18px 6vw;
    }
    .findus-map {
        height: 200px;
    }
}
@media (max-width: 600px) {
    .findus-section {
        padding: 30px 0 30px 0;
    }
    .findus-section h2 {
        font-size: 1.3em;
    }
    .findus-content {
        padding: 10px 2vw;
    }
    .findus-map {
        height: 120px;
    }
}

img.ambiance-bright {
  filter: brightness(1.25) contrast(1.1) saturate(0.9);
}

/* Fixe responsive : cache tous les boutons galerie sauf le premier sur mobile */
@media (max-width: 600px) {
  .menu-filters,
  .gallery-filters {
    display: none !important;
  }
}

@media (max-width: 600px) {
    body {
        /* Ne pas appliquer de padding latéral sur body, mais sur le contenu seulement */
        padding-left: 0;
        padding-right: 0;
    }
    .hero,
    .our-story,
    .menu-section,
    .gallery-section,
    .findus-section {
        padding-left: 16px;
        padding-right: 16px;
    }
    /* header et .footer restent bord à bord */
    .footer {
        padding-left: 0;
        padding-right: 0;
    }
    header {
        padding-left: 0;
        padding-right: 0;
    }
    .menu-card,
    .gallery-grid,
    .findus-content,
    .findus-map {
        margin-left: 0;
        margin-right: 0;
    }
}

.gallery-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s;
}
.gallery-modal.open {
  display: flex;
  animation: fadeIn 0.2s;
}
.gallery-modal-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 14px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s, transform 0.2s;
}
.gallery-modal-img.zoom-in {
  opacity: 1;
  transform: scale(1);
}
.gallery-modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 2.5em;
  font-weight: bold;
  cursor: pointer;
  z-index: 1100;
  text-shadow: 0 2px 8px #000;
  transition: color 0.2s;
}
.gallery-modal-close:hover {
  color: #ffd700;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (max-width: 600px) {
  .gallery-modal-img {
    max-width: 98vw;
    max-height: 60vh;
  }
  .gallery-modal-close {
    top: 10px;
    right: 16px;
    font-size: 2em;
  }
}
