/* style.css – Style personnalisé */



@font-face {
  font-family: "Optima Nova";
  src: url("fonts/OptimaNovaLTProRegular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Optima Nova";
  src: url("fonts/OptimaNovaLTProBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Optima Nova";
  src: url("fonts/OptimaNovaLTProBlack.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}



body {
  font-family: "Optima Nova", sans-serif !important;
  font-size: 16px;
  line-height: 1.75;
  color: #1a202c; /* gray-900 */
  background-color: #ffffff;
}

.font-[optima] {
  font-family: "Optima", "Segoe UI", "Candara", "Noto Sans", sans-serif;
}


.bg-color-1{
  background-color: #F9F8F4;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #111827; /* gray-900 */
}

h2, h3 {
  margin-bottom: 0.5em;
}

p {
/*   margin-bottom: 1.25em; */
  color: #374151; /* gray-700 */
}

a {
  text-decoration: underline;
  transition: color 0.2s;
}

a:hover {
}

button {
  transition: background-color 0.2s, transform 0.1s;
}

button:hover {
  transform: translateY(-1px);
}

section {
  scroll-margin-top: 80px;
}

/* Citation stylisée */
blockquote, .italic {
  font-style: italic;
  color: #4b5563; /* gray-600 */
}

/* Numérotation élégante */
ol {
  padding-left: 1rem;
  list-style-position: inside;
  counter-reset: list;
}

ol > li {
  counter-increment: list;
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.75em;
}
.circle-num {
  background-color: #F8CD5F;
  color: #000000;
  border-radius: 9999px;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  flex-shrink: 0;
}

.circle-check {
  background-color: #F8CD5F;
  color: #111;
  border-radius: 9999px;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  flex-shrink: 0;
}



/* Section image vide */
.fullwidth-placeholder {
  background-color: #f3f4f6; /* gray-100 */
  height: 24rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af; /* gray-400 */
  font-size: 1.125rem;
}
.btn-cta {
  background-color: #F8CD5F;
  color: #111827; /* couleur texte foncée pour bon contraste */
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: background-color 0.2s ease, transform 0.1s ease;
}
.btn-cta:hover {
  background-color: #ffcd56;
  transform: translateY(-2px);
}
.nav-hover {
  position: relative;
  display: inline-block;
  color: #000;
  text-decoration: none;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #e5e1d8; /* beige clair */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-hover:hover::after {
  transform: scaleX(1);
}

.nav-hover-light {
  position: relative;
  display: inline-block;
  color: #d1d5db; /* gray-300 */
  text-decoration: none;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-hover-light::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #f8cd5f; /* ou #e5e1d8 pour beige clair */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-hover-light:hover {
  color: #ffffff;
}

.nav-hover-light:hover::after {
  transform: scaleX(1);
}

@media (min-width: 1219px){

.img-section1 img
{
	margin-bottom: -20vh;
}

.section2
{
	margin-top: 10vh;
}
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .text-center-sm {
    text-align: center;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
  }

  .circle-num, .circle-check {
    flex-shrink: 0;
  }
}

/* Images adaptables */
img {
  max-width: 100%;
  height: auto;
}


/* Responsive corrections */
@media (max-width: 640px) {
  .text-left, .text-center {
    text-align: left !important;
  }
}
