﻿/* =====================================================
   T-GALLERY — STYLESHEET
   Tenor Sans + Syne
   bleu #0077A8 · cyan #00B4D8 · clair #F7FAFD · marine #0D2240
   ===================================================== */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --color-sand:        #0077A8;
  --color-gold:        #00B4D8;
  --color-cream:       #F7FAFD;
  --color-dark:        #0D2240;
  --color-white:       #FFFFFF;
  --color-text-light:  rgba(13, 34, 64, 0.75);
  --color-text-muted:  rgba(13, 34, 64, 0.45);

  --font-display: 'Tenor Sans', sans-serif;
  --font-body:    'Syne', sans-serif;

  --max-width:    1200px;
  --nav-height:   72px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-dark);
  background-color: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul { list-style: none; }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section {
  padding: 9rem 0;
}

.section--cream { background-color: var(--color-cream); }
.section--dark  { background-color: var(--color-dark); }

/* ===== SECTION HEADER ===== */
.section__header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section__eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.1rem;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: 0.04em;
  line-height: 1.18;
  color: var(--color-dark);
}

.section__title--light {
  color: rgba(247, 250, 253, 0.92);
}

.section__rule {
  width: 56px;
  height: 1px;
  background: var(--color-sand);
  margin: 1.75rem auto 0;
  opacity: 0.7;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  border-radius: 2px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
}

.btn--outline:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}

.btn--sand {
  background: var(--color-sand);
  border: 1px solid var(--color-sand);
  color: var(--color-dark);
  font-weight: 400;
}

.btn--sand:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--color-white);
  border-bottom: 1px solid rgba(13, 34, 64, 0.1);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(13, 34, 64, 0.08);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo { display: flex; align-items: center; }

.nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.hero__logo-img {
  height: 80px;
  width: auto;
  display: block;
  margin: 0 auto 1.5rem;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer__logo-img {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  mix-blend-mode: screen;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--color-dark);
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-sand);
  transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-sand);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--color-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.06) 0%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--nav-height) + 3rem) 2.5rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  animation: heroReveal 1.4s var(--ease-out) both;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__logo {
  height: 52px;
  width: auto;
  margin: 0 auto 0.5rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.hero__ornament {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 180, 216, 0.6), transparent);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.75rem, 7.5vw, 5.75rem);
  letter-spacing: 0.06em;
  line-height: 1.14;
  color: var(--color-cream);
}

.hero__title em {
  font-style: italic;
  color: var(--color-gold);
}

.hero__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  color: rgba(250, 247, 242, 0.5);
  text-transform: uppercase;
}

.hero__hours {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(250, 247, 242, 0.32);
}

.hero__tenor {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.6;
  transition: opacity 0.3s;
  z-index: 2;
}

.hero__tenor:hover { opacity: 1; }

.hero__tenor-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  text-transform: uppercase;
}

.hero__tenor-logo {
  height: 52px;
  width: auto;
  display: block;
}

/* ===== LE CENTRE ===== */
.centre__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 0;
}

.centre__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 4rem;
  text-align: center;
}

.centre__stat-sep {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(0, 119, 168, 0.35), transparent);
}

.centre__stat-number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 6vw, 5.5rem);
  color: var(--color-sand);
  letter-spacing: 0.02em;
  line-height: 1;
}

.centre__stat-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.45);
  margin-top: 0.5rem;
}

.centre__text {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.centre__text p {
  font-size: 1.0625rem;
  line-height: 1.82;
  color: rgba(26, 26, 26, 0.68);
}

/* ===== ENSEIGNES ===== */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 1.75rem;
  margin-bottom: 3rem;
}

.filter-tab {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(247, 250, 253, 0.45);
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
  background: none;
  cursor: pointer;
}

.filter-tab:hover {
  color: rgba(250, 247, 242, 0.7);
}

.filter-tab.active {
  color: var(--color-sand);
  border-bottom-color: var(--color-sand);
}

.enseignes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(200, 169, 110, 0.06);
  border: 1px solid rgba(200, 169, 110, 0.06);
  border-radius: 2px;
}

.enseigne-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 169, 110, 0.12);
  padding: 2rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s var(--ease-out);
  border-radius: 2px;
}

.enseigne-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-4px);
}

.enseigne-card.hidden {
  display: none;
}

.enseigne-card__logo {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.enseigne-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.enseigne-card__letter {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--color-sand);
  line-height: 1;
}

.enseigne-card__name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.1875rem;
  letter-spacing: 0.04em;
  color: rgba(247, 250, 253, 0.9);
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.enseigne-card__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  color: rgba(247, 250, 253, 0.45);
  margin-bottom: 1.25rem;
  flex: 1;
  line-height: 1.55;
}

