:root {
  --vh: 1vh;
  --light: #fff;
  --dark: #2c2e35;
  --orange: #ff9d3d;
  --cream: #ffd97d;
  --accent-pink: #ff6b9d;
  --accent-blue: #4ecdc4;
  --light-bg: #f8f9fa;

  --font-normal: 400;
  --font-medium: 500;
  --font-bold: 700;

  --rounded-xs: 2px;
  --rounded-sm: 8px;
  --rounded-md: 12px;
  --rounded-lg: 16px;
  --rounded-xl: 20px;
  --rounded-2xl: 28px;
  --rounded-3xl: 36px;
  --rounded-4xl: 48px;

  /* Spacing System (8px base) */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 2.5rem;
  --space-2xl: 3rem;
  --space-3xl: 3.5rem;
  --space-4xl: 4rem;
  --space-5xl: 4.5rem;
  --space-6xl: 5rem;

  /* Section Padding */
  --section-py: 4rem;
  --section-px: 5%;
  --section-py-sm: 2.5rem;
  --section-py-xs: 2rem;
}

@supports (height: 100dvh) {
  :root {
    --vh: 1dvh;
  }
}

/* RESET */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light dark;
  -webkit-tap-highlight-color: transparent;
}

body {
  min-height: calc(100 * var(--vh));
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  font-size: 16px;
  font-family: "Poppins", Arial, sans-serif;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.3px;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent-blue);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent-blue);
  outline-offset: 2px;
}

button:disabled,
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

ul,
ol {
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ================= NAV ================= */

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--space-sm) var(--space-lg);
  background: rgba(44, 46, 53, 0.95);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: var(--space-sm);
}

.nav-links a {
  color: var(--light);
  font-size: 1rem;
  font-weight: var(--font-medium);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  border-radius: var(--rounded-sm);
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ================= HAMBURGER MENU ================= */

.burger {
  display: none;
  flex-direction: column;
  gap: var(--space-xs);
  padding: 0;
  margin-right: var(--space-sm);
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  color: var(--light);
  line-height: 1;
  user-select: none;
}

.burger-icon {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--light);
  border-radius: 2px;
  display: inline-block;
  transition: transform 0.2s ease, background 0.2s ease;
}

.burger-icon::before,
.burger-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--light);
  border-radius: 2px;
  transition: transform 0.2s ease, top 0.2s ease;
}

.burger-icon::before {
  top: -6px;
}

.burger-icon::after {
  top: 6px;
}

/* ================= MOBILE NAV ================= */

@media (max-width: 768px) {
  .burger {
    display: flex;
    margin: 0 var(--space-sm);
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }

  .burger.active .burger-icon {
    background: transparent;
  }

  .burger.active .burger-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .burger.active .burger-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .nav-overlay {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: var(--space-xs) var(--space-sm);
    gap: var(--space-xs);
    padding-top: var(--space-sm);
  }

  .nav-links {
    display: none;
    width: 100%;
    gap: 0;
    flex-direction: column;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    display: flex;
    max-height: 340px;
    opacity: 1;
  }

  .nav-links a {
    padding: var(--space-sm) var(--space-md);
    width: 100%;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover {
    color: var(--orange);
    background: rgba(245, 152, 56, 0.1);
    border-left-color: var(--orange);
    padding-left: var(--space-lg);
  }
}

/* ================= HERO ================= */

.hero-banner {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: url("images/DSC0614.JPG") center/cover no-repeat fixed;
}
@media (max-width: 768px) {
  .hero-banner {
    background-attachment: scroll;  
    background-position: center top;
    min-height: 60vh;               
  }
}

.hero-overlay-content {
  width: 100%;
  max-width: 512px;
  color: var(--light);
  background: rgba(0, 0, 0, 0.45);
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--rounded-3xl);
  display: flex;
  justify-content: flex-end;  
  align-items: center;    
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
  margin: var(--space-4xl);
}

.hero-overlay-content h1 {
  font-size: 3rem;
  font-weight: var(--font-bold);
}

