/* Importation des polices Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kalnia:wght@400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400&display=swap");

/* Reset et styles de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "League Spartan", sans-serif;
  background-color: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  background-color: #464646;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 110px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 121px;
  height: 103px;
  margin-top: -5px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 181px;
  height: 46px;
  background-color: #4e4e4e;
  border-radius: 8px;
  font-family: "League Spartan", sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: white;
  text-align: center;
  transition: all 0.3s ease;
}

.nav-item a:hover {
  background-color: #6e6e6e;
  transform: translateY(-2px);
}

.nav-item a.active {
  background-color: #7e7e7e;
}

/* Hero Section - Accueil */
.hero {
  position: relative;
  margin-top: 96px;
  min-height: 600px;
  height: 80vh;
  max-height: 750px;
  background-color: #383838;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3.9px);
  opacity: 0.7;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10.95px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 40px 20px;
  gap: 60px;
}

.hero-title {
  font-family: "Kalnia", serif;
  font-size: clamp(50px, 10vw, 120px);
  font-weight: 400;
  color: white;
  text-shadow: 0px 0px 12.4px #000000;
  line-height: 1.1;
  margin: 0;
}

.hero-info {
  display: flex;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}

.hero-phone,
.hero-hours {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-icon {
  width: clamp(50px, 6vw, 76px);
  height: clamp(50px, 6vw, 76px);
  flex-shrink: 0;
}

.hero-phone-text {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(35px, 5vw, 60px);
  font-weight: 600;
  color: white;
  text-shadow: 0px 4px 13px rgba(0, 0, 0, 0.97);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.hero-phone-text:hover {
  opacity: 0.8;
}

.hero-hours-text {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 600;
  color: white;
  text-shadow: 0px 4px 13px rgba(0, 0, 0, 0.97);
  line-height: 1.3;
}

.hero-progress {
  display: flex;
  align-items: center;
  gap: 0;
  box-shadow: 0px 4px 8.7px 0px rgba(0, 0, 0, 0.4);
  border-radius: 22px;
}

.progress-segment {
  width: 228px;
  height: 7px;
}

.progress-green {
  background-color: #35c114;
  border-radius: 22px 0 0 22px;
}

.progress-white {
  background-color: white;
}

.progress-red {
  background-color: #ea2525;
  border-radius: 0 22px 22px 0;
}

/* Section Slider Promotions */
.delivery-section {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.delivery-slider {
  position: relative;
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.delivery-slide.active {
  opacity: 1;
  visibility: visible;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.promo-badge {
  font-family: "League Spartan", sans-serif;
  font-size: 28px;
  font-weight: 900;
  padding: 15px 45px;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  animation: pulse 2s infinite;
  border: 4px solid transparent;
}

.promo-badge.green {
  background: linear-gradient(135deg, #35c114 0%, #2aa010 100%);
  color: white;
  border-color: #4dd11e;
  text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.8);
}

.promo-badge.red {
  background: linear-gradient(135deg, #ea2525 0%, #c71f1f 100%);
  color: white;
  border-color: #ff4444;
  text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.8);
}

.promo-badge.white {
  background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
  color: #2a2a2a;
  border-color: #ffffff;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.promo-badge.special {
  background: linear-gradient(135deg, #35c114 0%, #ea2525 50%, #ffffff 100%);
  color: white;
  border-color: #ffd700;
  text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.9);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
  }
}

.promo-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.delivery-title {
  font-family: "League Spartan", sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: white;
  margin: 0;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.9);
  line-height: 1;
  letter-spacing: 1px;
}

.delivery-title-highlight {
  font-family: "League Spartan", sans-serif;
  font-size: 65px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  text-shadow: none;
  line-height: 1;
  letter-spacing: 2px;
  filter: drop-shadow(0px 4px 15px rgba(255, 215, 0, 0.8));
  animation: glow 2s ease-in-out infinite;
}

.delivery-title-mega {
  font-family: "League Spartan", sans-serif;
  font-size: 70px;
  font-weight: 900;
  color: white;
  margin: 0;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.9);
  line-height: 1;
  letter-spacing: 3px;
}

.delivery-title-mega-highlight {
  font-family: "League Spartan", sans-serif;
  font-size: 80px;
  font-weight: 900;
  background: linear-gradient(135deg, #35c114 0%, #4dd11e 50%, #35c114 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  text-shadow: none;
  line-height: 1;
  letter-spacing: 4px;
  filter: drop-shadow(0px 4px 15px rgba(53, 193, 20, 0.9));
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    filter: drop-shadow(0px 4px 15px rgba(255, 215, 0, 0.8));
  }
  50% {
    filter: drop-shadow(0px 6px 25px rgba(255, 215, 0, 1));
  }
}

.delivery-text {
  font-family: "Kalnia", serif;
  font-size: 22px;
  font-weight: 400;
  color: white;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
  text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.7);
}

.delivery-text-small {
  font-family: "Kalnia", serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-style: italic;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.7);
}

.delivery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.delivery-prev,
.delivery-next {
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.delivery-prev:hover,
.delivery-next:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.delivery-dots {
  display: flex;
  gap: 12px;
}

.delivery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.delivery-dot.active {
  background-color: white;
  transform: scale(1.3);
}

/* Cards Section */
.cards-section {
  background-color: #ebebeb;
  padding: 80px 0;
}

.cards-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 0 50px;
}

.food-card {
  position: relative;
  width: 371px;
  height: 359px;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0px 4px 40.3px 5px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transition: transform 0.3s ease;
  display: block;
  text-decoration: none;
}

.food-card.large {
  width: 491px;
  height: 477px;
}

.food-card:hover {
  transform: translateY(-10px);
}

.food-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-card-title {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Kalnia", serif;
  font-size: 61px;
  font-weight: 400;
  color: white;
  text-shadow: 0px 0px 7.7px rgba(0, 0, 0, 0.86);
  white-space: nowrap;
  font-variation-settings: "wdth" 100;
}

