/* Font & reset */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  background-color: #f1e7d0; /* Beige parchemin */
}

a {
  text-decoration: none !important;
}

p {
  font-size: 15px;
  line-height: 30px;
  color: #2a2a2a;
}

img {
  width: 100%;
  overflow: hidden;
}

/* Selection */
::selection {
  background: #A6342D;
  color: #fff;
}
::-moz-selection {
  background: #A6342D;
  color: #fff;
}

/* Headings */
.section-heading h2 {
  font-size: 30px;
  text-transform: capitalize;
  color: #2a2a2a;
  font-weight: 700;
  letter-spacing: 0.25px;
}

.section-heading h2 em {
  font-style: normal;
  color: #7C4E2D; /* Marron terre */
}

.section-heading h2 span {
  color: #A6342D; /* Rouge brique */
}

/* Buttons */
.main-blue-button a {
  display: inline-block;
  background-color: #7C4E2D;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

.main-red-button a {
  display: inline-block;
  background-color: #A6342D;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

.main-white-button a {
  display: inline-block;
  background-color: #fff;
  font-size: 15px;
  font-weight: 400;
  color: #A6342D;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

/* Header */
.header-area {
  background-color: #f1e7d0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 100px;
  transition: all 0.5s ease;
}

.header-area .main-nav .logo h4 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #7C4E2D;
  line-height: 100px;
}

.logo h4 span {
  color: #A6342D;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 500;
  font-size: 15px;
  color: #2a2a2a;
  text-transform: capitalize;
  height: 40px;
  line-height: 40px;
  letter-spacing: 1px;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #A6342D;
}

/* Background header sticky */
.background-header {
  background-color: #f1e7d0 !important;
  box-shadow: 0 0 10px rgba(0,0,0,0.15) !important;
}
.background-header .logo,
.background-header .main-nav .nav li a {
  color: #2a2a2a !important;
}
.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: #A6342D !important;
}

/* Progress bars */
.progress-skill-bar .filled-bar {
  background: #A6342D;
}
.progress-skill-bar .full-bar {
  background: #ddd;
}

/* Preloader */
#js-preloader .dot {
  background: #A6342D;
}
#js-preloader .dots span {
  background: #7C4E2D;
}

/* Other components can stay default unless you want all elements recolored */

/* Footer */
footer {
  background-color: #7C4E2D;
  color: #fff;
  text-align: center;
  padding: 25px 0;
}

footer a {
  color: #fff;
}
footer a:hover {
  color: #ddd;
}