.hero-overlay-content p {
  font-size: 1rem;
  font-weight: var(--font-normal);
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-banner {
    align-items: center;
    justify-content: center;
    min-height: 70vh;
  }

  .hero-overlay-content {
    max-width: 90%;
    margin: 0;
    padding: var(--space-lg) var(--space-md);
  }

  .hero-overlay-content h1 {
    font-size: 2.2rem;
  }

  .hero-overlay-content p {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

@media (max-width: 600px) {
  .hero-banner {
    min-height: 60vh;
  }

  .hero-overlay-content {
    padding: var(--space-md) var(--space-sm);
  }

  .hero-overlay-content h1 {
    font-size: 1.8rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ================= BUTTONS ================= */

.btn {
  background: var(--orange);
  color: var(--light);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--rounded-lg);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 1rem;
  font-weight: var(--font-bold);
  transition: all 0.25s ease;
  border: none;
  box-shadow: none;
  cursor: pointer;
}

.btn:hover {
  background: #ff8f1a;
  opacity: 0.95;
}

.btn:active {
  opacity: 0.8;
}

/* ================= SECTIONS ================= */

.section {
  padding: var(--section-py) var(--section-px);
  text-align: center;
}

.section.dark {
  background: var(--dark);
  color: var(--light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-bold);
  letter-spacing: 0.5px;
  margin-bottom: var(--space-md);
}

.section h2 {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-lg);
  font-size: 2.5rem;
}

.section h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: var(--rounded-sm);
}

@media (max-width: 900px) {
  .section {
    padding: var(--section-py-sm) var(--section-px);
  }

  .section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .section {
    padding: var(--section-py-xs) var(--section-px);
  }

  .section h2 {
    font-size: 1.6rem;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.status {
  margin: var(--space-sm) 0 var(--space-md);
  font-size: 0.95rem;
  color: #666;
}

.status.error {
  color: #b42318;
}

.section.dark .status {
  color: rgba(255, 255, 255, 0.8);
}

.section.dark .status.error {
  color: #ffb4a9;
}

/* ================= MENU HIGHLIGHT ================= */

.menu-highlight {
  max-width: 520px;
  border: 2px solid var(--dark);
  margin: 0 auto var(--space-5xl);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--rounded-3xl);
  background: var(--orange);
  color: var(--light);
  box-shadow: none;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
  animation: slideInUp 0.6s ease-out;
}

.menu-highlight:hover {
  opacity: 0.95;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-highlight h3 {
  font-size: 24px;
  margin-bottom: var(--space-sm);
  font-weight: var(--font-bold);
}

.menu-highlight p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.menu-highlight strong {
  background: rgba(255, 255, 255, 0.25);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--rounded-lg);
  display: inline-block;
  font-weight: var(--font-bold);
}

.menu-highlight-offers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.menu-highlight-offers p {
  margin: 0;
}

.menu-highlight-offers p:not(.menu-highlight-separator) {
  width: 100%;
  max-width: 380px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.22);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--rounded-lg);
}

.menu-highlight-offers strong {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.menu-highlight-offers span {
  font-size: 1.1rem;
  font-weight: var(--font-bold);
  white-space: nowrap;
}

.menu-highlight-separator {
  font-size: 0.9rem;
  font-weight: var(--font-bold);
  text-transform: uppercase;
  opacity: 0.9;
}

.menu-category {
  margin-top: var(--space-5xl);
  animation: fadeUp 0.6s both;
  scroll-margin-top: calc(var(--space-5xl) + var(--space-lg) + 1rem);
}

.cat-title {
  text-align: left;
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
  position: relative;
}

.cat-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  bottom: -5px;
  width: 6px;
  background: var(--orange);
  border-radius: var(--rounded-sm);
  transition: all 0.3s ease;
}

.menu-category:hover .cat-title:before {
  width: 8px;
  background: var(--accent-pink);
}

@media (max-width: 600px) {
  .menu-category {
    margin-top: var(--space-3xl);
  }

  .cat-title {
    font-size: 1.3rem;
  }
}

/* PRODUITS CAROUSEL */