.section-title {
  font-family: "Kalnia", serif;
  font-size: 100px;
  font-weight: 400;
  text-align: center;
  color: white;
  text-shadow: 0px 4px 24.8px rgba(0, 0, 0, 0.64);
  font-variation-settings: "wdth" 100;
  margin-bottom: 60px;
}

/* Page Menus */
.menus-hero {
  position: relative;
  margin-top: 96px;
  min-height: 400px;
  height: 50vh;
  max-height: 500px;
  background: linear-gradient(135deg, #4e2626 0%, #6b3333 100%);
  overflow: hidden;
  margin-bottom: 0;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.menus-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(15px) brightness(0.5);
  opacity: 0.4;
  z-index: 0;
}

.menus-hero-title {
  position: relative;
  z-index: 1;
  font-family: "Kalnia", serif;
  font-size: 80px;
  font-weight: 500;
  color: white;
  text-shadow:
    0px 0px 40px rgba(139, 111, 71, 0.8),
    0px 4px 20px rgba(0, 0, 0, 0.9);
  font-variation-settings: "wdth" 100;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.3;
  margin: 0;
  max-width: 100%;
}

.menus-section {
  background: linear-gradient(135deg, #f5ebe0 0%, #edddc4 100%);
  padding: 80px 0;
  position: relative;
}

.menu-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 140px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 55px;
}

.menu-item {
  width: 542px;
  height: 542px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  text-decoration: none;
  background: linear-gradient(135deg, #8b6f47 0%, #6b5538 100%);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.25),
    inset 0 0 0 3px rgba(212, 197, 173, 0.5);
}

.menu-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    inset 0 0 0 3px rgba(212, 197, 173, 0.8);
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  pointer-events: none;
  z-index: 2;
  transition: all 0.4s ease;
}

.menu-item:hover::before {
  border-color: rgba(255, 255, 255, 0.5);
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
}

.menu-item-inner {
  width: 474px;
  height: 474px;
  margin: 34px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  background-color: #4e2626;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.menu-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.85);
}

.menu-item:hover .menu-item-image {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.menu-item-title {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Kalnia", serif;
  font-size: 64px;
  font-weight: 500;
  color: white;
  text-shadow:
    0px 0px 20px rgba(0, 0, 0, 0.8),
    0px 4px 10px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  font-variation-settings: "wdth" 100;
  text-align: center;
  width: 100%;
  z-index: 1;
  transition: all 0.4s ease;
  letter-spacing: 1px;
}

.menu-item:hover .menu-item-title {
  bottom: 55px;
  font-size: 68px;
  text-shadow:
    0px 0px 30px rgba(139, 111, 71, 0.9),
    0px 0px 20px rgba(0, 0, 0, 0.8),
    0px 4px 10px rgba(0, 0, 0, 0.6);
}

.menu-item-title.small-text {
  font-size: 59px;
}

.menu-item:hover .menu-item-title.small-text {
  font-size: 63px;
}

.menu-download-wrapper {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.menu-download-btn {
  display: block;
  background: linear-gradient(135deg, #4e2626 0%, #6b3333 100%);
  border: 3px solid #8b6f47;
  border-radius: 20px;
  padding: 40px 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 10px 40px rgba(78, 38, 38, 0.4),
    inset 0 0 60px rgba(139, 111, 71, 0.2);
  position: relative;
  overflow: hidden;
}

.menu-download-btn::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid rgba(139, 111, 71, 0.5);
  border-radius: 12px;
  pointer-events: none;
  transition: all 0.4s ease;
}

.menu-download-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.menu-download-btn:hover::after {
  left: 100%;
}

.menu-download-btn:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 60px rgba(78, 38, 38, 0.5),
    inset 0 0 80px rgba(139, 111, 71, 0.3);
  border-color: #a88c5e;
}

.menu-download-btn:hover::before {
  border-color: rgba(139, 111, 71, 0.8);
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
}

.menu-download-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.menu-download-icon-left,
.menu-download-icon-right {
  width: 60px;
  height: 60px;
  color: #d4c5ad;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.menu-download-btn:hover .menu-download-icon-left {
  color: #ffd700;
  transform: translateY(-3px);
}

.menu-download-btn:hover .menu-download-icon-right {
  color: #ffd700;
  transform: translateY(5px);
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(8px);
  }
}

.menu-download-text-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
  text-align: center;
}

.menu-download-title {
  font-family: "Kalnia", serif;
  font-size: 42px;
  font-weight: 600;
  color: white;
  text-shadow:
    0px 0px 20px rgba(255, 215, 0, 0.6),
    0px 2px 10px rgba(0, 0, 0, 0.8);
  font-variation-settings: "wdth" 100;
  transition: all 0.4s ease;
  letter-spacing: 1px;
}

.menu-download-btn:hover .menu-download-title {
  color: #ffd700;
  text-shadow:
    0px 0px 30px rgba(255, 215, 0, 0.9),
    0px 2px 10px rgba(0, 0, 0, 0.8);
  transform: scale(1.05);
}

.menu-download-subtitle {
  font-family: "League Spartan", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #d4c5ad;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.menu-download-btn:hover .menu-download-subtitle {
  color: #e8dcc0;
}