.enseigne-card__tag {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.28);
}

/* ===== FOOD COURT ===== */
.foodcourt-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.food-card {
  background: var(--color-white);
  border: 1px solid rgba(200, 169, 110, 0.18);
  border-radius: 2px;
  padding: 2.25rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: calc(33.333% - 1rem);
  min-width: 210px;
  transition: box-shadow 0.3s ease, transform 0.35s var(--ease-out), border-color 0.3s ease;
}

.food-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.07);
  border-color: rgba(200, 169, 110, 0.45);
}

.food-card__logo {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.food-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.food-card__logo--letter span {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--color-sand);
  line-height: 1;
}

.food-card__type {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-sand);
  display: block;
  margin-bottom: 0.35rem;
}

.food-card__name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.375rem;
  letter-spacing: 0.04em;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.food-card__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.58);
}

/* ===== INFOS PRATIQUES ===== */
.infos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(200, 169, 110, 0.06);
  border: 1px solid rgba(200, 169, 110, 0.06);
  border-radius: 2px;
  margin-bottom: 3rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 169, 110, 0.1);
  padding: 3rem 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-card__icon {
  color: var(--color-sand);
  margin-bottom: 0.5rem;
}

.info-card__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.45);
}

.info-card__main {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.625rem;
  letter-spacing: 0.03em;
  color: rgba(247, 250, 253, 0.9);
  line-height: 1.2;
}

.info-card__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  color: rgba(247, 250, 253, 0.45);
}

.map-wrap {
  border: 1px solid rgba(200, 169, 110, 0.12);
  border-radius: 2px;
  overflow: hidden;
}

.map-wrap iframe {
  display: block;
  filter: grayscale(20%) contrast(0.95);
}

/* ===== ÉVÉNEMENTS ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.event-card {
  border: 1px solid rgba(200, 169, 110, 0.18);
  border-radius: 2px;
  padding: 2.5rem 2rem;
  display: flex;
  gap: 1.75rem;
  background: var(--color-white);
  transition: box-shadow 0.3s ease, transform 0.35s var(--ease-out), border-color 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.07);
  border-color: rgba(200, 169, 110, 0.45);
}

.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
}

.event-card__day {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--color-sand);
  line-height: 1;
}

.event-card__month {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.38);
  margin-top: 0.3rem;
}

.event-card__body {
  flex: 1;
}

.event-card__category {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-sand);
  display: block;
  margin-bottom: 0.45rem;
}

.event-card__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--color-dark);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.event-card__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.56);
}

/* ===== NOS CENTRES ===== */
.centres-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(200, 169, 110, 0.06);
  border: 1px solid rgba(200, 169, 110, 0.06);
  border-radius: 2px;
}

.centre-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 169, 110, 0.1);
  padding: 2.75rem 2.5rem;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.centre-card:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(200, 169, 110, 0.22);
}

.centre-card--main {
  grid-column: 1;
  grid-row: 1 / 3;
  min-height: 380px;
  background: rgba(200, 169, 110, 0.04);
  justify-content: flex-end;
}

.centre-card__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  color: var(--color-sand);
  opacity: 0.7;
  margin-bottom: auto;
  padding-bottom: 2rem;
}

.centre-card--main .centre-card__num {
  position: absolute;
  top: 2.75rem;
  left: 2.5rem;
  margin-bottom: 0;
  padding-bottom: 0;
}

.centre-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.centre-card__badge {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.35);
  margin-bottom: 0.35rem;
}

.centre-card__badge--open {
  color: var(--color-sand);
}

.centre-card__name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: rgba(247, 250, 253, 0.9);
  line-height: 1.2;
}

.centre-card--main .centre-card__name {
  font-size: 2.25rem;
}

.centre-card__ville {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  color: rgba(247, 250, 253, 0.45);
}

.centre-card__detail {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  color: rgba(250, 247, 242, 0.3);
  margin-top: 0.75rem;
  line-height: 1.65;
}

/* ===== NEWSLETTER ===== */
.newsletter-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.6);
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.newsletter__field {
  display: flex;
  border: 1px solid rgba(200, 169, 110, 0.28);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.newsletter__field:focus-within {
  border-color: rgba(200, 169, 110, 0.6);
}

.newsletter__input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  background: var(--color-white);
  border: none;
  color: var(--color-dark);
  outline: none;
  min-width: 0;
}

.newsletter__input::placeholder {
  color: rgba(26, 26, 26, 0.32);
}

.newsletter__field .btn--sand {
  border-radius: 0;
  border: none;
  flex-shrink: 0;
  padding: 0.9rem 1.75rem;
  font-size: 0.75rem;
}

