/* Base */

html, body {
  width: 100%;
  overflow-x: hidden;
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.7;
  background: #111;
  color: #f5f5f5;
}

/* Structure */
header {
  padding: 10px 28px 0px;
  max-width: 1000px;
  margin: 0 auto;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px 40px;
}

footer {
  border-top: 1px solid #222;
  padding: 20px 28px;
  color: #777;
  font-size: 0.9em;
  text-align: center;
}

/* Titres */
h1 {
  margin: 0;
  font-size: 2.0em;
  letter-spacing: 0.7px;
}

h2 {
  font-weight: normal;
  margin-top: 40px;
  color: #eee;
}

/* Texte */
p {
  font-size: 1.05em;
  color: #ddd;
}

ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

ul li {
  margin-bottom: 8px;
}

/* Liens */
a {
  color: #e0c28c; /* doré chaud, whisky */
  text-decoration: none;
  border-bottom: 0.5px solid rgba(224, 194, 140, 0.4);
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

a:hover {
  color: #f2d9a6;
  border-bottom-color: rgba(242, 217, 166, 0.9);
}

/* Logo */

.logo {
  max-width: 70px;
  margin-bottom: 0px;
  opacity: 0.95;
}



/* Home editorial highlight */

.home-editorial {
  margin-top: 60px;
}

.home-eyebrow {
  font-size: 0.75em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 0.1px;
}

.home-editorial-title {
  margin: 0;
  font-size: 1.6em;
}

.home-editorial-excerpt {
  margin-top: 12px;
  max-width: 640px;
  color: #ccc;
}

.hero-band {
  width: 100vw;
  max-height: 400px;
  overflow: hidden;
  margin: 20px 0;
  margin-left: calc(50% - 50vw);
  position: relative;
}


.hero-band img {
  width: 100%;
  height: auto;            /* ← IMPORTANT */
  object-fit: cover;
  object-position: center 60%;
  display: block;

}


img {
  max-width: 100%;
}


/* =========================
   HERO – TITRE SUR IMAGE
========================= */

.hero-band {
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  background: linear-gradient(
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.55)
  );
}

.hero-overlay h1 {
  font-size: 2.0em;
  letter-spacing: 0.06em;
  margin: 0 0 12px 0;
  color: #f5f5f5;
}

.hero-overlay p {
  font-size: 0.9em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d0c19a;
}

@media (max-width: 600px) {
  .hero-overlay h1 {
    font-size: 1.5em;
  }
}


@media (max-width: 600px) {
  .hero-band {
    max-height: none;
    height: 55vh;
  }

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


@media (max-width: 600px) {
  .hero-band img {
    object-position: center 50%;
  }
}

/* Suppression totale du soulignement sur le logo */
.logo a,
.logo a:hover,
.logo a:visited {
  text-decoration: none;
  color: inherit;
}

/* LOGO – suppression totale de toute ligne */
.logo a,
.logo a *,
header a,
header a * {
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: none !important;
}

/* Pseudo-éléments (souvent la vraie cause) */
.logo a::after,
.logo a::before,
header a::after,
header a::before {
  content: none !important;
  display: none !important;
}

header a img {
  border: 0 !important;
  box-shadow: none !important;
}


@media (max-width: 600px) {
  .hero-overlay {
    justify-content: flex-end;
    padding-bottom: 14vh;
  }

  .hero-overlay h1 {
    margin-bottom: 6px;
  }

  .hero-overlay p {
    margin-top: 0;
  }
}

