/* ============================================================
   GAUFRE TOI !! — Feuille de styles principale
   Palette : orange #E04800 / blanc #FFFFFF / crème #FFF3EC
   ============================================================ */

/* ===== VARIABLES ===== */
:root {
  --orange:       #E04800;
  --orange-dark:  #B53900;
  --orange-light: #FF6820;
  --orange-pale:  #FFF3EC;
  --orange-glass: rgba(224, 72, 0, 0.12);
  --dark:         #1A0800;
  --dark-2:       #2D1400;
  --white:        #FFFFFF;
  --cream:        #FFFAF6;
  --text:         #1A0800;
  --text-muted:   #7A5040;
  --border:       rgba(224, 72, 0, 0.18);

  --font-display: 'Pacifico', cursive;
  --font-head:    'Fredoka One', cursive;
  --font-body:    'Nunito', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-pill: 50px;

  --shadow-sm:  0 2px 10px rgba(0,0,0,0.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.14);
  --shadow-orange: 0 8px 24px rgba(224, 72, 0, 0.35);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

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

abbr[title] {
  text-decoration: none;
  color: var(--orange);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5.5rem 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: block;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.65);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--orange);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title.light { color: var(--white); }
.section-title.chalk { color: var(--cream); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 3rem;
  text-align: center;
  line-height: 1.75;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2.1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}

.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: var(--shadow-orange);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: rgba(224, 72, 0, 0.07);
  box-shadow: var(--shadow-orange);
}

.btn-chalk {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 243, 236, 0.35);
  margin-top: 2rem;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.btn-chalk:hover {
  background: rgba(255, 243, 236, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-full {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem 0;
  transition: background 0.35s, backdrop-filter 0.35s, padding 0.35s, box-shadow 0.35s;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.55rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: width 0.3s, height 0.3s;
}

#navbar.scrolled .nav-logo img {
  width: 40px;
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.2s;
  border-radius: 2px;
}

.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }

#navbar.scrolled .nav-links a { color: var(--text); }

.nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.5rem 1.3rem;
  border-radius: var(--radius-pill);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(224, 72, 0, 0.45);
  background: var(--orange-dark) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 201;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 3px;
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}

#navbar.scrolled .nav-toggle span { background: var(--text); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--white);
}

/* Waffle grid pattern — désactivé */
.hero-pattern { display: none; }

/* Ambient blobs */
.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
}

.blob-1 {
  width: 700px;
  height: 700px;
  background: var(--orange);
  top: -250px;
  right: -200px;
  animation: blobFloat 9s ease-in-out infinite;
}

.blob-2 {
  width: 450px;
  height: 450px;
  background: #FF8000;
  bottom: -150px;
  left: -100px;
  animation: blobFloat 12s ease-in-out infinite reverse;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: #FFB800;
  top: 40%;
  left: 30%;
  animation: blobFloat 7s ease-in-out infinite 2s;
  opacity: 0.12;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(15px, -15px) scale(1.04); }
  66%       { transform: translate(-10px, 10px) scale(0.97); }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 1.5rem 5rem;
  max-width: 1100px;
  width: 100%;
}

/* Logo entrance */
.hero-logo-wrap { margin-bottom: 2rem; }

.hero-logo {
  width: 300px;
  height: 300px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  margin: 0 auto;
  animation: logoIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
  filter: drop-shadow(0 8px 32px rgba(224, 72, 0, 0.2));
}

@keyframes logoIn {
  0%   { opacity: 0; transform: scale(0.45) rotate(-8deg); }
  100% { opacity: 1; transform: scale(1)    rotate(0deg); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6.5vw, 4.8rem);
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1rem;
  animation: slideUp 0.8s 0.35s ease both;
}

.hero-sub {
  font-family: var(--font-head);
  font-size: clamp(0.95rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  letter-spacing: 0.12em;
  margin-bottom: 2.75rem;
  animation: slideUp 0.8s 0.55s ease both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideUp 0.8s 0.75s ease both;
}

@keyframes slideUp {
  0%   { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(26, 8, 0, 0.3);
  z-index: 1;
  animation: scrollBounce 2.5s ease-in-out infinite;
  transition: color 0.2s;
}

.hero-scroll:hover { color: var(--orange); }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ===== SECTION CARTE (dark / chalkboard) ===== */
#carte {
  background: var(--dark);
  text-align: center;
}

.menu-card {
  max-width: 640px;
  margin: 2.5rem auto 0;
  background: var(--dark-2);
  border: 1px solid rgba(255, 243, 236, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 10%, rgba(224, 72, 0, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 90%, rgba(224, 72, 0, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.menu-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--cream);
  white-space: nowrap;
}

.menu-dots {
  flex: 1;
  height: 0;
  border-top: 2px dotted rgba(255, 243, 236, 0.18);
  margin: 0 0.6rem;
}

.menu-price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--orange);
  white-space: nowrap;
}

.menu-nature {
  color: rgba(255, 243, 236, 0.55);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 0.3rem;
  margin-bottom: 1.75rem;
}

.menu-or {
  font-style: normal;
  font-weight: 800;
  color: var(--orange-light);
}

.menu-plus {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--orange);
  text-align: center;
  line-height: 1;
  margin: 0.5rem 0 1.5rem;
}

.menu-toppings-block {
  border-top: 1px solid rgba(255, 243, 236, 0.1);
  padding-top: 1.5rem;
}

.toppings-list {
  list-style: none;
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toppings-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--cream);
  font-size: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.toppings-list li:hover {
  background: rgba(224, 72, 0, 0.14);
}

