* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: #f5f5f5;
}
::-webkit-scrollbar-thumb {
  background-color: #ebba33;
  border-radius: 5px;
}
body, html {
    overflow-x: hidden;
}
@font-face {
    font-family: 'GothamB9';
    src: url('../fonts/Gotham/Gotham-Black.otf') format('opentype');
    font-weight: 900;
}

@font-face {
    font-family: 'GothamB7';
    src: url('../fonts/Gotham/Gotham-Bold.otf') format('opentype'),
         url('../fonts/Gotham/GothamBold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'GothamItalic';
    src: url('../fonts/Gotham/Gotham-BookItalic.otf') format('opentype'),
         url('../fonts/Gotham/GothamBookItalic.ttf') format('truetype');
    font-style: italic;
    font-weight: 400;
}

@font-face {
    font-family: 'GothamL';
    src: url('../fonts/Gotham/Gotham-Light.otf') format('opentype'),
         url('../fonts/Gotham/GothamLight.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: 'GothamT';
    src: url('../fonts/Gotham/Gotham-Thin.otf') format('opentype');
    font-weight: 100;
}

@font-face {
    font-family: 'GothamTI';
    src: url('../fonts/Gotham/Gotham-ThinItalic.otf') format('opentype');
    font-style: italic;
    font-weight: 100;
}

@font-face {
    font-family: 'CharltonB';
    src: url('../fonts/Charlton/Charlton-Bold.otf') format('opentype');
    font-weight: 700;
}

@font-face {
    font-family: 'CharltonBI';
    src: url('../fonts/Charlton/Charlton-BoldItalic.otf') format('opentype');
    font-style: italic;
    font-weight: 700;
}

@font-face {
    font-family: 'CharltonL';
    src: url('../fonts/Charlton/Charlton-Light.otf') format('opentype');
    font-weight: 300;
}

@font-face {
    font-family: 'CharltonI3';
    src: url('../fonts/Charlton/Charlton-LightItalic.otf') format('opentype');
    font-style: italic;
    font-weight: 300;
}

@font-face {
    font-family: 'CharltonR';
    src: url('../fonts/Charlton/Charlton-Regular.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'CharltonT';
    src: url('../fonts/Charlton/Charlton-Thin.otf') format('opentype');
    font-weight: 100;
}

@font-face {
    font-family: 'CharltonTI';
    src: url('../fonts/Charlton/Charlton-ThinItalic.otf') format('opentype');
    font-style: italic;
    font-weight: 100;
}
h1, h2, h3 {
  font-family: 'CharltonB', serif;letter-spacing: 2px;
}
.vlr_tpgi{font-family:'CharltonB', serif;letter-spacing: 1px;font-style: italic;}
.vlr_rght{text-align:right;}
body {
    font-family: 'GothamL', serif;
    font-size: 18px;
    color: #726646;
    background-color: #eae5db;
    margin: 0;
    padding: 0;
}
header {
    background-color: #eae5db;
    color: #726646;
    padding: 15px;
    text-align: center;
    width:100%;
    max-width:1800px;
    margin:0 auto;
}

a {color: #726646;text-decoration: none;}
a:hover{text-decoration: underline;}
a.vlr_active{text-decoration: underline;font-weight: bold;}

.progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px !important;
    z-index: 9999914;
}
.progress-bar {
    display:none;
    height: 2px;
    background: #ebba33!important;
    width: 100%
}

#back_to_top {
  position: fixed;
  bottom: 20px;
  right: 26px;
  display: none;
  z-index:999;
}
#back_to_top img {
  width: 50px;
  height: 50px;
  cursor: pointer;
}
#back_to_top img:hover {
  width: 60px;
  height: 60px;
  cursor: pointer;
  border: 0px solid #200c31;
  border-radius: 50%  
}

.nav-wrapper {
  position: relative;
  z-index: 9999;
}

.nav-wrapper.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #eae5db;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: #eae5db;
  transition: all 0.3s ease-in-out;
  max-width: 1800px;
  margin: 0 auto;    
}

.logo {
  background-image: url('../logo_cessimplesriens.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  display: block;
}

nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: auto;
}

nav ul li {
  margin-right: 20px;
}

nav ul li a {
    color: #726646;
    margin-right: 20px;
    text-decoration: none;
    font-size:24px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0 10px;
  position: relative;
  width: 24px;
  height: 24px;  
}

.hamburger-icon {
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 3px;
  background-color: #726646;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 3px;
  background-color: #726646;
  transition: all 0.3s ease-in-out;
}
.hamburger-icon::before {
  top: -8px;
}
.hamburger-icon::after {
  top: 8px;
}
.hamburger.open .hamburger-icon {
  background-color: transparent;
}

