/* ============================================
   Restaurant Le Quai — lequai56.fr
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #112318;
  --bg-light: #1a3328;
  --bg-card: #162b20;
  --gold: #d4a843;
  --gold-light: #e8c96a;
  --ivory: #f5f0e8;
  --ivory-dim: #c5bfb3;
  --white: #ffffff;
  --font-title: 'Cinzel', serif;
  --font-body: 'Lato', sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
  --radius: 8px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--gold-light);
}

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

h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--gold);
  line-height: 1.3;
}

/* Shimmer doré — uniquement sur le h1 hero (ex-h1/h2 retirés pour perf) */
.hero h1 {
  background: linear-gradient(
    -75deg,
    var(--gold) 0%,
    var(--gold) 40%,
    #fff5d0 47%,
    #ffe8a0 50%,
    #fff5d0 53%,
    var(--gold) 60%,
    var(--gold) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: lq-shimmer-rtl 8s ease-in-out infinite;
  filter: drop-shadow(-4px 3px 8px rgba(0,0,0,0.35));
}

@keyframes lq-shimmer-rtl {
  0% { background-position: -50% 0; }
  85% { background-position: -50% 0; }
  95% { background-position: 150% 0; }
  100% { background-position: 150% 0; }
}

h1 { font-size: 2.8rem; letter-spacing: 0.04em; }
h2 { font-size: 2rem; letter-spacing: 0.03em; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(17, 35, 24, 0.97);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--gold);
  text-decoration: none;
}

.nav-logo .anchor {
  font-size: 1.8rem;
}

.nav-links {
  display: none; /* Menu sur le phare en desktop */
  gap: 32px;
  list-style: none;
}

@media (max-width: 768px) {
  .nav-links { display: flex; }
}

.nav-links a {
  color: var(--ivory);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-image:
    linear-gradient(rgba(10, 26, 16, 0.65), rgba(10, 26, 16, 0.82)),
    url('../img/hero_port.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 168, 67, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(212, 168, 67, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 24px;
}

.hero-anchor {
  font-size: 4rem;
  margin-bottom: 24px;
  display: block;
  opacity: 0.8;
}

.hero h1 {
  margin-bottom: 16px;
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--ivory-dim);
  margin-bottom: 40px;
  font-style: italic;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-title);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn:hover {
  background: var(--gold);
  color: var(--bg);
}

.btn-filled {
  background: var(--gold);
  color: var(--bg);
}

.btn-filled:hover {
  background: var(--gold-light);
  color: var(--bg);
}

/* --- Section Titles --- */
.section-title {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--ivory-dim);
  font-style: italic;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), var(--gold-light), transparent);
  margin: 16px auto 0;
  animation: lq-line-pulse 4s ease-in-out infinite;
}

@keyframes lq-line-pulse {
  0%, 100% { width: 60px; opacity: 0.7; }
  50% { width: 90px; opacity: 1; }
}

/* --- About Section --- */
.about {
  background: var(--bg-light);
}

.about-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.9;
}

/* --- Carousel --- */
.carousel-section {
  overflow: hidden;
}

.carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  text-align: center;
}

.carousel-slide img {
  width: 100%;
  max-width: 480px;
  max-height: 420px;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius);
  display: block;
  margin: 0 auto 16px;
}

.carousel-slide .placeholder-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--bg-card);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--ivory-dim);
  border: 1px solid rgba(212, 168, 67, 0.15);
  margin-bottom: 16px;
}

.carousel-slide h4 {
  margin-bottom: 4px;
}

.carousel-slide p {
  color: var(--ivory-dim);
  font-size: 0.9rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--bg);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.3);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.carousel-dot.active {
  background: var(--gold);
}

/* --- Gallery --- */
.gallery {
  background: var(--bg-light);
}

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

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory-dim);
  font-size: 0.9rem;
  border: 1px solid rgba(212, 168, 67, 0.1);
  overflow: hidden;
  transition: transform var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Instagram --- */