.topping-label {
  flex: 1;
}

.toppings-list li em {
  color: rgba(255, 243, 236, 0.5);
  font-size: 0.85rem;
  white-space: nowrap;
  text-align: right;
}

.topping-icon { font-size: 1.15rem; }

.menu-badge {
  margin-top: 1.75rem;
  display: inline-block;
  padding: 0.55rem 1.2rem;
  background: rgba(224, 72, 0, 0.18);
  border: 1px solid rgba(224, 72, 0, 0.3);
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 0.88rem;
  color: var(--orange-light);
  letter-spacing: 0.04em;
}

/* ===== SECTION ÉVÉNEMENTS ===== */
.section-light {
  background: var(--white);
}

#evenements {
  text-align: center;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 1rem;
}

.event-card {
  padding: 2rem 1.4rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}

.event-card:hover {
  transform: translateY(-7px);
  border-color: var(--orange);
  box-shadow: 0 14px 36px rgba(224, 72, 0, 0.13);
}

.event-icon {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  display: block;
}

.event-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.event-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== SECTION PHILOSOPHIE ===== */
.section-orange {
  background: var(--orange);
  text-align: center;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.pillar {
  text-align: left;
  padding: 2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, background 0.3s;
}

.pillar:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.17);
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.pillar h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.pillar p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* ===== SECTION ZONE ===== */
.section-pale {
  background: var(--orange-pale);
}

#zone {
  text-align: center;
}

.zone-layout {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin: 2.5rem auto 2rem;
  max-width: 750px;
}

.zone-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  flex: 1;
  max-width: 220px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.zone-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.zone-dept {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.zone-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.zone-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.zone-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  position: relative;
  flex-shrink: 0;
}

.zone-hub-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  box-shadow: var(--shadow-orange);
  position: relative;
  z-index: 1;
}

.zone-pin { font-size: 1.75rem; }

.zone-hub-inner strong {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--orange);
}

.zone-hub-inner small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.zone-lines {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  pointer-events: none;
}

.zone-line {
  height: 2px;
  flex: 1;
  background: linear-gradient(to right, transparent, var(--border));
  border-radius: 2px;
}

.zone-line-right {
  background: linear-gradient(to left, transparent, var(--border));
}

.zone-note {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.zone-note a {
  color: var(--orange);
  font-weight: 700;
}

.zone-note a:hover { text-decoration: underline; }

/* ===== SECTION CONTACT ===== */
#contact {
  background: var(--dark);
}

#contact .section-title,
#contact .section-label {
  text-align: center;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 3.5rem;
  margin-top: 3rem;
  text-align: left;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.contact-info > p {
  color: rgba(255, 243, 236, 0.65);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-links {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-icon { font-size: 1.2rem; }

.contact-detail {
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.contact-detail:hover { color: var(--orange-light); }

.contact-insta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Honeypot — piège invisible pour les robots */
.hp-trap {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Formulaire */
.contact-form {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 243, 236, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 243, 236, 0.55);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 243, 236, 0.14);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 243, 236, 0.28);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(224, 72, 0, 0.07);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ff5555;
  animation: shake 0.35s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-5px); }
  75%       { transform: translateX(5px); }
}

.form-group select option {
  background: var(--dark-2);
  color: var(--cream);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* Réponses formulaire */
.form-success {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(224, 72, 0, 0.15);
  border: 1px solid rgba(224, 72, 0, 0.35);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--cream);
}

.form-success span {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.form-success strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--orange-light);
  margin-bottom: 0.3rem;
}

.form-success p {
  font-size: 0.9rem;
  color: rgba(255, 243, 236, 0.7);
}

.form-error {
  margin-top: 1rem;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 80, 80, 0.35);
  border-radius: var(--radius-sm);
  color: #ff9999;
  font-size: 0.88rem;
}

/* ===== FOOTER ===== */
#footer {
  background: #0D0500;
  padding: 3.5rem 0 1.5rem;
  color: rgba(255, 243, 236, 0.55);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 243, 236, 0.08);
  margin-bottom: 1.5rem;
}

.footer-brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-left: 2rem;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--orange); }

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 243, 236, 0.75);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 243, 236, 0.15);
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.social-link:hover {
  color: var(--orange-light);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 243, 236, 0.25);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 900px) {
  .events-grid   { grid-template-columns: 1fr 1fr; }
  .pillars       { grid-template-columns: 1fr; gap: 1.25rem; }
  .contact-wrap  { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .footer-social { grid-column: 1 / -1; align-items: flex-start; }

  .zone-layout {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .zone-card { max-width: 340px; width: 100%; }
  .zone-hub  { flex-direction: row; gap: 1rem; padding: 0; }
  .zone-lines { display: none; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 640px) {
  section { padding: 4rem 0; }

  /* Nav mobile plein écran */
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 8, 0, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
    z-index: 199;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.4rem; color: var(--white) !important; }
  .nav-cta { font-size: 1.4rem !important; padding: 0.7rem 2rem !important; }

  /* Hero */
  .hero-logo { width: 220px; height: 220px; }
  .hero-ctas { flex-direction: column; align-items: center; }

  /* Events */
  .events-grid { grid-template-columns: 1fr; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner  { grid-template-columns: 1fr; gap: 2rem; }
  .footer-social { align-items: flex-start; }
  .footer-nav    { padding-left: 0; }

  .menu-card { padding: 1.5rem 1.2rem; }
}