/* Page Contacts */
.contact-hero {
  position: relative;
  margin-top: 96px;
  min-height: 400px;
  height: 50vh;
  max-height: 500px;
  background: linear-gradient(135deg, #4e2626 0%, #6b3333 100%);
  overflow: hidden;
  margin-bottom: 0;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.contact-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(15px) brightness(0.5);
  opacity: 0.4;
  z-index: 0;
}

.contact-hero-title {
  position: relative;
  z-index: 1;
  font-family: "Kalnia", serif;
  font-size: 80px;
  font-weight: 500;
  color: white;
  text-shadow:
    0px 0px 40px rgba(139, 111, 71, 0.8),
    0px 4px 20px rgba(0, 0, 0, 0.9);
  font-variation-settings: "wdth" 100;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.3;
  margin: 0;
  max-width: 100%;
}

/* Section Contact */
.contact-section {
  background: linear-gradient(135deg, #f5ebe0 0%, #edddc4 100%);
  padding: 80px 20px;
}

.contact-cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.contact-card {
  background: #fdfbf7;
  border: 3px solid #8b6f47;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.2),
    inset 0 0 60px rgba(139, 111, 71, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid rgba(139, 111, 71, 0.3);
  border-radius: 12px;
  pointer-events: none;
  transition: all 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 0 80px rgba(139, 111, 71, 0.15);
  border-color: #a88c5e;
}

.contact-card:hover::before {
  border-color: rgba(139, 111, 71, 0.6);
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
}

.contact-card-icon {
  width: 70px;
  height: 70px;
  color: #000;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg {
  width: 70px;
  height: 70px;
  stroke: #000;
  stroke-width: 1.5;
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1);
}

.contact-card:hover .contact-card-icon svg {
  stroke: #000;
}

.contact-card-title {
  font-family: "Kalnia", serif;
  font-size: 32px;
  font-weight: 600;
  color: #4e2626;
  margin: 0;
  font-variation-settings: "wdth" 100;
  letter-spacing: 1px;
}

.contact-card-link {
  font-family: "League Spartan", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #6b5538;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 10px 0;
}

.contact-card-link:hover {
  color: #8b6f47;
  transform: scale(1.05);
}

.contact-card-subtitle {
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #888;
  margin: 0;
  font-style: italic;
}

.contact-card-address {
  font-family: "League Spartan", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #4e2626;
  margin: 0;
  line-height: 1.6;
}

.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: center;
}

.contact-hours-label {
  font-family: "Kalnia", serif;
  font-size: 22px;
  font-weight: 600;
  color: #4e2626;
  text-align: center;
  padding: 12px 20px;
  background: rgba(139, 111, 71, 0.15);
  border-radius: 10px;
  width: 100%;
  letter-spacing: 0.5px;
}

.contact-hours-times {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.contact-time-slot {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(139, 111, 71, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-time-slot:hover {
  background: rgba(139, 111, 71, 0.2);
  border-color: rgba(139, 111, 71, 0.3);
  transform: translateX(5px);
}

.time-icon {
  min-width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.time-icon svg {
  width: 28px;
  height: 28px;
  stroke: #000;
  stroke-width: 2;
}

.time-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-grow: 1;
}

.time-period {
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #4e2626;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.time-range {
  font-family: "League Spartan", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #6b5538;
}

.contact-closed {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  background: rgba(211, 47, 47, 0.1);
  border-radius: 10px;
  border: 2px solid rgba(211, 47, 47, 0.2);
  width: 100%;
  transition: all 0.3s ease;
}

.contact-closed:hover {
  background: rgba(211, 47, 47, 0.15);
  border-color: rgba(211, 47, 47, 0.3);
}

.closed-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.closed-icon svg {
  width: 24px;
  height: 24px;
  stroke: #d32f2f;
  stroke-width: 2;
}

.closed-text {
  font-family: "League Spartan", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #d32f2f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Map Section */
.map-section {
  background: linear-gradient(135deg, #f5ebe0 0%, #edddc4 100%);
  padding: 0 20px 80px;
}

.map-title {
  font-family: "Kalnia", serif;
  font-size: 48px;
  font-weight: 600;
  color: #4e2626;
  margin-bottom: 40px;
  text-align: center;
  font-variation-settings: "wdth" 100;
  letter-spacing: 1px;
}

.map-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: #fdfbf7;
  border: 3px solid #8b6f47;
  border-radius: 20px;
  padding: 30px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.2),
    inset 0 0 60px rgba(139, 111, 71, 0.1);
  position: relative;
}

.map-wrapper::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid rgba(139, 111, 71, 0.3);
  border-radius: 12px;
  pointer-events: none;
}

.map-container {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4e2626 0%, #6b3333 100%);
  border-radius: 50%;
  border: 2px solid #8b6f47;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 15px rgba(78, 38, 38, 0.3);
}

.scroll-top.visible {
  opacity: 0.85;
  visibility: visible;
}

.scroll-top:hover {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(78, 38, 38, 0.4);
  background: linear-gradient(135deg, #6b3333 0%, #8b4444 100%);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: white;
  stroke-width: 3;
}

/* Footer */
.footer {
  background-color: #4e4e4e;
  padding: 50px 0;
  color: white;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  width: 121px;
  height: 103px;
}

.footer-nav {
  display: flex;
  gap: 40px;
  list-style: none;
}

.footer-nav a {
  font-family: "League Spartan", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: white;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #cccccc;
}

.footer-info {
  text-align: right;
}

.footer-address {
  font-family: "League Spartan", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: white;
  margin-bottom: 10px;
}

.footer-phone {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: white;
}

/* Menu Burger - Design Moderne */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.15) 0%, rgba(101, 82, 52, 0.2) 100%);
  border: 2px solid rgba(139, 111, 71, 0.4);
  border-radius: 12px;
  padding: 12px;
  z-index: 1001;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 52px;
  height: 52px;
  position: relative;
  overflow: hidden;
}

.burger-menu::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(139, 111, 71, 0.3) 0%, transparent 70%);
  border-radius: 12px;
  transition: transform 0.5s ease;
  z-index: -1;
}

.burger-menu:hover::before {
  transform: translate(-50%, -50%) scale(1.5);
}

.burger-menu:hover {
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.25) 0%, rgba(101, 82, 52, 0.35) 100%);
  border-color: rgba(139, 111, 71, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.3);
}

.burger-menu:active {
  transform: translateY(0);
}

.burger-line {
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  background-size: 200% 100%;
  border-radius: 3px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: block;
  position: relative;
}

.burger-menu:hover .burger-line {
  background-position: 100% 0;
  box-shadow: 0 3px 8px rgba(255, 215, 0, 0.4);
}

.burger-menu.active {
  background: linear-gradient(135deg, rgba(234, 37, 37, 0.2) 0%, rgba(200, 30, 30, 0.3) 100%);
  border-color: rgba(234, 37, 37, 0.7);
  transform: rotate(180deg);
}