.instagram-section {
  padding: 80px 0;
  background: var(--bg);
}
.instagram-section behold-widget {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
}

/* --- Reviews --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 67, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition);
}

.review-card:hover {
  border-color: rgba(212, 168, 67, 0.35);
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 12px;
}

.review-text {
  font-style: italic;
  color: var(--ivory-dim);
  margin-bottom: 16px;
  line-height: 1.6;
}

.review-author {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
}

.reviews-overall {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-overall .rating {
  font-family: var(--font-title);
  font-size: 3rem;
  color: var(--gold);
}

.reviews-overall .rating-sub {
  color: var(--ivory-dim);
  font-size: 0.95rem;
}

/* Skeleton loading */
.review-skeleton {
  min-height: 160px;
  background: linear-gradient(90deg, var(--bg-card) 25%, rgba(212,168,67,0.04) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.6s infinite;
}
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Review card header */
.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ivory);
  margin-bottom: 2px;
}
.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0;
}
.review-time {
  font-size: 0.78rem;
  color: rgba(245,241,217,0.35);
  margin-top: 10px;
}

/* Bouton "Laisser un avis" */
.btn-gold-outline {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--bg);
}

/* --- Menu (Carte) --- */
.menu-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.menu-nav a {
  padding: 8px 20px;
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 24px;
  color: var(--ivory-dim);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.menu-nav a:hover,
.menu-nav a.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.menu-category {
  padding: 48px 0;
  border-bottom: 1px solid rgba(212, 168, 67, 0.12);
}

.menu-category:last-child {
  border-bottom: none;
}

.menu-category h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 0;
  border-bottom: none;
}

.menu-category h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(212, 168, 67, 0.4), transparent);
}

/* Thumbnail par item */
.menu-items-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 10px 18px 10px 10px;
  background: rgba(255, 255, 255, 0.025);
  border-radius: var(--radius);
  border-left: 2px solid rgba(212, 168, 67, 0.3);
  transition: background var(--transition), border-color var(--transition);
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.055);
  border-left-color: var(--gold);
}

/* Miniature par item */
.menu-thumb {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 16px;
  cursor: zoom-in;
}

.menu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.menu-item:hover .menu-thumb img {
  transform: scale(1.18);
}

/* Lightbox au clic */
.menu-thumb img:focus {
  outline: 2px solid var(--gold);
}

/* --- Lightbox overlay --- */
#lq-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#lq-lightbox.active {
  display: flex;
  animation: lbFadeIn 0.2s ease;
}
@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
#lq-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  object-fit: contain;
  cursor: default;
}
#lq-lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
#lq-lightbox-close:hover { color: #fff; }

@media (max-width: 768px) {
  .menu-thumb {
    width: 56px;
    height: 56px;
    margin-right: 12px;
  }
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ivory);
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--ivory-dim);
  margin-top: 3px;
  font-style: italic;
}

.menu-item-price {
  font-family: var(--font-title);
  color: var(--gold);
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 16px;
}

.menu-intro {
  text-align: center;
  font-style: italic;
  color: var(--ivory-dim);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

/* --- Fournisseur list (réutilise menu-item) --- */
.fournisseur-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(212, 168, 67, 0.08);
  border-radius: 8px;
  margin-right: 16px;
}

.fournisseur-ext {
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 16px;
  font-size: 0.8rem;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.75;
  transition: opacity var(--transition);
}
.fournisseur-ext:hover { opacity: 1; text-decoration: underline; }

.fournisseur-wines {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius);
  border-left: 2px solid rgba(212,168,67,0.2);
}
.fournisseur-wines h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.8;
}
.fournisseur-wine-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fournisseur-wine-tag {
  font-size: 0.82rem;
  color: var(--ivory-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,168,67,0.1);
  border-radius: 20px;
  padding: 4px 14px;
}
.fournisseur-wine-tag a {
  color: inherit;
  text-decoration: none;
}
.fournisseur-wine-tag a:hover {
  color: var(--gold);
}

