/* =========================================================
   Project Resonance - custom overrides (clean & stable)
   ========================================================= */

:root {
  --blue: #0A1A2F;
  --gold: #D4AF37;
}

/* Links */
a { color: var(--blue) !important; }
a:hover { color: var(--gold) !important; }

/* Separator under header */
#header {
  border-bottom: 2px solid #0A1A2F !important;  /* bleu foncé */
  padding-bottom: 10px !important;
  margin-bottom: 10px !important;
}

/* Keep logo centered */
#header .logo {
  width: 100% !important;
  text-align: center !important;
  border-bottom: 0 !important;
}
#header .logo img {
  display: block !important;
  margin: 0 auto !important;
  height: 200px !important;
  width: auto !important;
}

/* Slogan */
.slogan {
  margin: 6px 0 10px 0;
}

/* Menu with slash separators */
.menu-slash {
  text-align: center;
  line-height: 1.8;
}
.menu-slash a {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  font-weight: 600;
}
.menu-slash a + a::before {
  content: " / ";
  opacity: 0.6;
  margin: 0 0.35rem;
}

/* Typography tuning */
body, input, select, textarea {
  font-size: 11pt !important;
  line-height: 1.65 !important;
}
h1 { font-size: 2.2em !important; line-height: 1.25 !important; }
h2 { font-size: 1.5em !important; }
h3 { font-size: 1.15em !important; }

/* Buttons */
.button.primary {
  background: var(--blue) !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #fff !important;
}
.button.primary:hover {
  background: var(--gold) !important;
}

/* Home images only */
.pr-hero-img {
  width: 30% !important;
  max-width: 200px !important;
  display: block;
  margin: 20px auto 10px auto !important;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

.pr-thumbs-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px 0;
}
.pr-thumb {
  width: 250px !important;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
/* ==========================================
   HOME layout: text left / hero image right
   ========================================== */
.pr-hero-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  margin-top: 10px;
}

.pr-hero-text {
  flex: 1 1 60%;
  min-width: 320px;
}

.pr-hero-media {
  flex: 0 1 40%;
  min-width: 260px;
  display: flex;
  justify-content: flex-end;
}

/* Image in right column */
.pr-hero-media .pr-hero-img {
  width: 100% !important;
  max-width: 520px !important;
  margin: 0 !important;
}

/* Responsive: stack on smaller screens */
@media (max-width: 980px) {
  .pr-hero-layout {
    flex-direction: column;
  }
  .pr-hero-media {
    justify-content: center;
    width: 100%;
  }
  .pr-hero-text, .pr-hero-media {
    min-width: 0;
  }
}
/* Home layout: text left / image right */
.pr-hero-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  margin-top: 30px;
}

.pr-hero-text {
  flex: 1 1 60%;
  min-width: 320px;
}

.pr-hero-media {
  flex: 0 1 40%;
  min-width: 260px;
  display: flex;
  justify-content: flex-end;
}

/* L'image prend toute la colonne droite */
.pr-hero-media .pr-hero-img {
  width: 100% !important;
  max-width: 520px !important;
  margin: 0 !important;
}

/* Responsive : empile sur mobile */
@media (max-width: 980px) {
  .pr-hero-layout { flex-direction: column; }
  .pr-hero-media { width: 100%; justify-content: center; }
  .pr-hero-text, .pr-hero-media { min-width: 0; }
}