    :root {
  --primary-color: #c0392b; /* Ton rouge personnalisé */
  --secondary-color: #7f170f; /* Rouge un peu plus clair */ 
  --box-shadow-color: rgba(0, 0, 0, 0.1); /* Couleur de l'ombre portée */
  --footer-bg-color: #e6e6e6; /* Couleur de fond du footer */
  }

/* Général */
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 100;
}

header {
  position: relative;
  z-index: 10;
}

.redBG {
  background-color: var(--primary-color);
  height: 150px;
}

.redBG h1{
  color: white !important;
}

a {
  text-decoration: none;
}

/* Police */
h1, h2, h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 100;
  font-size: 41px;
  text-transform: uppercase;
}

h1 {
  color: var(--primary-color);
}

/* Navbar fixe et transparente par défaut */
nav.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
  background-color: transparent !important;
  font-size: 17px;
  letter-spacing: 2.5px;
  min-height: 90px;
}

/* Texte de la nav toujours blanc */
nav .nav-link,
nav h3 {
  color: white;
  padding: 17px !important;
}

/* Centrer la nav */
.nav-item {
  display: flex;
  align-items: center;
}

/* Changement de fond au scroll */
nav.navbar.scrolled {
  background-color: var(--primary-color) !important;
  box-shadow: 0 2px 5px var(--box-shadow-color);
}

/* Effet hover pour tous les liens de nav sauf contact */
.nav-link:not(.contact-btn):hover {
  border-bottom: 1px solid white;
  transition: background-color 0.3s ease;
}

/* Bouton de contact */
.nav-link.contact-btn {
  background-color: var(--primary-color); /* Ton rouge personnalisé */
  border-radius: 8px;        /* Coins arrondis */
  padding: 6px 15px;         /* Espacement intérieur */
  transition: background-color 0.3s ease;
}

/* un effet au survol */ 
.nav-link.contact-btn:hover {
  background-color: white; /* Rouge un peu plus clair au hover */
  color: var(--primary-color) !important;
}

/* Page active */
.active {
  color: var(--secondary-color) !important;
}

/* Décaler le contenu en dessous de la nav fixe + image */
/* main {
  margin-top: 320px;
} */

/* Header avec image */
header {
  position: relative;
  height: 600px;
  background: url('images/GettyImages-1138946029-2.jpg') no-repeat center center/cover;
  z-index: 1;
}

/* FOOTER */

/* Politique */
/* Défilement */
.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: white; 
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.marquee-text {
    font-size: 8rem;
    color: var(--primary-color);
    font-weight: bold;
    padding-right: 7rem; /* espace entre les duplications */
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* h3 politique */
.politique h3 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: left;
    margin-top: 20px;
}
/* p cgu */
.cgu p {
    color: var(--primary-color);
}

/* p ml */
.ml p {
    color: var(--primary-color);
}

/* Page d'accueil */
/* Accroche */
.home-header {
    background-color: var(--primary-color);
    height: 300px;
    color: white;
}

.home-header h2 {
  width: 50%;
}

/* Bouton blanc avec écriture rouge */
.custom-white-btn {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid white;
    padding: 10px 20px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.custom-white-btn:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

/* Bouton rouge avec écriture blanche */
.custom-red-btn, .btn-primary {
    background-color: var(--primary-color);
    color: white !important;
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.custom-red-btn:hover, .btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color) !important;
    border-color: var(--primary-color);
}

/* BG chalet */
.imgBg {
  position: relative;
  overflow: hidden;
}

.imgBg::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 0;
}

.parallax-image {
  position: absolute;
  top: -200px;
  left: 0;
  right: 0;
  height: 120%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: translateY(0);
  will-change: transform;
  height: 800px;
}

.parallax-chalet {
  background-image: url('images/unsplash-image-LRnfFgKdVSI-1-1024x684.jpg');
}

.parallax-content {
  position: relative;
  z-index: 0.5;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 150px 50px 100px;
  color: black;
  max-width: 1200px;
  margin: 0 auto;
  gap: 5%;
}

.parallax-column {
  width: 45%;
}

.parallax-column.left h2 {
  color: var(--primary-color);
  font-weight: 500;
  text-align: left;
  line-height: 54px;
}

.parallax-column.right {
  text-align: left;
}

.parallax-column.right p {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.parallax-column.right em {
  color: var(--primary-color);
}


/* Ligne pointillé */
.dotted-line {
  border-top: 10px dashed var(--primary-color);
  width: 100%;
  margin: 20px 0;
  opacity: 1!important;
}
/* Home contact */
.homeContactBg {
  display: flex;
  flex-direction: column;     /* Les éléments se mettent en colonne */
  align-items: center;        /* Centrage horizontal */
  justify-content: center;    /* Centrage vertical si tu veux remplir la hauteur */
  text-align: center;         /* Centrage du texte à l'intérieur des balises */
  padding: 40px 20px;         /* Un peu d'espace */
}

.homeContactBg h1 , .homeContactBg a{
  color: var(--primary-color);
}

.homeContactBg.custom-red-btn{
  color: white !important;
}

/* newsletter */
.newsletter {
  color: var(--primary-color) ;
  padding: 40px 20px;
  text-align: center;
  border: 2px solid var(--primary-color);
  border-radius: 0.5rem;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Page contact */
body.contact-page header {
  position: relative;
  background: url('images/artiom-vallat-jlifOZe8UC8-unsplash-2.jpg') no-repeat center center/cover;
  color: white;
  z-index: 0;
  overflow: hidden;
}

.contact-form {
  -webkit-box-shadow: 5px 5px 8px 3px #AAAAAA; 
  box-shadow: 5px 5px 8px 3px #AAAAAA;
  background: #FFFFFF;
  border-radius: 0.5rem;
}

.ide {
  color: #555;
  font-size: 16px;
  margin-bottom: 30px;
}

.contact-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-droite a {
  color: var(--primary-color);
}

.icon {
  border: 1px solid #333;
  border-radius: 50%;
  padding: 10px;
  font-size: 16px;
  margin-right: 15px;
  color: var(--primary-color);
}

.label {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.value {
  font-size: 20px;
  color: #b73122;
  margin: 5px 0 0 0;
}

.social {
  margin-top: 40px;
}

.icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #b73122;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 15px;
  text-decoration: none;
  font-size: 18px;
}

/* Overlay blanc */
body.contact-page header::before, .parallax-sapin::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.43);
  z-index: 1;
}

/* Pour que le contenu du header reste visible au-dessus de l'overlay */
body.contact-page header > * {
  z-index: 2;
}

/* Page service */

/* L'image de fond avec opacité */

.parallax-sapin {
  background-image: url('images/artiom-vallat-jlifOZe8UC8-unsplash-2.jpg');
}

.section-service h2 {
  color: var(--primary-color);
}

.section-image {
  width: 100%;
  height: 300px; /* Tu peux ajuster cette valeur selon tes besoins */
  object-fit: cover; /* Recadre sans déformer */
  border-radius: 10px; /* Coins arrondis si tu veux */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optionnel, pour l'ombre */
}

/* Page équipe */

.equipe h4{
  color: var(--primary-color);
}

.equipe h5{
  font-size: 15px;
  color: #888888;
}

.equipe{
  text-transform: uppercase;
}

/* Footer */
.footer {
  background-color: var(--footer-bg-color); /* Couleur de fond du footer */
  color: var(--primary-color); /* Couleur du texte */
  padding: 20px 0; /* Espacement vertical */
}

.footer a{
  color: var(--primary-color);
}

/* Carte propriétés */
.card-img-top{
  height: 300px;
}