/* --- Suppliers (Fournisseurs) --- */
.suppliers-photo-divider {
  position: relative;
  margin: 64px 0;
  border-radius: var(--radius);
  overflow: hidden;
  height: 320px;
}

.suppliers-photo-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.suppliers-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 32px;
  background: linear-gradient(transparent, rgba(10,26,16,0.85));
  color: var(--ivory-dim);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.supplier-card .supplier-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

/* --- Emploi --- */
.emploi-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.emploi-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.emploi-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10,26,16,0.3), rgba(10,26,16,0.7));
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.emploi-hero-quote {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.04em;
}

.emploi-note {
  text-align: center;
  color: var(--ivory-dim);
  font-style: italic;
  font-size: 0.95rem;
  margin: 0 0 56px;
  padding: 16px;
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: var(--radius);
}

.emploi-photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 0 0 72px;
}

.emploi-photo-split img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}

.emploi-photo-text h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.job-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.job-card-featured {
  border-color: rgba(212,168,67,0.4);
  background: rgba(212,168,67,0.04);
}

.job-apply-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* --- Infos pratiques --- */
.info-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.horaires-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.horaire-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
  border-left: 2px solid var(--gold);
}

.horaire-label {
  font-weight: 700;
  color: var(--ivory);
  font-size: 0.9rem;
}

.horaire-time {
  font-family: var(--font-title);
  color: var(--gold);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.bipper-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.bipper-header h3 {
  margin: 0;
}

.bipper-icon {
  font-size: 1.5rem;
}

.infos-port-photo {
  position: relative;
  margin-top: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
}

.infos-port-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.infos-port-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 32px;
  background: linear-gradient(transparent, rgba(10,26,16,0.8));
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  font-style: italic;
}

@media (max-width: 768px) {
  .emploi-photo-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .emploi-hero { height: 260px; }
  .suppliers-photo-divider { height: 220px; }
  .infos-port-photo { height: 200px; }
}

/* --- Suppliers (Fournisseurs) --- */
.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.supplier-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 67, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.supplier-card:hover {
  border-color: rgba(212, 168, 67, 0.35);
  transform: translateY(-2px);
}

.supplier-card h4 {
  margin-bottom: 8px;
}

.supplier-product {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.supplier-card p {
  color: var(--ivory-dim);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.supplier-link {
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.suppliers-secondary {
  margin-top: 48px;
}

.suppliers-secondary h3 {
  text-align: center;
  margin-bottom: 24px;
}

.suppliers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.supplier-tag {
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 67, 0.12);
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 0.9rem;
  color: var(--ivory-dim);
}

/* --- Emploi --- */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.job-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 67, 0.12);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--transition);
}

.job-card:hover {
  border-color: rgba(212, 168, 67, 0.35);
}

.job-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 16px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 16px;
}

.job-badge.summer {
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
}

.job-badge.permanent {
  background: rgba(100, 200, 140, 0.15);
  color: #7fd4a0;
}

.job-card h4 {
  margin-bottom: 12px;
}

