/*
Theme Name: Super Great Custom Wordpress
Author: Bastianus et deltafractalitus
Version: 1.0.2
*/

:root {
  --background: white;
  --text:black;
  --bold: 600;
  --regular: 400;
  --text-small: 16px;
  --text-small-line-h: 1.4rem;
  --text-regular: 20px !important;
  --text-regular-line-h: 1.8rem;
  --text-medium: 26px;
  --text-medium-line-h: 2.5rem;
  --text-medium-plus: 30px;
  --text-medium-plus-line-h: 2.5rem;
  --text-big: 46px;
  --text-big-line-h: 3.1rem;
}

a {
  text-decoration: none;
  color: var(--text);
}

* {
  overflow-wrap: break-word;
  margin: 0px;
  padding: 0px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: var(--regular);
  background-color: var(--background);
  font-size: var(--text-regular);
  margin-top: 91px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text);
  line-height: var(--text-regular-line-h);
}

strong
{
  font-weight: var(--bold);
}

.has-medium-font-size
{
  font-size: var(--text-regular) !important;
  line-height: var(--text-regular-line-h) !important;
}

ul
{
  list-style-type: none;
}
p {
  -webkit-font-smoothing: antialiased;
  /* Chrome, Safari */
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
}

p {
  text-rendering: optimizeLegibility;
}

body.admin-bar .site-header {
  margin-top: 32px;
}

main {
  flex: 1;
  /* margin-top: 91px; */
}

/* 📱 Extra Small - téléphone portrait */
@media (max-width: 575.98px) {

  /* Styles pour <576px */
  .wrap {
    margin-left: 10px;
    margin-right: 10px;
  }

   .wrap .wrap {
    margin-left: 0px;
    margin-right: 0px;
  }
}

/* 📱 Small - téléphone paysage */
@media (min-width: 576px) {

  /* Styles pour ≥576px et <768px */
  .wrap {
    width: 576px;
    margin: auto;
  }
}

/* 🧾 Medium - tablettes */
@media (min-width: 768px) {

  /* Styles pour ≥768px et <992px */
  .wrap {
    width: 768px;
    margin: auto;
  }
}

/* 💻 Large - ordinateurs portables */
@media (min-width: 992px) {

  /* Styles pour ≥992px et <1200px */
  .wrap {
    width: 992px;
    margin: auto;
  }
}

/* 🖥️ Extra Large - desktops */
@media (min-width: 1200px) {
  .wrap {
    width: 1200px;
    margin: auto;
  }
}

/* 🖥️💼 XXL - très grands écrans */
@media (min-width: 1400px) {
  .wrap {
    width: 1200px;
    margin: auto;
  }
}



@media (max-width: 1200px) {
    :root {
  --text-regular: 16px !important;
  --text-regular-line-h: 1.8rem;
  --text-medium: 20px;
  --text-medium-line-h: 2rem;
}
}

@media (max-width: 768px) {
    :root {
  --text-big: 30px;
  --text-big-line-h: 2rem;
}
}
