@charset "UTF-8";

/* ==========================================
   VARIABLES GLOBALES & RÉINITIALISATION
   ========================================== */
:root {
  --color-green: #153322;
  --color-gold: #9d8147;
  --color-gold-bright: #d1a851;
  --color-black: #000000;
  --color-white: #ffffff;
  --font-titles: 'Black Han Sans', sans-serif;
  --font-text: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-text);
  background-color: var(--color-black);
  color: var(--color-white);
  line-height: 1.6;
}

/* Base uniforme : anciens textes noirs devenus blancs */
p, .card-text, .story-text p, .welcome-text p, .instagram-text {
  font-family: var(--font-text);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-white);
}

/* Titres globaux avec leurs couleurs d'origine */
h1, h2, h3, 
.welcome-title, .menu-title, .story-title, .takeaway-title, .instagram-title, .contact-title {
  font-family: var(--font-titles);
  font-weight: 400;
}

/* ==========================================
   BARRE DE NAVIGATION FIXE (HEADER)
   ========================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: transparent;
  z-index: 1000;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.main-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-green);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  z-index: -1;
  transform: translateY(-100%);
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-container {
  position: relative; /* Nécessaire pour caler les éléments enfants */
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-title {
  font-family: var(--font-titles);
  color: var(--color-gold);
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

/* 1. Réseaux sociaux calés tout à droite */
.header-socials {
  position: absolute;
  right: 25px; /* Aligné sur la droite du header */
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-socials a {
  color: var(--color-gold);
  width: 22px;
  height: 22px;
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-socials a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.header-socials svg {
  width: 100%;
  height: 100%;
}

.main-header.scrolled::before {
  transform: translateY(0);
}

/* ==========================================
   SECTION 1 : HERO BANNER
   ========================================== */
.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-frame {
  position: relative;
  width: 100%;
  max-width: 1800px;
  height: 680px;
  background-image: url('Photos/Baniere.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; 
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 500px;
  height: 500px;
}

.dragon-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: 
    drop-shadow(0 0 10px rgba(0, 0, 0, 0.9))
    drop-shadow(0 0 25px rgba(0, 0, 0, 0.9))
    drop-shadow(0 0 45px rgba(0, 0, 0, 0.8));
}

/* ==========================================
   SECTION 2 : BARRE D'INFORMATIONS
   ========================================== */
.info-bar-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 25px;
  color: var(--color-gold);
  background-color: var(--color-black);
}

.info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.info-address,
.info-hours {
  font-weight: 400;
}

/* ==========================================
   SECTION 3 : BIENVENUE
   ========================================== */
.welcome-section {
  padding: 110px 20px 340px 20px;
  text-align: center;
  z-index: 1;
  background-color: var(--color-black);
}

.welcome-container {
  max-width: 850px;
  margin: 0 auto;
}

.welcome-title {
  position: relative;
  display: inline-block;
  font-size: 3.2rem;
  color: var(--color-green);
  margin-bottom: 40px;
  line-height: 1;
  z-index: 1;
}

.welcome-title::before {
  content: attr(data-bg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%) scale(1.15);
  color: var(--color-gold);
  font-size: 4.2rem;
  z-index: -1;
  white-space: nowrap;
  opacity: 0.95;
}

.welcome-text p {
  color: var(--color-white);
  margin-bottom: 18px;
}

.welcome-text p:last-child {
  margin-bottom: 0;
}

/* ==========================================
   SECTION 4 : MENU RESTAURANT
   ========================================== */
.menu-section {
  width: 100%;
  color: var(--color-white);
  z-index: 10;
  overflow: visible;
}

.menu-header-bg {
  background-color: var(--color-green);
  padding: 60px 20px 40px 20px;
  text-align: center;
  position: relative;
}

.menu-gallery {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

.gallery-item {
  width: 210px;
  height: 510px;
  flex-shrink: 0;
  transition: margin-top 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(3) {
  margin-top: -300px;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(4) {
  margin-top: -150px;
}

.menu-title {
  position: relative;
  display: inline-block;
  font-size: 3.2rem;
  color: var(--color-white);
  margin-top: 65px;
  margin-bottom: 45px;
  line-height: 1;
  z-index: 1;
}

.menu-title::before {
  content: attr(data-bg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%) scale(1.15);
  font-size: 4.2rem;
  color: var(--color-gold);
  z-index: -1;
  white-space: nowrap;
  opacity: 0.95;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-text);
  font-size: 1.05rem;
  font-weight: 300;
  cursor: pointer;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  line-height: 1.25;
  text-align: center;
}

.tab-btn:hover {
  opacity: 0.8;
}

.tab-btn.active {
  border-bottom: 2px solid var(--color-gold);
}

.menu-content-bg {
  padding: 60px 20px 80px 20px;
  background-color: var(--color-black);
}

.menu-items-container {
  max-width: 900px;
  margin: 0 auto;
}

.category-panel {
  display: none;
  flex-direction: column;
  gap: 28px;
}

.category-panel.active {
  display: flex;
}

.menu-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  position: relative;
  width: 100%;
}

.dish-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.dish-name {
  font-family: var(--font-text);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.dish-name::after {
  content: '';
  flex: 1;
  height: 5px;
  background: repeating-linear-gradient(
    to bottom,
    var(--color-gold-bright) 0px,
    var(--color-gold-bright) 1px,
    transparent 1px,
    transparent 3px,
    var(--color-gold-bright) 3px,
    var(--color-gold-bright) 4px
  );
  opacity: 0.6;
}

.dish-description {
  font-family: var(--font-text);
  font-size: 0.9rem;
  font-weight: 300;
  color: #cccccc;
  line-height: 1.4;
  padding-right: 20px;
}

.dish-price {
  font-family: var(--font-text);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-gold-bright);
  white-space: nowrap;
  align-self: flex-start;
}

/* ==========================================
   SECTION 5 : GALERIE ANIMÉE AU SCROLL
   ========================================== */
.scrolling-gallery-section {
  padding: 100px 0;
  overflow: hidden;
  width: 100%;
  background-color: var(--color-black);
}

.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  width: 100%;
  will-change: transform;
}

.gallery-card {
  width: 250px;
  height: 250px;
  flex-shrink: 0;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================
   SECTION : HENRI FOOD COURT
   ========================================== */
.foodcourt-section {
  width: 100%;
  overflow: hidden;
  background-color: var(--color-black);
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background-color: var(--color-black);
  padding: 12px 0;
  display: flex;
}

.top-marquee,
.bottom-marquee {
  border-top: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.marquee-track span {
  font-family: var(--font-titles);
  font-size: 2rem;
  color: var(--color-gold);
  font-weight: 400;
  padding-right: 15px;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.top-marquee .marquee-track {
  animation: scrollRight 25s linear infinite;
}

.bottom-marquee .marquee-track {
  animation: scrollLeft 25s linear infinite;
}

.foodcourt-banner {
  position: relative;
  width: 100%;
  height: 480px;
  background-image: url('Photos/Photo-ubereats-horizontal.png'); 
  background-size: cover;
  background-position: center;
}

.foodcourt-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.foodcourt-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.foodcourt-content p {
  color: var(--color-white);
  font-family: var(--font-text);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   SECTION 6 : NOTRE HISTOIRE
   ========================================== */
.story-section {
  padding: 80px 20px;
  background-color: var(--color-black);
  color: var(--color-white);
}

.story-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.story-image-wrapper {
  flex: 1;
  max-width: 500px;
}

.story-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.story-content {
  flex: 1;
  text-align: center;
  max-width: 550px;
}

.story-title {
  position: relative;
  display: inline-block;
  font-size: 3.2rem;
  color: var(--color-green);
  margin-bottom: 35px;
  line-height: 1;
  z-index: 1;
}

.story-title::before {
  content: attr(data-bg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%) scale(1.12);
  color: var(--color-gold);
  font-size: 4.2rem;
  z-index: -1;
  white-space: nowrap;
  opacity: 0.95;
}

.story-text p {
  color: var(--color-white);
  margin-bottom: 20px;
}

.story-text p:last-child {
  margin-bottom: 0;
}

/* ==========================================
   SECTION 7 : VENTE À EMPORTER
   ========================================== */
.takeaway-section {
  background-color: var(--color-green);
  padding: 140px 20px 90px 20px;
  text-align: center;
  color: var(--color-white);
}

.takeaway-title {
  position: relative;
  display: inline-block;
  font-size: 3.2rem;
  color: var(--color-white);
  margin-bottom: 70px;
  margin-top: 50px;
  line-height: 1;
  z-index: 1;
}

.takeaway-title::before {
  content: attr(data-bg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%) scale(1.15);
  color: var(--color-gold);
  font-size: 4.2rem;
  z-index: -1;
  white-space: nowrap;
  opacity: 0.95;
}

.takeaway-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.takeaway-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-wrapper {
  width: 130px;
  height: 130px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.icon-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: scale(2.2); 
  transition: transform 0.3s ease;
}

#retrait {
  opacity: 0.6;
}

.card-title {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 15px;
  white-space: nowrap;
}

.card-text {
  color: #e0e0e0;
  max-width: 300px;
  font-size: 1.05rem;
}

.card-text strong {
  font-weight: 600;
  color: var(--color-white);
}

/* ==========================================
   SECTION 8 : SUIVEZ-NOUS (INSTAGRAM / TIKTOK)
   ========================================== */
.instagram-section {
  padding: 100px 0 0 0;
  background-color: var(--color-black);
  text-align: center;
  width: 100%;
  overflow: hidden;
  margin-top: 90px;
  margin-bottom: 90px;
}

.instagram-container {
  max-width: 800px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

.instagram-title {
  position: relative;
  display: inline-block;
  font-size: 3.2rem;
  color: var(--color-green);
  margin-bottom: 30px;
  line-height: 1;
  z-index: 1;
}

.instagram-title::before {
  content: attr(data-bg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%) scale(1.15);
  color: var(--color-gold);
  font-size: 4.2rem;
  z-index: -1;
  white-space: nowrap;
  opacity: 0.95;
}

.instagram-text {
  color: var(--color-white);
  margin-bottom: 30px;
}

/* 2. Écartement des boutons Instagram et TikTok augmenté */
.instagram-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px; /* Espacement de 35px entre les deux boutons */
  flex-wrap: wrap;
  margin-top: 10px;
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 400;
  font-size: 1.1rem;
  border: 1px solid var(--color-gold);
  padding: 10px 24px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.instagram-btn svg {
  width: 20px;
  height: 20px;
}

.instagram-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.instagram-feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  gap: 0;
  margin-top: 50px;
}

.insta-post {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
}

.insta-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 51, 34, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--color-gold);
  font-size: 1.8rem;
}

.insta-post:hover img {
  transform: scale(1.08);
}

.insta-post:hover .insta-overlay {
  opacity: 1;
}

/* ==========================================
   SECTION 9 : CARTE & CONTACT
   ========================================== */
.map-contact-section {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 520px;
  background-color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 80px;
  overflow: visible; 
  margin: 80px auto 140px auto;
}

.map-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  filter: contrast(0.95);
}

.contact-card {
  position: relative;
  z-index: 2;
  background-color: var(--color-green);
  width: 320px;
  padding: 40px 30px;
  text-align: center;
  color: var(--color-white);
  margin-top: 0; 
  transform: translateY(100px);
}

.contact-title {
  font-size: 2.3rem;
  margin-bottom: 25px;
  color: var(--color-white);
  letter-spacing: -0.5px;
}

.contact-phone {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-phone a {
  color: var(--color-white);
  text-decoration: none;
}

.contact-address {
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 25px;
  color: #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 auto 25px auto;
}

.contact-hours {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 25px;
  color: var(--color-white);
}

.contact-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}

.contact-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================
   STYLES FOOTER
   ========================================== */
.site-footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 40px 20px 25px 20px;
  font-family: var(--font-text);
  z-index: 10;
  position: relative;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top-line-wrapper {
  display: flex;
  align-items: center;
  gap: 25px;
}

.footer-top-line-wrapper .line {
  flex: 1;
  height: 1px;
  background-color: var(--color-gold-bright);
}

.footer-center-logo {
  width: 185px;
  height: 185px;
  flex-shrink: 0;
}

.footer-center-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 30px;
  margin-bottom: 30px;
  margin-top: -45px; 
}

.footer-column {
  text-align: center;
}

.footer-heading {
  font-family: var(--font-titles);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: 6px; 
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-menu a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 300;
  transition: opacity 0.3s ease;
}

.footer-menu a:hover {
  opacity: 0.7;
}

.footer-socials-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 50px;
}