.job-card p {
  color: var(--ivory-dim);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.job-apply {
  text-align: center;
  padding: 40px;
  background: var(--bg-light);
  border-radius: var(--radius);
}

.job-apply p {
  margin-bottom: 16px;
  color: var(--ivory-dim);
}

.job-apply a {
  font-size: 1.1rem;
}

/* --- Infos Pratiques --- */
.infos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.info-block {
  margin-bottom: 32px;
}

.info-block h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.info-block p {
  color: var(--ivory-dim);
  line-height: 1.8;
}

.info-icon {
  color: var(--gold);
  margin-right: 8px;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 168, 67, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.no-reservation {
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
  text-align: center;
}

.no-reservation p {
  color: var(--ivory-dim);
  line-height: 1.7;
}

.no-reservation strong {
  color: var(--gold);
}

/* --- Footer --- */
.footer {
  background: #0a1a10;
  padding: 48px 0 24px;
  border-top: 1px solid rgba(212, 168, 67, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer h4 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer p,
.footer a {
  color: var(--ivory-dim);
  font-size: 0.9rem;
  line-height: 1.8;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 168, 67, 0.08);
  color: var(--ivory-dim);
  font-size: 0.8rem;
}

/* --- Page Header (for inner pages) --- */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  background-image:
    linear-gradient(rgba(10, 26, 16, 0.72), rgba(17, 35, 24, 0.92)),
    url('../img/port3.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-header h1 {
  font-size: 2.4rem;
}

/* Section parallaxe vidéo */
.parallax-video-section {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.parallax-video {
  position: absolute;
  inset: -10% 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.parallax-video.loaded {
  opacity: 1;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8,20,12,0.45) 0%, rgba(8,20,12,0.68) 100%);
  z-index: 1;
}
.parallax-content {
  position: relative;
  z-index: 2;
  color: var(--ivory);
  padding: 32px 40px;
  max-width: 700px;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 4px;
}
.parallax-eyebrow {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.9;
}
.parallax-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ivory);
  margin: 0;
}
.parallax-sub {
  font-size: 1rem;
  color: var(--ivory-dim);
  margin-top: 16px;
  font-style: italic;
  line-height: 1.6;
}

/* Header avec vidéo en fond */
.page-header--video {
  position: relative;
  background-image: none;
  overflow: hidden;
}

.page-header-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.page-header-video.loaded {
  opacity: 1;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 26, 16, 0.55), rgba(17, 35, 24, 0.90));
  z-index: 1;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --- Responsive --- */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  section { padding: 56px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 35, 24, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    backdrop-filter: blur(10px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: flex;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .infos-grid {
    grid-template-columns: 1fr;
  }

  .hero-anchor {
    font-size: 3rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .suppliers-grid {
    grid-template-columns: 1fr;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  .container { padding: 0 16px; }
  section { padding: 40px 0; }
  .hero { min-height: 90vh; }
  .gallery-grid { grid-template-columns: 1fr; }
  .menu-nav { gap: 8px; }
  .menu-nav a { padding: 6px 14px; font-size: 0.8rem; }
}

/* =================================================
   LE QUAI — ANIMATIONS & EFFETS
   ================================================= */

/* -- Ancre flottante hero -- */
@keyframes lq-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

.hero-anchor {
  animation: lq-float 3.5s ease-in-out infinite;
  display: inline-block;
}

/* -- Stagger entrance hero -- */
.hero h1,
.hero-tagline,
.hero .btn {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero-anchor {
  opacity: 0;
  transition: opacity 0.8s ease 0.1s;
}

.hero-loaded .hero-anchor  { opacity: 0.8; }
.hero-loaded h1            { opacity: 1; transform: none; transition-delay: 0.45s; }
.hero-loaded .hero-tagline { opacity: 1; transform: none; transition-delay: 0.72s; }
.hero-loaded .btn          { opacity: 1; transform: none; transition-delay: 0.95s; }

/* -- Marquee band -- */
.marquee-band {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.marquee-inner {
  display: inline-flex;
  align-items: center;
  animation: lq-marquee 24s linear infinite;
  will-change: transform;
}

.marquee-band:hover .marquee-inner {
  animation-play-state: paused;
}

@keyframes lq-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  font-family: var(--font-title);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
  padding: 0 20px;
  flex-shrink: 0;
}

.marquee-sep {
  color: rgba(17, 35, 24, 0.4);
  font-size: 1rem;
  flex-shrink: 0;
}

/* -- Ken Burns sur le carousel -- */
@keyframes lq-kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

.carousel-slide img.kb-active {
  animation: lq-kenburns 6s ease-in-out forwards;
}

/* -- Fade-in directionnels -- */
.fade-in-left {
  opacity: 0;
  transform: translateX(-52px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(52px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* -- Ligne or animée -- */
@keyframes lq-line {
  from { width: 0; opacity: 0; }
  to   { width: 60px; opacity: 1; }
}

.gold-line.lq-line-animated {
  animation: lq-line 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
  width: 0;
  opacity: 0;
}

/* -- Hover lift sur les review cards -- */
.review-card {
  transition: border-color var(--transition), transform 0.35s ease, box-shadow 0.35s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

/* -- Texte décoratif outline en fond -- */
.deco-bg-text {
  position: absolute;
  font-family: var(--font-title);
  font-size: clamp(5rem, 14vw, 11rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 168, 67, 0.06);
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.06em;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* -- Stagger sur grilles (fournisseurs, avis) -- */
.stagger-grid > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.stagger-grid.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.stagger-grid.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
.stagger-grid.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.25s; }
.stagger-grid.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.35s; }
.stagger-grid.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.45s; }
.stagger-grid.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.55s; }

/* -- Counter animation (tabular nums) -- */
.lq-counter {
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
}

/* --- Menus PDF flipbook --- */
.menus-pdf-section {
  padding: 80px 0;
  background: var(--bg-alt);
}
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.menu-tab {
  background: transparent;
  border: 1px solid rgba(212,168,67,0.35);
  color: var(--ivory-dim);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  padding: 10px 28px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
}
.menu-tab:hover, .menu-tab.active {
  background: rgba(212,168,67,0.12);
  border-color: var(--gold);
  color: var(--gold);
}
.flipbook-wrapper {
  display: flex;
  justify-content: center;
  min-height: 400px;
}
.flipbook-container {
  display: none;
  justify-content: center;
}
.flipbook-container.active {
  display: flex;
}
.flipbook-container .book {
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.flipbook-container .page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.flipbook-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
}
.flipbook-btn {
  background: transparent;
  border: 1px solid rgba(212,168,67,0.4);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  padding: 10px 24px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
  letter-spacing: 0.05em;
}
.flipbook-btn:hover {
  background: rgba(212,168,67,0.1);
  border-color: var(--gold);
}
.flipbook-page-info {
  color: var(--ivory-dim);
  font-size: 0.85rem;
  min-width: 50px;
  text-align: center;
}

/* --- Logo animé --- */
.logo-animated {
  display: block;
  margin: 0 auto;
  max-width: 420px;
  width: 80%;
  transform-origin: center center;
  animation: logoGlow 3s ease-in-out infinite, logoWave 7s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 14px rgba(212,168,67,0.4)); }
  50%       { filter: drop-shadow(0 0 28px rgba(212,168,67,0.8)); }
}

@keyframes logoWave {
  0%, 100% { transform: skewX(0deg) translateY(0px); }
  20%       { transform: skewX(0.7deg) translateY(-1px); }
  50%       { transform: skewX(-0.5deg) translateY(1px); }
  80%       { transform: skewX(0.4deg) translateY(-1px); }
}

.logo-shimmer-wrap {
  display: inline-block;
}

/* --- CTA L'Ardoise (bas de specialites.html) --- */
.cta-ardoise {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 168, 67, 0.04) 50%, transparent 100%);
}
.cta-ardoise .ardoise-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 32px;
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 4px;
  background: rgba(8, 20, 12, 0.4);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}
.cta-ardoise .ardoise-card .section-title {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.3;
  margin-bottom: 18px;
}
.cta-ardoise .ardoise-sub {
  font-style: italic;
  color: var(--ivory-dim, rgba(245,241,217,0.55));
  margin: 24px 0 36px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.cta-ardoise .btn {
  font-size: 0.9rem;
}

/* --- Hero CTAs (groupe principal + secondaire) --- */
.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero-cta-secondary {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid rgba(212, 168, 67, 0.55);
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  background: transparent;
  transition: background var(--transition), color var(--transition);
}
.hero-cta-secondary:hover {
  background: var(--gold);
  color: var(--bg);
}

