/* Page override — accueil utilise --text (near-black) */
.pdlr-page {
  color: var(--text);
  background: var(--white);
}

/* ── HERO ── */
.pdlr-hero {
  min-height: 90vh;
  padding-top: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.pdlr-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(37,113,130,0.92) 0%, rgba(37,113,130,0.75) 60%, rgba(37,113,130,0.4) 100%),
    var(--pdlr-img-5356) center/cover no-repeat;
}

.pdlr-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  animation: pdlrFadeUp 1s ease both;
  margin-top: -100px;
}

.pdlr-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.pdlr-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.pdlr-hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.pdlr-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.pdlr-hero-actions .pdlr-btn-primary { color: var(--white); }

/* ── TICKER ── */
.pdlr-ticker {
  background: var(--gold);
  padding: 0.9rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
}

.pdlr-ticker-inner {
  display: flex;
  width: max-content;
  animation: pdlrTicker 30s linear infinite;
}

.pdlr-ticker-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0 3rem;
}

.pdlr-ticker-item span { color: var(--gold); }

/* ── SECTIONS ── */
.pdlr-section { padding: 6rem 4rem; }
.pdlr-section-dark  { background: var(--navy); }
.pdlr-section-cream { background: var(--white); }

/* ── PRODUITS ── */
.pdlr-produits-section {
  padding: 6rem 4rem;
  background: var(--white);
}

.pdlr-produits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.pdlr-produits-collage {
  position: relative;
  height: 540px;
}

.pdlr-collage-img {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
}

.pdlr-collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdlr-collage-img--top {
  width: 68%;
  height: 57%;
  top: 0;
  left: 0;
  z-index: 3;
  box-shadow: 0 16px 48px rgba(13,34,51,0.22);
}

.pdlr-collage-img--mid {
  width: 55%;
  height: 45%;
  top: 28%;
  right: 0;
  z-index: 2;
  box-shadow: 0 12px 36px rgba(13,34,51,0.16);
}

.pdlr-collage-img--bottom {
  width: 62%;
  height: 50%;
  bottom: 0;
  left: 10%;
  z-index: 1;
  box-shadow: 0 10px 32px rgba(13,34,51,0.14);
}

.pdlr-collage-badge {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-6deg);
  z-index: 4;
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
}

.pdlr-collage-badge .badge-num {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.pdlr-collage-badge .badge-txt {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  line-height: 1.4;
  margin-top: 2px;
}

.pdlr-cats-list {
  list-style: none;
  margin: 2rem 0 2.5rem;
}

.pdlr-cat-item { border-bottom: 1px solid rgba(13,34,51,0.1); }
.pdlr-cat-item:first-child { border-top: 1px solid rgba(13,34,51,0.1); }

.pdlr-cat-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  text-decoration: none;
  color: var(--navy);
  transition: color 0.2s, padding-left 0.2s;
}

.pdlr-cat-link:hover { color: var(--teal); padding-left: 0.4rem; }

.pdlr-cat-icon {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.pdlr-cat-link:hover .pdlr-cat-icon { transform: scale(1.4); }

.pdlr-cat-name {
  font-size: 0.92rem;
  font-weight: 400;
  flex: 1;
  line-height: 1.4;
}

.pdlr-cat-arrow {
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}

.pdlr-cat-link:hover .pdlr-cat-arrow { opacity: 1; transform: translateX(0); }

/* ── PLATS ── */
.pdlr-plats-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: center;
}

.pdlr-plats-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pdlr-plats-images img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
}

.pdlr-plats-images img:first-child {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.pdlr-plats-text .pdlr-title {
  margin-bottom: 1.5rem;
}

.pdlr-plats-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 1.5rem;
}

.pdlr-plats-text .pdlr-btn-primary {
  display: block;
  width: fit-content;
  margin-top: 2rem;
}

.pdlr-quote {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 2rem;
  border-radius: 0 4px 4px 0;
}

/* ── INFOS ── */
.pdlr-infos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

a.pdlr-info-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.pdlr-info-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  border: 2px solid rgb(201, 168, 76);
  border-top: 3px solid var(--gold);
  transition: transform 0.2s;
}

.pdlr-info-card:hover { transform: translateY(-4px); }

.pdlr-info-card h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.pdlr-info-card p, .pdlr-info-card li {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--slate);
}

.pdlr-info-card ul { list-style: none; }

.pdlr-saison {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-top: 0.8rem;
  margin-bottom: 0.3rem;
}

/* ── ACCUEIL — bouton spécifique plats (texte blanc sur gold) ── */
.pdlr-plats-btn { color: var(--white); }
/* ── ACCUEIL — bouton CTA taille élargie ── */
.pdlr-cta .pdlr-btn-primary { font-size: 0.9rem; padding: 1rem 2.5rem; }

/* ── CTA ── */
.pdlr-cta {
  background: var(--cta);
  text-align: center;
  padding: 7rem 4rem;
}

.pdlr-cta h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6rem;
}

.pdlr-cta p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pdlr-section { padding: 4rem 1.5rem; }
  .pdlr-produits-section { padding: 4rem 1.5rem; }
  .pdlr-produits-layout { grid-template-columns: 1fr; gap: 3rem; }
  .pdlr-produits-collage { height: 400px; }
  .pdlr-plats-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .pdlr-plats-images img:first-child { grid-column: span 2; }
  .pdlr-infos-grid { grid-template-columns: 1fr; }
  .pdlr-cta { padding: 5rem 1.5rem; }
}

@media (max-width: 600px) {
  .pdlr-section { padding: 2.5rem 1rem; }
  .pdlr-produits-section { padding: 2.5rem 1rem; }
  .pdlr-produits-collage { height: 300px; }
  .pdlr-collage-badge { width: 64px; height: 64px; }
  .pdlr-collage-badge .badge-num { font-size: 0.8rem; }
  .pdlr-plats-images { grid-template-columns: 1fr; }
  .pdlr-plats-images img:first-child { grid-column: span 1; aspect-ratio: 3/2; }
}
