/* Ambassade Films — static single page
   - Keep it simple, readable, and responsive.
*/

@font-face {
  font-family: "Asenine Wide";
  src: url("../fonts/ASENW.ttf") format("truetype");
  font-display: swap;
}

:root{
  --bg: #ffffff;
  --fg: #111111;
  --muted: rgba(17,17,17,.72);
  --shadow: 0 18px 55px rgba(0,0,0,.18);
  --radius: 18px;
  --container: 1080px;
}

*{ box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.45;
}

.container{
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.hero{
  position: relative;
  min-height: 100svh;
  background:
    url("../img/hero.jpg") center left / cover no-repeat;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero__overlay{
  position: absolute;
  inset: 0;
  background: radial-gradient(closest-side at 62% 44%, rgba(255,255,255,.02), rgba(255,255,255,0));
  pointer-events: none;
}

.hero__content{
    position: relative;
    width: min(760px, calc(100% - 48px));
    margin-left: auto;
    margin-right: 24px; /* ou 0 si tu veux collé au bord */
    padding: 24px 20px;
    text-align: center;
}

.hero__title{
  margin: 0 0 10px;
  font-family: "Asenine Wide", system-ui, sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: .02em;
}

.hero__mail{
  display: inline-block;
  font-family: "Asenine Wide", system-ui, sans-serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  color: var(--fg);
  text-decoration: none;
}

.hero__teaser{
    margin-top: 16px;
    width: 100%;
    overflow: hidden;           /* évite les débordements */
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero__teaser img{
    display: block;             /* supprime l’espace baseline et comportements inline */
    width: 100%;                /* responsive */
    height: auto;               /* conserve le ratio */
    max-width: 100%;
}

.hero__mail:hover{ text-decoration: underline; }

.hero__cta{ margin-top: 18px; }

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.15);
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--fg);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.btn:hover{
  background: rgba(255,255,255,.85);
}

.section{
  padding: 64px 0;
}

.section__title{
  margin: 0 0 14px;
  font-family: "Asenine Wide", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 42px);
}

.section__subtitle{
  margin: 0 0 22px;
  color: var(--muted);
}

.kicker{ white-space: nowrap; }

.video{
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.video__iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.section--dark{
  background: #0d0f12;
  color: #f3f5f7;
}
.section--dark .link{ color: #f3f5f7; }
.section--dark .footnote{ color: rgba(243,245,247,.7); }

.grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 18px 18px;
  background: rgba(255,255,255,.03);
}

.card__title{
  margin: 0 0 8px;
  font-family: "Asenine Wide", system-ui, sans-serif;
  font-weight: 400;
  font-size: 22px;
}

.card__text{ margin: 0; }
.list{ margin: 0; padding-left: 18px; }
.list li{ margin: 8px 0; }

.link{
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footnote{
  margin-top: 18px;
  font-size: 14px;
}

.footer{
  padding: 22px 0;
  background: #07090b;
  color: rgba(243,245,247,.75);
}

.footer__inner{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* Mobile adjustments */
@media (max-width: 1024px){
  .hero{
    background-position: 25% center;
  }
  .hero__content{
    padding: 18px 16px;
      margin-left: 20px;
      margin-right: 20px;
      text-align: center;
      width: auto;
      background: rgba(255,255,255,.72);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .grid{
    grid-template-columns: 1fr;
  }
}