.burger-menu.active .burger-line {
  background: linear-gradient(90deg, #ea2525 0%, #ff4444 50%, #ea2525 100%);
  background-size: 200% 100%;
  box-shadow: 0 2px 8px rgba(234, 37, 37, 0.5);
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0) rotate(180deg);
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Overlay pour le menu mobile */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(78, 38, 38, 0.85) 0%, rgba(26, 26, 26, 0.85) 100%);
  backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.menu-open::before {
  opacity: 1;
  visibility: visible;
}

/* Responsive Design */
@media (max-width: 1440px) {
  .header {
    padding: 0 80px;
  }

  .cards-container {
    padding: 0 80px;
  }

  .menu-grid {
    padding: 0 80px;
  }
}

@media (max-width: 1200px) {
  .header {
    padding: 0 50px;
  }

  .hero {
    min-height: 550px;
  }

  .hero-content {
    gap: 50px;
  }

  .progress-segment {
    width: 180px;
  }

  .cards-container {
    flex-wrap: wrap;
    padding: 0 50px;
  }

  .food-card {
    width: 320px;
    height: 310px;
  }

  .food-card.large {
    width: 420px;
    height: 410px;
  }

  .menu-grid {
    padding: 0 50px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .menu-item {
    width: 480px;
    height: 480px;
  }

  .menu-item-inner {
    width: 412px;
    height: 412px;
  }
}

@media (max-width: 992px) {
  .contact-hero,
  .menus-hero {
    min-height: 350px;
    height: 45vh;
    max-height: 450px;
  }

  .contact-hero-title,
  .menus-hero-title {
    font-size: 65px;
  }

  .header {
    padding: 0 30px;
  }

  .hero {
    height: 650px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-content {
    gap: 40px;
  }

  .hero-info {
    gap: 60px;
  }

  .progress-segment {
    width: 160px;
  }

  .section-title {
    font-size: 80px;
  }

  .delivery-title {
    font-size: 50px;
  }

  .delivery-text {
    font-size: 18px;
    max-width: 400px;
  }

  .food-card-title {
    font-size: 50px;
  }

  .menu-item {
    width: 420px;
    height: 420px;
  }

  .menu-item-inner {
    width: 352px;
    height: 352px;
  }

  .menu-item-title {
    font-size: 54px;
    bottom: 40px;
  }

  .menu-download-btn {
    padding: 35px 40px;
  }

  .menu-download-content {
    gap: 30px;
  }

  .menu-download-icon-left,
  .menu-download-icon-right {
    width: 50px;
    height: 50px;
  }

  .menu-download-title {
    font-size: 36px;
  }

  .menu-download-subtitle {
    font-size: 16px;
  }

  .contact-cards-container {
    gap: 30px;
  }

  .contact-card {
    padding: 40px 30px;
  }

  .contact-card-title {
    font-size: 28px;
  }

  .contact-card-link {
    font-size: 32px;
  }

  .map-title {
    font-size: 40px;
  }

  .map-wrapper {
    padding: 25px;
  }

  .map-container {
    height: 450px;
  }

  .map-section {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .contact-hero,
  .menus-hero {
    min-height: 300px;
    height: 40vh;
    max-height: 400px;
    padding: 30px 15px;
  }

  .contact-hero-title,
  .menus-hero-title {
    font-size: 50px;
  }

  .header {
    padding: 0 20px;
    justify-content: space-between;
  }

  .burger-menu {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 96px;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: calc(100vh - 96px);
    background: linear-gradient(135deg, #4e2626 0%, #3a1f1f 100%);
    flex-direction: column;
    gap: 15px;
    padding: 40px 25px;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.6);
    z-index: 999;
    overflow-y: auto;
    border-left: 3px solid #8b6f47;
  }

  .nav-menu::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(139, 111, 71, 0.3);
    border-radius: 10px;
    pointer-events: none;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-item {
    position: relative;
    animation: slideInRight 0.5s ease forwards;
    opacity: 0;
  }

  .nav-menu.active .nav-item:nth-child(1) {
    animation-delay: 0.1s;
  }

  .nav-menu.active .nav-item:nth-child(2) {
    animation-delay: 0.2s;
  }

  .nav-menu.active .nav-item:nth-child(3) {
    animation-delay: 0.3s;
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .nav-item a {
    width: 100%;
    font-size: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(139, 111, 71, 0.4);
    border-radius: 12px;
    padding: 18px 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .nav-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.6s ease;
  }

  .nav-item a:hover::before {
    left: 100%;
  }

  .nav-item a:hover,
  .nav-item a.active {
    background: rgba(139, 111, 71, 0.3);
    border-color: #ffd700;
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
  }

  .nav-item a.active {
    background: rgba(139, 111, 71, 0.4);
    border-color: #ffed4e;
  }

  .logo {
    width: 90px;
    height: 77px;
  }

  .hero {
    height: auto;
    min-height: 600px;
    margin-top: 96px;
  }

  .hero {
    min-height: 450px;
    height: 70vh;
  }

  .hero-content {
    gap: 30px;
    padding: 30px 15px;
  }

  .hero-info {
    flex-direction: column;
    gap: 30px;
  }

  .hero-phone,
  .hero-hours {
    gap: 12px;
  }

  .progress-segment {
    width: 120px;
    height: 6px;
  }

  .hero-progress {
    bottom: 100px;
  }

  .progress-segment {
    width: 150px;
    height: 6px;
  }

  .delivery-section {
    padding: 60px 20px;
  }

  .delivery-slider {
    height: 350px;
  }

  .delivery-slide {
    padding: 0 30px;
    gap: 15px;
  }

  .promo-badge {
    font-size: 20px;
    padding: 12px 35px;
    letter-spacing: 2px;
  }

  .delivery-title {
    font-size: 40px;
  }

  .delivery-title-highlight {
    font-size: 52px;
  }

  .delivery-title-mega {
    font-size: 55px;
  }

  .delivery-title-mega-highlight {
    font-size: 65px;
  }

  .delivery-text {
    font-size: 18px;
    max-width: 450px;
  }

  .delivery-text-small {
    font-size: 14px;
  }

  .delivery-prev,
  .delivery-next {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .delivery-dot {
    width: 10px;
    height: 10px;
  }

  /* Affichage simple de la pizza pour mobile */
  .mobile-hide {
    display: none;
  }

  .index-menu-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: auto;
  }

  .index-menu-item {
    position: relative;
    width: 90%;
    max-width: 350px;
    height: 380px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: none;
  }

  .index-menu-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    filter: brightness(1);
  }

  .index-menu-title {
    font-size: 32px;
    bottom: 20px;
  }

  .index-menu-item:hover .index-menu-title {
    font-size: 32px;
    bottom: 20px;
  }

  .cards-section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 60px;
    margin-bottom: 40px;
  }

  .cards-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }

  .food-card {
    width: 100%;
    max-width: 350px;
    height: 340px;
  }

  .food-card.large {
    width: 100%;
    max-width: 350px;
    height: 340px;
  }

  .food-card-title {
    font-size: 45px;
    bottom: 30px;
  }

  .menus-section {
    padding: 60px 20px;
  }

  .menus-hero,
  .contact-hero {
    height: 250px;
    margin-bottom: 40px;
  }

  .menus-hero-title {
    font-size: 70px;
  }

  .menu-grid {
    padding: 0 20px;
    gap: 40px;
  }

  .menu-item {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1;
  }

  .menu-item-inner {
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    margin: 30px;
  }

  .menu-item-title {
    font-size: 42px;
    bottom: 35px;
  }

  .menu-item-title.small-text {
    font-size: 38px;
  }

  .menu-download-wrapper {
    margin: 60px auto;
    padding: 0 15px;
  }

  .menu-download-btn {
    padding: 30px 25px;
  }

  .menu-download-content {
    flex-direction: column;
    gap: 20px;
  }

  .menu-download-icon-left,
  .menu-download-icon-right {
    width: 45px;
    height: 45px;
  }

  .menu-download-title {
    font-size: 28px;
  }

  .menu-download-subtitle {
    font-size: 14px;
  }

  .contact-section {
    padding: 60px 15px;
  }

  .contact-cards-container {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
  }

  .contact-card {
    padding: 40px 30px;
  }

  .contact-card-icon {
    width: 60px;
    height: 60px;
  }

  .contact-card-icon svg {
    width: 60px;
    height: 60px;
  }

  .contact-card-title {
    font-size: 26px;
  }

  .contact-card-link {
    font-size: 30px;
  }

  .contact-card-address {
    font-size: 18px;
  }

  .contact-hours-label {
    font-size: 18px;
    padding: 10px 15px;
  }

  .time-icon {
    min-width: 30px;
  }

  .time-icon svg {
    width: 24px;
    height: 24px;
  }

  .time-period {
    font-size: 14px;
  }

  .time-range {
    font-size: 18px;
  }

  .closed-icon svg {
    width: 20px;
    height: 20px;
  }

  .closed-text {
    font-size: 16px;
  }

  .map-section {
    padding: 0 15px 60px;
  }

  .map-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .map-wrapper {
    padding: 20px;
  }

  .map-container {
    height: 350px;
  }

  .scroll-top {
    width: 48px;
    height: 48px;
    bottom: 25px;
    right: 25px;
  }

  .scroll-top svg {
    width: 22px;
    height: 22px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    padding: 0 30px;
  }

  .footer-logo {
    width: 90px;
    height: 77px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }

  .footer-info {
    text-align: center;
  }

  .footer-address,
  .footer-phone {
    font-size: 18px;
  }

  .footer-bottom {
    font-size: 16px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    min-height: 250px;
    height: 35vh;
    max-height: 350px;
    padding: 20px 10px;
  }

  .contact-hero-title {
    font-size: 32px;
    letter-spacing: 1px;
  }

  .header {
    padding: 0 15px;
  }

  .logo {
    width: 75px;
    height: 64px;
  }

  .hero {
    min-height: 400px;
    height: 65vh;
  }

  .hero-content {
    gap: 25px;
    padding: 20px 10px;
  }

  .hero-info {
    flex-direction: column;
    gap: 25px;
  }

  .hero-phone,
  .hero-hours {
    gap: 10px;
  }

  .progress-segment {
    width: 100px;
    height: 5px;
  }

  .delivery-slider {
    height: 400px;
  }

  .delivery-slide {
    padding: 0 20px;
    gap: 12px;
  }

  .promo-badge {
    font-size: 16px;
    padding: 10px 25px;
    letter-spacing: 1.5px;
    border-width: 3px;
  }

  .delivery-title {
    font-size: 28px;
  }

  .delivery-title-highlight {
    font-size: 40px;
  }

  .delivery-title-mega {
    font-size: 42px;
  }

  .delivery-title-mega-highlight {
    font-size: 50px;
  }

  .delivery-text {
    font-size: 15px;
    max-width: 320px;
  }

  .delivery-text-small {
    font-size: 12px;
  }

  .delivery-prev,
  .delivery-next {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .delivery-dot {
    width: 8px;
    height: 8px;
  }

  /* Affichage simple de la pizza pour petit mobile */
  .mobile-hide {
    display: none;
  }

  .index-menu-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    height: auto;
  }

  .index-menu-item {
    position: relative;
    width: 90%;
    max-width: 320px;
    height: 340px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: none;
  }

  .index-menu-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    filter: brightness(1);
  }

  .index-menu-title {
    font-size: 28px;
    bottom: 15px;
  }

  .index-menu-item:hover .index-menu-title {
    font-size: 28px;
    bottom: 15px;
  }

  .section-title {
    font-size: 48px;
  }

  .food-card-title {
    font-size: 38px;
  }

  .menus-hero-title {
    font-size: 55px;
  }

  .menu-item-title {
    font-size: 36px;
  }

  .menu-item-title.small-text {
    font-size: 32px;
  }

  .menu-download-btn {
    padding: 25px 20px;
  }

  .menu-download-content {
    gap: 15px;
  }

  .menu-download-icon-left,
  .menu-download-icon-right {
    width: 35px;
    height: 35px;
  }

  .menu-download-title {
    font-size: 22px;
  }

  .menu-download-subtitle {
    font-size: 12px;
  }

  .contact-section {
    padding: 40px 15px;
  }

  .contact-card {
    padding: 35px 25px;
    gap: 15px;
  }

  .contact-card-icon {
    width: 50px;
    height: 50px;
  }

  .contact-card-icon svg {
    width: 50px;
    height: 50px;
  }

  .contact-card-title {
    font-size: 24px;
  }

  .contact-card-link {
    font-size: 26px;
  }

  .contact-card-subtitle {
    font-size: 14px;
  }

  .contact-card-address {
    font-size: 16px;
  }

  .contact-hours {
    gap: 15px;
  }

  .contact-hours-label {
    font-size: 16px;
    padding: 10px 15px;
  }

  .contact-time-slot {
    padding: 12px 15px;
    gap: 12px;
  }

  .time-icon {
    min-width: 28px;
  }

  .time-icon svg {
    width: 22px;
    height: 22px;
  }

  .time-period {
    font-size: 13px;
  }

  .time-range {
    font-size: 16px;
  }

  .contact-closed {
    padding: 12px 15px;
  }

  .closed-icon svg {
    width: 18px;
    height: 18px;
  }

  .closed-text {
    font-size: 14px;
  }

  .map-section {
    padding: 0 15px 50px;
  }

  .map-title {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .map-wrapper {
    padding: 15px;
  }

  .map-wrapper::before {
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .map-container {
    height: 300px;
  }

  .scroll-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }

  .scroll-top svg {
    width: 20px;
    height: 20px;
  }
}

/* Page Produits - Style Carte Restaurant Italien */
.products-hero {
  position: relative;
  margin-top: 96px;
  min-height: 300px;
  background: linear-gradient(135deg, #4e2626 0%, #6b3333 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
}

.products-hero-content {
  text-align: center;
  max-width: 800px;
}

.products-hero-title {
  font-family: "Kalnia", serif;
  font-size: 100px;
  font-weight: 400;
  color: white;
  text-shadow: 0px 4px 19.1px #000000;
  font-variation-settings: "wdth" 100;
  margin-bottom: 20px;
}

.products-hero-description {
  font-family: "Kalnia", serif;
  font-size: 24px;
  font-weight: 400;
  color: white;
  text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.7);
}

.products-section {
  background: linear-gradient(135deg, #f5ebe0 0%, #edddc4 100%);
  padding: 60px 20px 80px;
  min-height: 500px;
  position: relative;
  background-image:
    linear-gradient(135deg, #f5ebe0 0%, #edddc4 100%),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="40" opacity="0.02">La Dolce Vita</text></svg>');
}

/* Bouton Toggle Filtres */
.filter-toggle-container {
  max-width: 1200px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: flex-end;
}

.filter-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  background: #4e2626;
  color: white;
  border: 2px solid #6b3333;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(78, 38, 38, 0.3);
}

.filter-toggle-btn:hover {
  background: #6b3333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 38, 38, 0.4);
}

.filter-toggle-btn svg {
  width: 20px;
  height: 20px;
}

/* Menu déroulant Filtres */
.filters-dropdown {
  max-width: 1200px;
  margin: 0 auto 40px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.filters-dropdown.active {
  max-height: 600px;
  opacity: 1;
}

.filters-dropdown-content {
  background: rgba(255, 255, 255, 0.95);
  border: 3px solid #8b6f47;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.filters-title {
  font-family: "Kalnia", serif;
  font-size: 28px;
  font-weight: 600;
  color: #4e2626;
  margin-bottom: 20px;
  font-variation-settings: "wdth" 100;
  text-align: center;
}

.filters-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 25px;
  justify-content: center;
}

.filter-btn {
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 25px;
  border: 2px solid #8b6f47;
  background: white;
  color: #4e2626;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: #f9f5f0;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: #8b6f47;
  color: white;
  border-color: #6b5538;
}

.allergens-filter {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 2px solid #d4c5ad;
}

.allergens-title {
  font-family: "League Spartan", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #4e2626;
  margin-bottom: 15px;
  text-align: center;
}

.allergens-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.allergen-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: "League Spartan", sans-serif;
  font-size: 15px;
  padding: 8px 15px;
  border-radius: 8px;
  transition: background 0.2s ease;
  background: white;
  border: 1px solid #d4c5ad;
}

.allergen-checkbox:hover {
  background: #f9f5f0;
}

.allergen-input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #8b6f47;
}