.hamburger.open .hamburger-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.open .hamburger-icon::after {
  top: 0;
  transform: rotate(-45deg);
}
.nav-links {
  display: flex;
  align-items: center;
}

.pg_accueil{background-color: none}
.vlr_main{max-width: 1800px;margin:0 auto;}
.error{font-weight:bold;color:#db3c0f;}
main {
    padding-top: 20px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 20px;
    min-height: calc(100vh - 120px);
    max-width:1290px;
    margin:0 auto;   

}

.mn_conf {
  background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("../images/web/csr_coralie_hdbg.jpg");
  background-attachment: fixed;
  /*background-size: cover;*/
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.9;
  border-radius:14px;
  /* border-radius:50%;*/
}

.mn_mlg {
  background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("../images/web/csr_coralie_wbbg.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.9;
  border-radius:14px;  
}

footer {
    background-color: #eae5db;
    color: #726646;
    text-align: center;
    padding: 33px;
    max-width:1800px;
    margin:0 auto;
}

footer p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

ul {margin-top:21px;margin-left:25px}
li {margin-top:14px;margin-bottom:14px}

.csr_titentete{position:relative;left:2%;font-family: 'CharltonB';font-size:33px;margin-bottom:7px;letter-spacing: 4px;}


.text-block {
    line-height: 1.6em;
    text-align: left;
    font-size: 18px;
    color: #726646;
    font-family: 'GothamL', serif;
    margin: 20px 0;
    padding: 15px;
    border-radius: 5px;
}

.vlr_hrhome {
    width: 50%;
    border: 0;
    height: 1px;
    background-color: #726646;
    margin: 10px auto;
}

.vlr_txtb{margin-top:14px;font-style:italic;font-weight:bold;text-align:center;}

.vlr_insta {
  margin-right: 33px;
  background-image: url('../images/csr_instagram_342.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 33px;
  height: 33px;
  display: inline-block;
}

.vlr_insta:hover {
  background-image: url('../images/csr_instagram_on_342.png');
}


.vlr_connect_connected {
  width: 33px; 
  height: 33px;
  background: url("../images/csr_connecte_200.png") no-repeat center center;
  background-size: contain;
}
.vlr_connect_connected:hover {
  background: url("../images/csr_connecte_on_200.png") no-repeat center center;
  background-size: contain;
}

.vlr_connect_anonymous {
  width: 33px; 
  height: 33px;
  background: url("../images/csr_anonyme_200.png") no-repeat center center;
  background-size: contain;
}
.vlr_connect_anonymous:hover {
  background: url("../images/csr_anonyme_on_200.png") no-repeat center center;
  background-size: contain;
}

.connect-icon-link {
  display: inline-block;
  margin-right: 10px;
  position: relative;
}

.vlr_cart {
  margin-right: 33px;
  background-image: url('../images/csr_car_icon_255.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 33px;
  height: 33px;
  display: inline-block;
}

.vlr_cart:hover {
  background-image: url('../images/csr_car_icon_255_on.png');
}

.cart-icon-link {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}
.cart-count-badge {
  position: absolute;
  top: -5px;
  right: 20px;
  background: #726646;
  color: #fff;
  font-size: 0.8rem;
  border-radius: 50%;
  padding: 2px 6px;
  line-height: 1;
}


.container-404 {
    text-align: center;
    padding: 50px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.container-404 h1 {
    font-size: 36px;
    color: #726646;
    margin-bottom: 10px;
}

.container-404 p {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
}

.img-404 {
    width: 80%;
    max-width: 300px;
    margin-bottom: 20px;
    border-radius: 50%;
}

.btn-404 {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    color: white;
    background-color: #726646;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-404:hover {
    background-color: #5a5037;
}

@media (max-width: 768px) {

  .hamburger {
    display: inline-block;
    margin-right: 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 120px;  
    left: 0;       
    right: 0;
    background-color: #eae5db;
    padding: 20px;
    border-radius: 0 0 0 8px;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.2);
  }

  .nav-links.show {
    display: flex;
    z-index: 1;
  }

  nav a {
    margin: 10px 0;
  }


    main {padding-left: 2px;padding-right: 2px;} 
    footer p {
        flex-direction: column;
        text-align: center;
    } 
    .vlr_ctrlalt6{display:none;}   
    .container-404 h1 {
        font-size: 28px;
    }
    .container-404 p {
        font-size: 16px;
    }    
}