:root{
  --red: #ff0000;
}

/* =========================
   Déclaration de la police locale
   Place les fichiers ici : /fonts/KozMinPr6N-Regular.woff2 et/ou .otf
   (Le chemin est relatif à CE fichier CSS, donc ../fonts/…)
   ========================= */
@font-face {
  font-family: 'Kozuka Mincho Pr6N';
  src: url('../fonts/KozMinPr6N-Regular.woff2') format('woff2'),
       url('../fonts/KozMinPr6N-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============ Base ============ */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-y: scroll;
  font-family: 'Instrument Serif', serif; /* police par défaut (titres) */
}

/* ============ Boutons ============ */
.home-button_me, .autres-button-me, .contact-button {
  position: fixed;
  top: 20px;
  z-index: 1000;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  transition: color 0.3s;
  color: var(--red); /* tous en rouge */
}

.home-button_me { left: 20px; }
.autres-button-me { right: 20px; }
.contact-button { right: 120px; } /* Me, à gauche de Autres */

/* Au survol : juste la couleur (pas d'italique) */
.home-button_me:hover,
.contact-button:hover,
.autres-button-me:hover {
  color: var(--red);
}

/* ============ Layout ============ */
.catalogue-container {
  display: flex;
  height: 100vh;
  width: 100%;
  background-color: #f5f5f5;
}

/* Colonne texte à gauche */
.catalogue-text {
  flex: 0 1 20%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(255,255,255,0.9);
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

/* Colonne image à droite */
.catalogue-content {
  flex: 1;
  background-image: url('../import/image_accueil.webp'); /* ajuste le chemin si besoin */
  background-size: cover;
  background-position: center;
}

/* ====== Typographies & couleurs ====== */
/* Titre en Instrument Serif rouge */
.catalogue-text h1 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.7rem;
  margin-bottom: 12px;
  color: var(--red);
}

/* Paragraphes en Kozuka Mincho rouge */
.catalogue-text p {
  font-family: 'Kozuka Mincho Pr6N', serif; /* utilise ta police locale */
  font-size: 12pt;
  line-height: 1.2;
  color: var(--red);
}

 .close-button {
    position: absolute;
    top: 29px;
    right: 30px;
    font-size: 1rem;
    font-weight: lighter;
    color: #ff0000;
    text-decoration: none;
}