.reset-filters-btn {
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 30px;
  background: #4e2626;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.reset-filters-btn:hover {
  background: #6b3333;
  transform: translateY(-2px);
  box-shadow: 0px 4px 15px rgba(78, 38, 38, 0.3);
}

/* Container carte menu */
.menu-card-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #fdfbf7;
  border: 3px solid #8b6f47;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.3),
    inset 0 0 60px rgba(139, 111, 71, 0.1);
  position: relative;
}

.menu-card-container::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid #d4c5ad;
  border-radius: 15px;
  pointer-events: none;
}

.products-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.loading {
  text-align: center;
  font-family: "Kalnia", serif;
  font-size: 24px;
  color: #4e2626;
  padding: 60px 0;
}

/* Cartes produits style menu italien */
.product-card {
  background: transparent;
  padding: 25px 20px;
  border-bottom: 2px dotted #d4c5ad;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card:last-child {
  border-bottom: none;
}

.product-card:hover {
  background: rgba(255, 255, 255, 0.5);
  padding-left: 30px;
}

.product-name {
  font-family: "Kalnia", serif;
  font-size: 26px;
  font-weight: 600;
  color: #4e2626;
  margin: 0;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0.5px;
}

.product-ingredients {
  font-family: "Kalnia", serif;
  font-size: 15px;
  color: #6b5538;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.product-price {
  font-family: "League Spartan", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #8b6f47;
  margin-top: 5px;
  align-self: flex-start;
}