.newsletter__rgpd {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  color: rgba(26, 26, 26, 0.35);
  line-height: 1.55;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--color-dark);
  padding: 5.5rem 0 3rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 5rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200, 169, 110, 0.1);
  margin-bottom: 2rem;
}

.footer__logo {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 1.0625rem;
  color: rgba(250, 247, 242, 0.38);
  letter-spacing: 0.04em;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__nav a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  color: rgba(250, 247, 242, 0.4);
  transition: color 0.25s ease;
}

.footer__nav a:hover {
  color: var(--color-sand);
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer__social-link {
  color: rgba(250, 247, 242, 0.3);
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
}

.footer__social-link:hover {
  color: var(--color-sand);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__group {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  color: rgba(250, 247, 242, 0.28);
}

.footer__group a {
  color: rgba(200, 169, 110, 0.65);
  transition: color 0.25s ease;
}

.footer__group a:hover {
  color: var(--color-sand);
}

.footer__tenor-link {
  color: var(--color-sand);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(200, 169, 110, 0.4);
  transition: border-color 0.3s;
}
.footer__tenor-link:hover {
  border-bottom-color: var(--color-gold);
}

.footer__copy {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  color: rgba(250, 247, 242, 0.2);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* ≤ 1024px */
@media (max-width: 1024px) {
  .enseignes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ≤ 768px */
@media (max-width: 768px) {
  .section { padding: 6rem 0; }
  .container { padding: 0 1.5rem; }

  /* Nav */
  .nav__burger { display: flex; }

  .footer__logo-img {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  mix-blend-mode: screen;
}

.nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 0;
    gap: 1.75rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease-out), opacity 0.35s ease;
    border-bottom: 1px solid rgba(13, 34, 64, 0.1);
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  /* Hero */
  .hero__title {
    font-size: clamp(3rem, 9vw, 4.25rem);
  }

  /* Stats */
  .centre__stats {
    flex-direction: column;
    gap: 2.5rem;
  }

  .centre__stat { padding: 0; }
  .centre__stat-sep { display: none; }

  /* Enseignes */
  .enseignes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Food court */
  .food-card {
    width: calc(50% - 0.75rem);
  }

  /* Infos */
  .infos-grid {
    grid-template-columns: 1fr;
  }

  /* Events */
  .events-grid {
    grid-template-columns: 1fr;
  }

  .events-grid .event-card:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

  /* Nos Centres */
  .centres-grid {
    grid-template-columns: 1fr;
  }

  .centre-card--main {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .centre-card--main .centre-card__num {
    position: static;
    margin-bottom: 0;
    padding-bottom: 1.5rem;
  }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__social {
    flex-direction: row;
    gap: 1.75rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
  }
}

/* ≤ 480px */
@media (max-width: 480px) {
  .section { padding: 5rem 0; }

  .section__title {
    font-size: 2.25rem;
  }

  .hero__title {
    font-size: clamp(2.75rem, 10vw, 3.5rem);
  }

  .hero__inner {
    gap: 1.35rem;
  }

  .enseignes-grid {
    grid-template-columns: 1fr;
  }

  .food-card {
    width: 100%;
  }

  .centre__stat-number {
    font-size: 3.75rem;
  }

  .infos-grid {
    grid-template-columns: 1fr;
  }

  .footer__top {
    gap: 2rem;
  }
}

/* ===== LOGO TEXTE (remplacement logo.jpeg) ===== */
.logo-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--color-sand);
  line-height: 1.2;
  text-transform: uppercase;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: rgba(200, 169, 110, 0.6);
  margin-top: 0.15em;
}

.hero .logo-text {
  color: var(--color-cream);
}

.hero .logo-text span {
  color: rgba(250, 247, 242, 0.5);
}

.footer .logo-text {
  color: var(--color-sand);
}

/* ===== LOGOS ENSEIGNES & FOOD COURT ===== */
.enseigne-logo-wrap {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enseigne-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.enseigne-logo[src$=".jpg"],
.enseigne-logo[src$=".webp"] {
  mix-blend-mode: multiply;
}

.enseigne-initial {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-sand);
  line-height: 1;
}

.footer__tenor-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid rgba(180,180,180,0.5);
  border-radius: 14px;
  padding: 10px 16px;
  vertical-align: middle;
  transition: box-shadow 0.3s;
}
.footer__tenor-link:hover .footer__tenor-badge {
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.footer__tenor-logo {
  height: 52px;
  width: auto;
  display: block;
}
.footer__tenor-link:hover .footer__tenor-logo {
  height: 52px;
  width: auto;
  display: block;
}
.hero__tenor-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid rgba(180,180,180,0.5);
  border-radius: 14px;
  padding: 8px 12px;
  vertical-align: middle;
}