/**
* Template Name: BizPage - v5.8.0
* Modifié pour Épouse de l'Agneau Tabernacle
* Couleurs : Bleu Royal (#001ca8) et Rouge Église (#c40000)
*/

/*--------------------------------------------------------------
# General & Typographie
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #444444;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

a {
  color: #001ca8;
  transition: 0.5s;
  text-decoration: none;
}

a:hover, a:active, a:focus {
  color: #c40000;
  outline: none;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  margin: 0 0 20px 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Barre de Navigation (Header)
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  background: rgba(0, 28, 168, 0.85) !important; /* Fond bleu royal transparent */
  height: 90px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  border-bottom: 3px solid #c40000; /* Ligne rouge distinctive */
}

#header .logo img {
  max-height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
}

/* Liens du Menu */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff !important; /* Écrit en blanc sur le fond bleu */
  text-transform: uppercase;
  transition: 0.3s;
}

.navbar a:hover, .navbar .active {
  color: #c40000 !important; /* Devient rouge au survol */
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

/*--------------------------------------------------------------
# Section Hero (Bannière principale)
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
  position: relative;
}

#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.65); /* Assombrit l'image pour lire le texte */
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

/* Boutons sur la bannière */
#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff !important;
  background: #c40000 !important; /* Bouton Rouge */
  border: 2px solid #c40000 !important;
}

#hero .btn-get-started:hover {
  background: #001ca8 !important; /* Devient Bleu au survol */
  border-color: #001ca8 !important;
}

/*--------------------------------------------------------------
# Bouton Retour en haut
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #c40000;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top:hover {
  background: #001ca8;
}