.product-sizes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
  align-items: center;
}

.size-option {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.size-label {
  font-family: "League Spartan", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #6b5538;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.size-price {
  font-family: "League Spartan", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #8b6f47;
}

.product-info {
  font-family: "Kalnia", serif;
  font-size: 13px;
  color: #999;
  font-style: italic;
}

/* Badges produits */
.product-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 5px;
}

.badge {
  font-family: "League Spartan", sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-veg {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #66bb6a;
}

.badge-pork-free {
  background: #e3f2fd;
  color: #1565c0;
  border: 1px solid #42a5f5;
}

/* Allergènes dans les cartes */
.product-allergens {
  font-family: "Kalnia", serif;
  font-size: 12px;
  color: #888;
  margin-top: 8px;
  font-style: italic;
}

.allergens-label {
  font-weight: 600;
  color: #d32f2f;
  font-style: normal;
}

.back-to-menus {
  text-align: center;
  margin-top: 60px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #4e2626;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-family: "League Spartan", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-back:hover {
  background-color: #6b3333;
  transform: translateY(-2px);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-back svg {
  width: 24px;
  height: 24px;
}

/* Responsive Products */
@media (max-width: 992px) {
  .menu-card-container {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .products-hero {
    min-height: 250px;
    padding: 40px 20px;
  }

  .products-hero-title {
    font-size: 60px;
  }

  .products-hero-description {
    font-size: 18px;
  }

  .products-section {
    padding: 40px 15px 60px;
  }

  .filter-toggle-container {
    margin-bottom: 20px;
  }

  .filter-toggle-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .filters-dropdown-content {
    padding: 20px;
  }

  .filters-title {
    font-size: 24px;
  }

  .filters-group {
    gap: 10px;
  }

  .filter-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .allergens-title {
    font-size: 16px;
  }

  .allergens-group {
    gap: 10px;
  }

  .allergen-checkbox {
    font-size: 14px;
    padding: 6px 12px;
  }

  .menu-card-container {
    padding: 30px 20px;
  }

  .menu-card-container::before {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
  }

  .product-card {
    padding: 20px 15px;
  }

  .product-name {
    font-size: 22px;
  }

  .product-ingredients {
    font-size: 14px;
  }

  .product-price {
    font-size: 24px;
  }

  .size-label {
    font-size: 12px;
  }

  .size-price {
    font-size: 20px;
  }

  .btn-back {
    padding: 12px 30px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .products-hero-title {
    font-size: 45px;
  }

  .products-hero-description {
    font-size: 16px;
  }

  .filter-toggle-btn {
    font-size: 13px;
    padding: 8px 16px;
  }

  .filter-toggle-btn svg {
    width: 18px;
    height: 18px;
  }

  .filters-dropdown-content {
    padding: 15px;
  }

  .filters-title {
    font-size: 20px;
  }

  .filter-btn {
    font-size: 13px;
    padding: 8px 16px;
    width: 100%;
  }

  .allergens-title {
    font-size: 15px;
  }

  .allergens-group {
    flex-direction: column;
  }

  .allergen-checkbox {
    font-size: 13px;
    width: 100%;
  }

  .reset-filters-btn {
    width: 100%;
    font-size: 14px;
  }

  .menu-card-container {
    padding: 20px 15px;
    border-width: 2px;
  }

  .menu-card-container::before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .product-card {
    padding: 15px 10px;
  }

  .product-name {
    font-size: 20px;
  }

  .product-ingredients {
    font-size: 13px;
  }

  .product-price {
    font-size: 22px;
  }

  .size-option {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .size-price {
    font-size: 18px;
  }

  .badge {
    font-size: 10px;
    padding: 3px 8px;
  }

  .product-allergens {
    font-size: 11px;
  }

  .btn-back {
    padding: 10px 25px;
    font-size: 16px;
  }
}

/* INDEX PAGE - NOUVEAU STYLE */

/* Hero Index */
.index-hero {
  position: relative;
  margin-top: 96px;
  min-height: 100vh;
  height: 100vh;
  background: linear-gradient(135deg, #4e2626 0%, #6b3333 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
}

.index-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

.index-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1200px;
  width: 100%;
}

.index-hero-title {
  font-family: "Kalnia", serif;
  font-size: clamp(50px, 8vw, 110px);
  font-weight: 500;
  color: white;
  text-shadow:
    0px 0px 40px rgba(255, 215, 0, 0.6),
    0px 4px 20px rgba(0, 0, 0, 0.9);
  font-variation-settings: "wdth" 100;
  margin: 0;
  text-align: center;
  letter-spacing: 3px;
}

.index-hero-subtitle {
  font-family: "Kalnia", serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.8);
  margin: -20px 0 0 0;
  text-align: center;
  letter-spacing: 2px;
}

.index-hero-info {
  display: flex;
  gap: clamp(30px, 5vw, 60px);
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.index-info-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 15px;
  border: 2px solid rgba(139, 111, 71, 0.5);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.index-info-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(139, 111, 71, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.index-info-icon {
  width: 50px;
  height: 50px;
  color: #ffd700;
  flex-shrink: 0;
}

.index-info-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.index-info-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.index-info-link {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: white;
  text-decoration: none;
  text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.8);
  transition: color 0.3s ease;
}

.index-info-link:hover {
  color: #ffd700;
}

.index-info-label {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.8);
}

.index-hero-flag {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  margin-top: 10px;
}

.flag-stripe {
  width: 80px;
  height: 8px;
}

.flag-green {
  background-color: #35c114;
}

.flag-white {
  background-color: white;
}

.flag-red {
  background-color: #ea2525;
}

/* Promotions Section */
.promotions-section {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 35px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.promotions-section .section-title {
  font-size: 42px;
  margin-bottom: 28px;
}

.promotions-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.promo-slide.active {
  opacity: 1;
  visibility: visible;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.promo-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
  border-radius: 15px;
  padding: 24px 30px;
  backdrop-filter: blur(10px);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.5),
    inset 0 0 40px rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  max-width: 430px;
  width: 100%;
}

.promo-card.green {
  border-color: #35c114;
  box-shadow:
    0 10px 40px rgba(53, 193, 20, 0.3),
    inset 0 0 60px rgba(53, 193, 20, 0.1);
}

.promo-card.red {
  border-color: #ea2525;
  box-shadow:
    0 10px 40px rgba(234, 37, 37, 0.3),
    inset 0 0 60px rgba(234, 37, 37, 0.1);
}

.promo-card.white {
  border-color: #ffffff;
  box-shadow:
    0 10px 40px rgba(255, 255, 255, 0.2),
    inset 0 0 60px rgba(255, 255, 255, 0.1);
}

.promo-card.special {
  border-color: #ffd700;
  box-shadow:
    0 10px 40px rgba(255, 215, 0, 0.4),
    inset 0 0 60px rgba(255, 215, 0, 0.15);
}

.promo-badge {
  display: inline-block;
  font-family: "League Spartan", sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.promo-badge:not(.dark):not(.gold) {
  background: linear-gradient(135deg, #35c114 0%, #2aa010 100%);
  color: white;
}

.promo-badge.dark {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  color: white;
  border: 2px solid #ffffff;
}

.promo-badge.gold {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #2a2a2a;
  font-weight: 900;
}

.promo-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

.promo-title {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(16px, 2.3vw, 24px);
  font-weight: 800;
  color: white;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.8);
}

.promo-highlight {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(20px, 2.7vw, 30px);
  font-weight: 900;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1;
  filter: drop-shadow(0px 3px 8px rgba(255, 215, 0, 0.8));
}

.promo-details {
  font-family: "Kalnia", serif;
  font-size: clamp(9px, 0.9vw, 10px);
  color: rgba(255, 255, 255, 0.85);
  margin: 6px 0 0 0;
  font-style: italic;
}

.promo-title-large {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(26px, 3.3vw, 35px);
  font-weight: 900;
  color: white;
  margin: 0;
  line-height: 1;
  text-shadow: 0px 3px 15px rgba(0, 0, 0, 0.9);
}

.promo-highlight-large {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(30px, 3.7vw, 42px);
  font-weight: 900;
  background: linear-gradient(135deg, #35c114 0%, #4dd11e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1;
  filter: drop-shadow(0px 4px 15px rgba(53, 193, 20, 0.9));
}

.promo-note {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(8px, 0.8vw, 9px);
  color: rgba(255, 255, 255, 0.7);
  margin: 4px 0 0 0;
}

.promotions-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
}

.promo-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.promo-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.promo-btn svg {
  width: 16px;
  height: 16px;
}

.promo-dots {
  display: flex;
  gap: 8px;
}

.promo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.promo-dot.active {
  background: white;
  transform: scale(1.3);
}

/* Index Menu Section */
.index-menu-section {
  background: linear-gradient(135deg, #f5ebe0 0%, #edddc4 100%);
  padding: 80px 20px;
}

.index-menu-grid {
  max-width: 1400px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 550px;
  perspective: 1500px;
}

.index-menu-item {
  position: absolute;
  width: 380px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  left: 50%;
  top: 50%;
  margin-left: -190px;
  margin-top: -210px;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.8s ease,
              z-index 0s 0.4s;
  backface-visibility: hidden;
}

.index-menu-item.large {
  width: 380px;
  height: 420px;
}

/* Position initiale - toutes les cartes empilées au centre */
.index-menu-item {
  transform: translateZ(0) rotateY(0deg);
  opacity: 1;
  z-index: 1;
}

/* Carte à gauche */
.index-menu-item[data-position="0"] {
  transform: translateX(-450px) translateZ(-200px) rotateY(35deg) scale(0.75);
  opacity: 0.6;
  z-index: 1;
}

/* Carte au centre (active) */
.index-menu-item[data-position="1"] {
  transform: translateX(0) translateZ(100px) rotateY(0deg) scale(1);
  opacity: 1;
  z-index: 10;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

/* Carte à droite */
.index-menu-item[data-position="2"] {
  transform: translateX(450px) translateZ(-200px) rotateY(-35deg) scale(0.75);
  opacity: 0.6;
  z-index: 1;
}

.index-menu-item:hover {
  filter: brightness(1.05);
}

.index-menu-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.index-menu-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.75);
}

.index-menu-item:hover .index-menu-image {
  transform: scale(1.15);
  filter: brightness(0.6);
}

.index-menu-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

.index-menu-title {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Kalnia", serif;
  font-size: clamp(40px, 4vw, 55px);
  font-weight: 500;
  color: white;
  text-shadow:
    0px 0px 20px rgba(139, 111, 71, 0.8),
    0px 4px 10px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
  font-variation-settings: "wdth" 100;
  z-index: 2;
  transition: all 0.4s ease;
  text-align: center;
  width: 90%;
}

.index-menu-item:hover .index-menu-title {
  bottom: 35px;
  font-size: clamp(42px, 4.2vw, 58px);
}

.index-menu-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-menu-full {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #4e2626 0%, #6b3333 100%);
  color: white;
  padding: 18px 45px;
  border-radius: 50px;
  font-family: "League Spartan", sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(78, 38, 38, 0.4);
  border: 2px solid #8b6f47;
}

.btn-menu-full:hover {
  background: linear-gradient(135deg, #6b3333 0%, #8b4444 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(78, 38, 38, 0.5);
  border-color: #a88c5e;
}

.btn-menu-full svg {
  width: 24px;
  height: 24px;
}

/* Location Section */
.location-section {
  background: linear-gradient(135deg, #f5ebe0 0%, #edddc4 100%);
  padding: 80px 20px;
}

.location-info {
  max-width: 1200px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: center;
}

.location-address {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.7);
  padding: 30px 50px;
  border-radius: 15px;
  border: 3px solid #8b6f47;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.location-address:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  border-color: #a88c5e;
}

.location-icon {
  width: 60px;
  height: 60px;
  color: #4e2626;
  flex-shrink: 0;
}

.location-icon svg {
  width: 100%;
  height: 100%;
  fill: #4e2626;
}

.location-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.location-title {
  font-family: "Kalnia", serif;
  font-size: 28px;
  font-weight: 600;
  color: #4e2626;
  margin: 0;
  font-variation-settings: "wdth" 100;
}

.location-detail {
  font-family: "League Spartan", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #6b5538;
  margin: 0;
}

.location-map {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 3px solid #8b6f47;
}

.location-map iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}