.products {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  padding-bottom: var(--space-sm);
  scroll-snap-type: x mandatory;
  margin-bottom: var(--space-2xl);
}

.products::-webkit-scrollbar {
  height: 8px;
}

.products::-webkit-scrollbar-track {
  background: #e8e0d8;
  border-radius: 10px;
}

.products::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 10px;
}

@media (max-width: 768px) {
  .products {
    gap: var(--space-md);
    padding-bottom: var(--space-xs);
  }
}

@media (max-width: 600px) {
  .products {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

.products::-webkit-scrollbar {
  height: 6px;
}

.products::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 10px;
}

.product-card {
  width: 280px;
  height: auto;            
  min-height: 280px;
  cursor: pointer;
  padding: var(--space-md);
  border-radius: var(--rounded-2xl);
  background: #f5f7ff;
  border: 2px solid #e8e8f0;
  position: relative;
  scroll-snap-align: start;
  transition: all 0.3s ease;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.product-card:hover {
  transform: translateY(-10px) rotate(2deg);
  height: auto;
  min-height: 280px;
  z-index: 10;
  border-color: var(--orange);
  background: #fffbf0;
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  -o-object-fit: contain;
  background: var(--light);
  padding: var(--space-sm);
  border-radius: var(--rounded-md);
  transition: opacity 0.25s ease;
}
.desc {
  font-size: 13px;
  color: #555;
  font-weight: 500;
}

.price {
  position: absolute;
  top: var(--space-xs);
  right: var(--space-xs);
  background: var(--orange);
  color: var(--light);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--rounded-lg);
  font-size: 13px;
  font-weight: var(--font-bold);
  box-shadow: none;
}

.empty {
  color: #777;
  margin: var(--space-4xl);
}

/* MENU NAV */

.menu-nav {
  position: sticky;
  top: 90px;
  z-index: 20;
  background: var(--light);
  padding: var(--space-md);
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  margin-bottom: var(--space-5xl);
  box-shadow: none;
  border-radius: var(--rounded-2xl);
  -webkit-overflow-scrolling: touch;
  border: 2px solid var(--light-bg);
}

.menu-nav button {
  border: none;
  background: var(--light-bg);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--rounded-lg);
  white-space: nowrap;
  cursor: pointer;
  font-weight: var(--font-bold);
  transition: all 0.25s ease;
  flex-shrink: 0;
  color: var(--dark);
}

.menu-nav button:hover {
  background: var(--orange);
  color: var(--light);
}

.menu-nav::-webkit-scrollbar {
  height: 6px;
}

.menu-nav::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

