﻿@charset "UTF-8";
/* KAZ À POUTINES - Core styles */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@300;400;600;700&display=swap');

:root {
  --red: #c62828;
  --red-dark: #8e1b1b;
  --cream: #fff7ef;
  --brown: #6b3e26;
  --brown-dark: #452617;
  --gold: #f2b563;
  --ink: #1c120d;
  --muted: #5b4a3d;
  --shadow: 0 16px 40px rgba(28, 18, 13, 0.18);
  --shadow-soft: 0 8px 20px rgba(28, 18, 13, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(242, 181, 99, 0.28), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(198, 40, 40, 0.2), transparent 50%),
    linear-gradient(135deg, #fffaf6 0%, #fff0e2 45%, #fff8f1 100%);
  min-height: 100vh;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: repeating-linear-gradient(
      45deg,
      rgba(69, 38, 23, 0.04) 0,
      rgba(69, 38, 23, 0.04) 2px,
      transparent 2px,
      transparent 9px
    );
  pointer-events: none;
  z-index: -1;
}

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

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--red);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 999;
}

.skip-link:focus {
  left: 16px;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 246, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(69, 38, 23, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-family: 'Bebas Neue', 'Trebuchet MS', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--red-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo span {
  background: var(--red);
  color: white;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 14px;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-weight: 600;
  color: var(--brown-dark);
}

.nav-links a {
  position: relative;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: var(--red);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  background: var(--red);
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  padding: 64px 0 40px;
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(242, 181, 99, 0.8), transparent 70%);
}

.eyebrow {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--brown);
  font-size: 12px;
}

.hero h1 {
  font-family: 'Bebas Neue', 'Trebuchet MS', sans-serif;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.95;
  margin: 12px 0 16px;
  color: var(--red-dark);
}

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

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--red);
  color: white;
  box-shadow: var(--shadow-soft);
}

.button.secondary {
  background: white;
  border-color: var(--brown);
  color: var(--brown);
}

.button.ghost {
  border-color: var(--red);
  color: var(--red);
}

.button:hover {
  transform: translateY(-2px);
}

.hero-visual {
  display: grid;
  gap: 16px;
}

.photo-card {
  background: linear-gradient(135deg, #f2b563 0%, #e07242 50%, #b0291e 100%);
  border-radius: 24px;
  padding: 24px;
  color: white;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.photo-card h3 {
  font-family: 'Bebas Neue', 'Trebuchet MS', sans-serif;
  font-size: 32px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.photo-tile {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.photo-tile img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.photo-tile figcaption {
  padding: 10px 12px 14px;
  font-weight: 700;
  color: var(--brown-dark);
}

.photo-placeholder {
  background: linear-gradient(160deg, #fff4ea 0%, #f2b563 100%);
  border-radius: 18px;
  padding: 16px;
  min-height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
  color: var(--brown-dark);
  font-weight: 700;
}

.section {
  padding: 40px 0;
}

.section-title {
  font-family: 'Bebas Neue', 'Trebuchet MS', sans-serif;
  font-size: 36px;
  color: var(--brown-dark);
  margin-bottom: 18px;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 24px;
}

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

.card {
  background: white;
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  font-family: 'Bebas Neue', 'Trebuchet MS', sans-serif;
  font-size: 26px;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(198, 40, 40, 0.1);
  color: var(--red-dark);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

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

.menu-items {
  display: grid;
  gap: 16px;
}

.menu-item {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  background: white;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.menu-item h4 {
  font-size: 20px;
  margin-bottom: 4px;
}

.menu-item p {
  color: var(--muted);
}

.menu-item .price {
  font-weight: 700;
  color: var(--brown-dark);
}

.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.badge {
  border: 1px solid rgba(69, 38, 23, 0.2);
  color: var(--brown);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact-card {
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  font-family: 'Bebas Neue', 'Trebuchet MS', sans-serif;
  font-size: 26px;
  margin-bottom: 10px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: var(--muted);
  border-bottom: 1px dashed rgba(69, 38, 23, 0.12);
}

.map-frame {
  width: 100%;
  border: none;
  border-radius: 20px;
  min-height: 280px;
}

.review-card {
  background: white;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.review-card p {
  color: var(--muted);
  margin: 10px 0 0;
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gallery-item {
  background: white;
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-item figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
}

footer {
  padding: 30px 0 50px;
  border-top: 1px solid rgba(69, 38, 23, 0.1);
  margin-top: 40px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-title {
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.footer-credit {
  margin-top: 18px;
  text-align: center;
  font-weight: 700;
  color: var(--brown-dark);
  letter-spacing: 0.5px;
}

.footer-shimmer {
  display: inline-block;
  background: repeating-linear-gradient(
    110deg,
    #050505 0%,
    #2b1a12 20%,
    #f2b563 40%,
    #2b1a12 60%,
    #050505 80%,
    #050505 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 3s linear infinite;
  text-shadow: 0 0 6px rgba(242, 181, 99, 0.35), 0 0 12px rgba(242, 181, 99, 0.2);
}

.footer-alt {
  margin-left: 6px;
  color: var(--muted);
  font-weight: 600;
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-shimmer {
    animation: none;
    color: var(--red-dark);
    background: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 4vw;
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    flex-direction: column;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .nav-toggle {
    display: inline-flex;
  }
}
