/* =============================================
   STYLE.CSS — PERSONA 3 THEME + VIDEO BG
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- BODY --- */

body {
  min-height: 100vh;
  font-family: 'Big Shoulders Display', 'Arial Black', Arial, sans-serif;
  color: #ffffff;
  overflow-x: hidden;
  position: relative;
}

/* --- VIDEO DE FOND --- */

#bg-video {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* --- OVERLAY : assombrit légèrement la vidéo pour lisibilité --- */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 20, 60, 0.45);
  z-index: -1;
  pointer-events: none;
}

/* --- CONTAINER --- */

.container {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 32px 80px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* --- H1 --- */

h1 {
  font-family: 'Big Shoulders Display', 'Arial Black', sans-serif;
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 6px;
  text-shadow:
    3px 3px 0 #0050a0,
    6px 6px 0 rgba(0, 30, 80, 0.5);
}

/* --- H2 --- */

h2 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 11px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin: 4px 0 28px 2px;
  text-shadow: 1px 1px 0 #003380;
}

/* --- HR --- */

hr {
  border: none;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  margin: 0 0 32px 0;
  align-self: stretch;
  box-shadow: 0 1px 0 rgba(0, 40, 90, 0.5);
}

/* --- H3 & H4 --- */

h3, h4 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ffffff;
  display: inline-block;
  position: relative;
  padding-bottom: 4px;
  text-shadow: 1px 1px 0 #003380;
}

h3 {
  font-size: 14px;
  margin: 32px 0 6px 0;
}

h4 {
  font-size: 13px;
  margin: 40px 0 6px 0;
}

h3::after, h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.45);
}

/* --- LISTES --- */

ul {
  list-style: none;
  margin: 0; padding: 0;
  align-self: stretch;
}

ul li { position: right; }

/* --- LIENS --- */

a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Big Shoulders Display', 'Arial Black', sans-serif;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  padding: 1px 0;
  line-height: 1;
  position: relative;
  z-index: 1;
  text-shadow:
    2px 2px 0 #0050a0,
    4px 4px 0 rgba(0, 30, 80, 0.4);
  transition: color 0.1s, text-shadow 0.1s;
}

li:nth-child(1) a { font-size: 36px; letter-spacing: 3px; }
li:nth-child(2) a { font-size: 28px; letter-spacing: 2px; padding-left: 14px; }
li:nth-child(3) a { font-size: 32px; letter-spacing: 3px; padding-left: 7px; }
li:nth-child(4) a { font-size: 26px; letter-spacing: 2px; padding-left: 20px; }
li:nth-child(5) a { font-size: 30px; letter-spacing: 2px; padding-left: 10px; }

a:hover {
  color: #aaefff;
  text-shadow:
    2px 2px 0 #b020c0,
    4px 4px 0 rgba(140, 0, 140, 0.45);
}

/* --- FOOTER LABEL --- */

.footer-label {
  font-size: 8px;
  letter-spacing: 3px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 32px;
}

/* --- SCROLLBAR --- */

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: rgba(0, 30, 80, 0.5); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.35); }