@media (max-width: 600px) {
  .menu-nav {
    top: 70px;
    padding: var(--space-xs);
    gap: var(--space-xs);
    margin-bottom: var(--space-2xl);
  }

  .menu-nav button {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.9rem;
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .menu-highlight {
    background: linear-gradient(135deg, #f59838, #d6b68f);
    color: var(--light);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .menu-highlight strong {
    color: var(--light);
  }
}

@media (max-width: 600px) {
  .menu-highlight {
    padding: 20px;
  }
}
/* HORAIRES */

.info-section {
  text-align: left;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  margin-top: var(--space-4xl);
  align-items: stretch;
}
.map-card {
  background: var(--light);
  padding: var(--space-xl);
  border-radius: var(--rounded-2xl);
  border: 2px solid var(--light-bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.map-card iframe {
  flex-grow: 1;
  border-radius: var(--rounded-md);
  min-height: 80%;
}


@media (max-width: 1000px) {
  .info-grid {
    gap: var(--space-3xl);
  }
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    text-align: center;
  }
}

.hours-card {
  background: var(--light);
  padding: var(--space-xl);
  border-radius: var(--rounded-2xl);
  box-shadow: none;
  transition: all 0.25s ease;
  border: 2px solid var(--light-bg);
}

.hours-card:hover {
  border-color: var(--orange);
}

.hours-card h3 {
  margin-bottom: var(--space-lg);
  font-size: 20px;
}

@media (max-width: 768px) {
  .hours-card h3 {
    font-size: 18px;
  }
}

/* LISTE */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* LIGNE */
.hour-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--rounded-md);
  background: var(--light-bg);
  font-size: 14px;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.hour-row:hover {
  background: var(--light);
  border-color: var(--orange);
}

/* JOUR */
.day {
  font-weight: var(--font-bold);
  text-align: left;
}

/* HEURES */
.times {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* BADGES HEURES */
.times span {
  background: var(--light-bg);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--rounded-sm);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #e8e8f0;
}

/* JOUR ACTUEL */
.hour-row.today {
  background: var(--orange);
  color: var(--light);
  font-weight: var(--font-bold);
  border-color: var(--orange);
}

.hour-row.today .times span {
  background: rgba(255, 255, 255, 0.25);
  color: var(--light);
}

/* FERMÉ */
.closed {
  background: #e5e7eb;
  color: #000;
  padding: 6px 14px;
  border-radius: var(--rounded-sm);
  font-size: 13px;
  font-weight: var(--font-bold);
  border: 1px solid #d1d5db;
}
/* CONTACT PAGE */

.contact-section {
  text-align: left;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
}

@media (max-width: 1000px) {
  .contact-wrapper {
    gap: var(--space-4xl);
  }
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-4xl);
  }

  .contact-intro {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .contact-wrapper {
    gap: var(--space-lg);
  }

  .contact-card {
    padding: var(--space-md);
  }
}

.contact-intro p {
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  font-size: 1.05rem;
}

.contact-points {
  list-style: none;
  padding: 0;
}

.contact-points li {
  margin-bottom: var(--space-md);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* FORM CARD */
.contact-card {
  background: var(--light-bg);
  padding: var(--space-xl);
  border-radius: var(--rounded-2xl);
  box-shadow: none;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.contact-card:hover {
  border-color: var(--orange);
}

.contact-card h3 {
  margin-bottom: var(--space-xl);
  color: var(--dark);
  font-size: 1.3rem;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--rounded-md);
  border: 2px solid #e8e8f0;
  font-size: 14px;
  transition: all 0.2s ease;
  font-family: inherit;
  background: var(--light-bg);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 600px) {
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
    padding: var(--space-sm) var(--space-sm);
  }
}

/* submit */
.contact-form button {
  margin-top: var(--space-sm);
}

.contact-form .btn {
  justify-content: center;
  text-align: center;
}

#formMessage {
  min-height: 1.2rem;
}

/* QUICK CONTACT */

.quick-contact {
  display: flex;
  justify-content: center;
  gap: var(--space-4xl);
  margin-top: var(--space-xl);
  font-size: 18px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .quick-contact {
    gap: var(--space-lg);
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .quick-contact {
    flex-direction: column;
    gap: var(--space-md);
    font-size: 15px;
  }
}

/* MOBILE */

@media (max-width: 900px) {
  .contact-intro {
    text-align: center;
  }
}
.contact-form button:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

/* ================= LOCATION PAGE ================= */

.location-section {
  text-align: left;
}

.location-intro-block {
  max-width: 760px;
  margin: 0 auto var(--space-4xl);
  text-align: center;
}

.location-intro-block h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.location-intro-block p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.location-product-visual {
  max-width: 720px;
  margin: 0 auto var(--space-4xl);
  display: flex;
  justify-content: center;
}

.location-product-visual img {
  width: min(100%, 620px);
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--light);
  border: 2px solid #e8e8f0;
  border-radius: var(--rounded-2xl);
  padding: var(--space-md);
}

.location-offers {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: var(--space-2xl);
  align-items: stretch;
}

.location-offer {
  background: var(--light-bg);
  border: 2px solid #e8e8f0;
  border-radius: var(--rounded-2xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.location-offer:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.location-offer h3,
.location-offer p {
  margin-bottom: 0;
}

.location-offer > strong {
  color: var(--orange);
  font-size: 1.8rem;
  line-height: 1;
}

.location-eyebrow {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: var(--font-bold);
  text-transform: uppercase;
}

.location-pack {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--light);
}

.location-pack .location-eyebrow {
  color: var(--cream);
}

.location-pack p {
  color: rgba(255, 255, 255, 0.86);
}

#toppingsList {
  color: var(--light);
  font-weight: var(--font-bold);
}

.location-pack-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--rounded-lg);
  padding: var(--space-sm);
}