.footer-socials-center a {
  color: var(--color-gold);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.footer-socials-center a:hover {
  opacity: 0.7;
}

.footer-socials-center svg {
  width: 100%;
  height: 100%;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 1.05rem;
  font-weight: 300;
}

.footer-contact-details a {
  color: var(--color-white);
  text-decoration: none;
}

.footer-bottom-line {
  width: 100%;
  height: 1px;
  background-color: var(--color-gold-bright);
  margin-bottom: 20px;
}

.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  font-size: 0.95rem;
  color: var(--color-white);
  font-weight: 300;
}

/* ==========================================
   RESPONSIVE GLOBAL (MOBILES ET TABLETTES)
   ========================================== */
@media (max-width: 900px) {
  .story-container,
  .takeaway-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .story-image-wrapper {
    max-width: 100%;
  }

  .gallery-card {
    width: 160px;
    height: 160px;
  }

  .gallery-container,
  .gallery-row {
    gap: 15px;
  }

  .gallery-row.row-top {
    transform: translateX(100px);
  }

  .gallery-row.row-bottom {
    transform: translateX(-100px);
  }

  .instagram-feed-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .map-contact-section {
    height: auto;
    flex-direction: column-reverse;
    padding: 0;
  }

  .map-wrapper {
    position: relative;
    height: 350px;
  }

  .contact-card {
    width: 100%;
    box-shadow: none;
    padding: 30px 20px;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .foodcourt-banner {
    height: 380px;
  }

  .foodcourt-content p {
    font-size: 1.1rem;
  }

  .marquee-track span {
    font-size: 1.4rem;
  }

  .brand-title {
    font-size: 1.3rem;
  }
  
  .header-logo {
    width: 32px;
    height: 32px;
  }

  .header-container {
    padding: 0 15px;
  }

  .header-socials {
    right: 15px;
  }

  .hero-section {
    height: 380px;
    padding: 20px;
  }

  .hero-frame {
    height: 320px;
  }
  
  .logo-container {
    width: 110px;
    height: 110px;
    top: 20px;
    left: 20px;
  }

  .info-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 0.95rem;
  }

  .welcome-title,
  .story-title,
  .takeaway-title,
  .instagram-title {
    font-size: 2.3rem;
  }

  .welcome-text p,
  .story-text p,
  .card-text,
  .instagram-text {
    font-size: 1rem;
  }

  .menu-gallery {
    margin-top: 0;
    flex-wrap: wrap;
    gap: 10px;
  }

  .gallery-item {
    max-width: 48%;
    height: 180px;
    margin-top: 0 !important;
  }

  .menu-tabs {
    gap: 15px;
  }

  .tab-btn {
    font-size: 0.95rem;
  }

  .dish-name, 
  .dish-price {
    font-size: 1rem;
  }

  .icon-wrapper {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }

  .card-title {
    font-size: 1.15rem;
    white-space: normal;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 0; 
  }

  .footer-socials-center {
    order: 3;
    padding-top: 0;
  }

  .footer-col-right {
    order: 2;
  }
}

@media (max-width: 600px) {
  .instagram-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-btn-wrapper {
    gap: 15px; /* Ajustement automatique pour les petits écrans mobile */
  }
}