/*
Theme Name: GeneratePress Child
Template: generatepress
Version: 1.0.0
*/


/* ============================================================
FONTS
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@100;200;300;400;500;600;700&display=swap');

@font-face {
  font-family: "The Bigmouth Regular";
  src: url('fonts/bigmouth.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
GLOBAL / RESET LÉGER
============================================================ */

html {
  overflow-y: scroll; /* évite le “jump” de scrollbar */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: 0;
  background: #fff;
  /* IMPORTANT : le header est fixed, donc on réserve l'espace ici */
  margin-top: 90px;
}

/* Liens (global) */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* ============================================================
TYPO (global)
============================================================ */

.site-title a {
  font-family:"The Bigmouth Regular";
  font-size: 30px;
  text-transform: lowercase;
  letter-spacing: 1px;
  color: #000;
}

/* ============================================================
HEADER FIXE PERSONNALISÉ
============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  border-bottom: 1px solid #eee;

  /* cohérent avec ton padding existant */
  padding-left: 40px;
  padding-right: 40px;
}

/* Bloc interne */
.custom-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  padding-top: 40px;
  padding-bottom: 15px;
}

/* Menu secondaire */
.sub-menu {
  display: flex;
  gap: 22px;
  margin-top: 5px;
  padding: 0;
  list-style: none;
}

.sub-menu a {
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #878787;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.sub-menu a:hover {
  color: #AA6615;
}

/* ============================================================
LAYOUT GLOBAL
============================================================ */

.container-global {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
}

/* Empêche GeneratePress de casser la mise en page sur la home */
.home .site-content {
  display: block !important;
}

/* ============================================================
RESPONSIVE GLOBAL
============================================================ */

@media (max-width: 900px) {
  body {
    margin-top: 85px; /* si ton header prend un peu moins de place */
  }

  .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .custom-header {
    padding-top: 28px;
  }

  .site-title a {
    font-family:"The Bigmouth Regular";
  }
}

@media (max-width: 600px) {
  body {
    margin-top: 80px;
  }

  .site-title a {
    font-size: 26px;
    font-family:"The Bigmouth Regular";
  }

  .sub-menu {
    gap: 14px;
    flex-wrap: wrap;
  }
}