.location-pack-controls label {
  font-weight: var(--font-bold);
}

.location-pack-controls input {
  width: 100%;
  min-height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--rounded-md);
  background: var(--light);
  color: var(--dark);
  font-weight: var(--font-bold);
  text-align: center;
}

.location-formula {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
}

.location-formula span {
  background: rgba(255, 255, 255, 0.14);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--rounded-lg);
  font-weight: var(--font-bold);
}

.location-formula .formula-base {
  background: var(--orange);
  color: var(--light);
}

.location-total strong {
  color: var(--cream);
  font-size: 1.4rem;
}

.location-contact {
  padding-top: var(--space-2xl);
}

@media (max-width: 800px) {
  .location-offers {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 600px) {
  .location-offer {
    padding: var(--space-lg);
  }

  .location-pack-controls {
    grid-template-columns: 1fr;
  }

  .location-formula {
    gap: var(--space-xs);
  }
}
/* ================= EVENTS PAGE ================= */

/* EVENTS GRID */

.events-grid {
  margin-top: var(--space-4xl);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-2xl);
}

@media (max-width: 900px) {
  .events-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-xl);
  }
}

@media (max-width: 600px) {
  .events-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* CARD EVENT */

.event-card {
  background: var(--light);
  padding: var(--space-xl);
  border-radius: var(--rounded-2xl);
  box-shadow: none;
  color: var(--dark);
  position: relative;
  transition: all 0.25s ease;
  text-align: left;
  border: 2px solid var(--light-bg);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event-card:hover {
  border-color: var(--orange);
}

@media (max-width: 600px) {
  .event-card {
    padding: var(--space-lg);
  }

  .event-card h3 {
    font-size: 16px;
  }
}

/* DATE BADGE */
.event-date {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--orange);
  color: var(--light);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--rounded-lg);
  font-size: 13px;
  font-weight: var(--font-bold);
}

/* TITRE */
.event-card h3 {
  margin: var(--space-sm) 0 var(--space-xs);
  font-size: 17px;
}

/* LIEU */
.place {
  color: #666;
  font-size: 13px;
  margin-bottom: var(--space-md);
  font-weight: 500;
}

/* DESCRIPTION */
.event-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

/* CALENDAR */

.calendar-box {
  max-width: 900px;
  margin: var(--space-4xl) auto 0;
  border-radius: var(--rounded-2xl);
  overflow: hidden;
  box-shadow: none;
  border: 2px solid var(--light-bg);
}

@media (max-width: 700px) {
  .calendar-box {
    margin: var(--space-3xl) auto 0;
  }

  .calendar-box iframe {
    height: 400px !important;
  }
}
/* FOOTER */

.footer {
  background-color: #1a1d23;
  padding: var(--space-5xl) 0 var(--space-2xl);
  font-family: "Poppins", Arial, sans-serif;
}

.footer .container {
  max-width: 1170px;
  margin: auto;
  padding: 0 var(--space-lg);
}

.footer .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* COLONNE */

.footer-col {
  width: 25%;
  padding: 0 var(--space-md);
}

.footer-col h4 {
  font-size: 18px;
  color: var(--light);
  margin-bottom: var(--space-2xl);
  font-weight: 600;
  position: relative;
}

.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(-1 * var(--space-sm));
  background-color: var(--orange);
  height: 3px;
  width: 60px;
  border-radius: var(--rounded-sm);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: var(--space-sm);
}

.footer-col ul li a {
  font-size: 14px;
  color: #bbb;
  text-decoration: none;
  font-weight: var(--font-normal);
  display: block;
  transition: all 0.25s ease;
}

.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 0.5rem;
}

.footer-col .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--space-4xl);
  width: var(--space-4xl);
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 var(--space-sm) var(--space-sm) 0;
  border-radius: var(--rounded-lg);
  color: var(--light);
  transition: all 0.25s ease;
  font-weight: var(--font-bold);
}

