/* ════════════════════════════════════════════════════════════════════════
   pages.css — habillage commun des pages internes (infos, news, moodboards,
   confirmer, cadeaux…). Reprend le vocabulaire graphique de index.html :

     · fond assets/Background.webp voilé de crème (au lieu du aplat)
     · navigation ronde en coin + panneau plein écran, identiques à l'accueil
     · filets or (--gold) et double filet « faire-part » sur les panneaux
     · titres Playfair, libellés Jost espacés, esperluette.webp en séparateur
     · plus de bandeaux photo génériques en haut de page

   À charger APRÈS css/style.css.
   ════════════════════════════════════════════════════════════════════════ */

/* vert des prenoms, repris par tous les titres des pages internes */
:root { --vert: #4a7a5c; }

/* ─── fond ──────────────────────────────────────────────────────────── */
html {
  background: url('../assets/Background.webp') center / cover no-repeat fixed, var(--cream);
}
body {
  min-height: 100vh;
  /* plus de voile crème : on garde exactement le fond de l'accueil.
     La lisibilité est assurée par les panneaux .panel, translucides. */
  background: transparent;
}

/* ─── la barre de nav vitrée est remplacée par la nav de l'accueil ──── */
nav, .nav-mobile-menu { display: none !important; }

.corner-nav-btn {
  position: fixed; top: 20px; left: 20px; z-index: 200;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(250,247,242,0.7);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(196,70,84,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  cursor: pointer; box-shadow: 0 4px 20px rgba(44,37,32,0.1); transition: all .3s;
}
.corner-nav-btn:hover { background: rgba(196,70,84,0.08); }
.corner-nav-btn span { display: block; width: 18px; height: 2px; background: #c44654; transition: all .3s; }
.corner-nav-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.corner-nav-btn.open span:nth-child(2) { opacity: 0; }
.corner-nav-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.site-logo-fixed {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%); z-index: 150;
  background: rgba(250,247,242,0.55);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 6px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; box-shadow: 0 4px 20px rgba(44,37,32,0.06);
}
.site-logo-fixed img { width: 100%; height: 100%; object-fit: contain; display: block; }

.corner-nav-panel {
  position: fixed; inset: 0; z-index: 190; background: rgba(250,247,242,0.985);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .4s ease;
}
.corner-nav-panel.open { opacity: 1; pointer-events: all; }
.corner-nav-list { list-style: none; text-align: center; }
.corner-nav-list li { margin: 6px 0; }
.corner-nav-list a {
  font-family: 'Playfair Display', serif; font-size: clamp(22px,4vw,36px); font-style: italic;
  color: var(--ink); text-decoration: none; transition: color .3s;
  display: inline-block; padding: 4px 10px;
}
.corner-nav-list a:hover, .corner-nav-list a.current { color: #c44654; }
.corner-nav-sub { display: block; margin-top: 34px; }
.corner-nav-sub a {
  font-family: 'Jost', sans-serif; font-style: normal; font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted); margin: 0 14px; text-decoration: none;
}
.corner-nav-sub a:hover { color: var(--rose); }

/* ─── en-tête de page ───────────────────────────────────────────────── */
.page-header {
  background: transparent; padding: 122px 24px 34px;
  position: relative; overflow: hidden; text-align: center;
}
.page-header::before { display: none; }   /* le dégradé est remplacé par le vrai fond */
.page-header .subtitle {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500;
  color: var(--rose); margin-bottom: 14px; display: block;
}
.page-header h1 {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: clamp(38px,6vw,66px); line-height: 1.12; color: var(--vert); margin-bottom: 0;
}
.page-header h1 em { font-style: italic; color: var(--rose); }

/* esperluette.webp en ornement, comme sur les volets de l'accueil */
.orn-sep {
  display: block; width: clamp(34px,4.6vw,56px); height: auto;
  margin: 22px auto 0; opacity: 0.85;
}
.orn-sep.spaced { margin: 34px auto; }

/* fleurs d'angle, comme les .deco-flower des sections de l'accueil */
.header-flower { position: absolute; bottom: -14px; pointer-events: none; opacity: 0.7; }
.header-flower.left  { left: 1.5vw;  width: min(130px,13vw); }
.header-flower.right { right: 1.5vw; width: min(105px,11vw); }

.page-intro {
  max-width: 720px; margin: 6px auto 0; padding: 0 24px;
  text-align: center; color: var(--ink-soft); font-size: 16px; line-height: 1.85;
}

/* ─── panneaux « papier » (remplacent les cartes blanches) ──────────── */
.panel {
  position: relative;
  background: rgba(255,249,244,0.86);
  border: 1px solid rgba(196,160,104,0.32);
  padding: 44px 40px;
  box-shadow: 0 2px 24px rgba(44,37,32,0.04);
  transition: border-color .35s, box-shadow .35s;
}
/* double filet intérieur : le détail qui fait faire-part */
.panel::after {
  content: ''; position: absolute; inset: 5px;
  border: 1px solid rgba(196,160,104,0.18); pointer-events: none;
}
.panel.no-filet::after { display: none; }
.panel:hover {
  border-color: rgba(196,160,104,0.6);
  box-shadow: 0 6px 34px rgba(196,160,104,0.13);
}
.panel > * { position: relative; z-index: 1; }

.panel h3, .panel-title {
  font-family: 'Playfair Display', serif; font-weight: 500; font-style: normal;
  font-size: clamp(23px,2.7vw,31px); color: var(--vert); margin-bottom: 18px;
}
.panel p, .panel li { color: var(--ink-soft); font-size: 15.5px; line-height: 1.85; }
.panel strong { color: var(--ink-soft); font-weight: 400; }
.panel a { color: var(--rose); }

/* sous-panneau (hôtels, dates…) : plus léger, sans double filet */
.subpanel {
  border: 1px solid rgba(196,160,104,0.26); background: rgba(245,240,232,0.6);
  padding: 20px 22px; transition: border-color .3s, background .3s;
}
.subpanel:hover { border-color: rgba(196,160,104,0.55); background: rgba(245,240,232,0.9); }

/* libelles de rubrique : Jost 300 etait trop fin en petites capitales roses */
.section-label { font-size: 11px; letter-spacing: 0.26em; font-weight: 500; }

/* ─── boutons ───────────────────────────────────────────────────────── */
.btn-gold { border-color: var(--gold); color: var(--gold); }
.btn-gold:hover { background: var(--gold); color: #fff; }

/* ─── pied de page ──────────────────────────────────────────────────── */
footer {
  background: transparent; border-top: 1px solid rgba(196,160,104,0.3);
  margin-top: 60px; padding: 40px 24px 44px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 16px; text-align: center;
}
/* pied de page allégé : ni filet, ni navigation, ni signature */
footer.footer-bare { border-top: none; }
.footer-orn { width: 38px; height: auto; opacity: 0.8; display: block; margin: 0 auto; }
.footer-logo {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 22px; color: #4a7a5c; letter-spacing: 0.04em;
}
.footer-links { justify-content: center; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: var(--muted); }

/* ─── mobile ────────────────────────────────────────────────────────── */
@media(max-width:768px) {
  .page-header { padding: 96px 20px 26px; }
  .header-flower { display: none; }
  .panel { padding: 30px 22px; }
  .panel::after { inset: 4px; }
  footer { margin-top: 44px; }
}