.footer-col .social-links a:hover {
  background-color: var(--orange);
  color: var(--light);
}

.footer-bottom {
  text-align: center;
  margin-top: var(--space-4xl);
  font-size: 12px;
  color: #aaaaaa;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .footer-col {
    width: 50%;
    margin-bottom: var(--space-2xl);
  }
}

@media (max-width: 600px) {
  .footer-col {
    width: 100%;
    margin-bottom: var(--space-xl);
  }

  .footer-col h4 {
    font-size: 16px;
    margin-bottom: var(--space-lg);
  }
}
/* ================= MODAL ================= */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(2px);
}

body.modal-open {
  overflow: hidden;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: white;
  padding: var(--space-4xl);
  border-radius: var(--rounded-2xl);
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: none;
  animation: pop 0.3s ease;
  border: 2px solid var(--orange);
}

@media (max-width: 600px) {
  .modal-content {
    padding: var(--space-3xl) var(--space-lg);
    max-width: 90vw;
  }
}

#productModal img {
  max-height: 250px;
  object-fit: contain;
  -o-object-fit: contain;
}

@keyframes pop {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  50% {
    transform: scale(1.02);
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-content h3 {
  color: var(--orange);
  margin-bottom: var(--space-md);
}

.modal-content .error {
  color: #b42318;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.modal-actions .btn {
  justify-content: center;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  color: #000;
}

/* Placeholder aussi en foncé */

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #555;
  opacity: 1;
}/* TOP BOXES */

.top-boxes {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-4xl);
  align-items: stretch;
}

/* C'est quoi (carré) */

.about-card {
  background: var(--light-bg);
  padding: var(--space-xl);
  border-radius: var(--rounded-2xl);
  border: 2px solid #e8e8f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Mes valeurs (rectangle) */

.values-card {
  background: var(--orange);
  color: white;
  padding: var(--space-xl);
  border-radius: var(--rounded-2xl);
}

.values-card ul {
  margin-top: var(--space-md);
}

.values-card li {
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

/* Mobile */

@media (max-width: 900px) {
  .top-boxes {
    grid-template-columns: 1fr;
  }
}


.events-layout {
  background-color: var(--dark);
  display: grid;
  color: var(--light);
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-4xl);
  align-items: flex-start;
  text-align: left;
}

.events-column h2,
.calendar-column h2 {
  text-align: left;
}

.calendar-column p {
  text-align: left;
}

/* Mobile */

@media (max-width: 900px) {
  .events-layout {
    grid-template-columns: 1fr;
  }

  .events-column h2,
  .calendar-column h2,
  .calendar-column p {
    text-align: center;
  }
}
.menu-category {
  text-align: left;
}

.menu-category:nth-of-type(even) {
  background: var(--dark);
  color: var(--light);
  padding: var(--space-4xl) var(--space-xl);
  border-radius: var(--rounded-3xl);
}

/* Texte produits dans les sections foncées */

.menu-category:nth-of-type(even) .desc {
  color: #ddd;
}

.menu-category:nth-of-type(even) h2 {
  color: var(--light);
}

/* scrollbar visible en dark */

.menu-category:nth-of-type(even) .products::-webkit-scrollbar-thumb {
  background: var(--orange);
}
.menu-category {
  margin-bottom: var(--space-6xl);
}.menu-category:nth-of-type(odd) {
  border: 2px solid var(--dark);
  padding: var(--space-4xl) var(--space-xl);
  border-radius: var(--rounded-3xl);
}.menu-category {
  box-sizing: border-box;
}
/* PRODUCT CARD EN SECTION DARK */

.menu-category:nth-of-type(even) .product-card {
  background: #2f3138;
  border-color: #444;
  color: #fff;
}

.menu-category:nth-of-type(even) .product-card .desc {
  color: #ddd;
}

.menu-category:nth-of-type(even) .product-card h3 {
  color: #fff;
}

.menu-category:nth-of-type(even) .price {
  background: var(--orange);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
