/*:root {
    --brand-color: #013755;
}*/
body {
  font-family: 'Podofo', sans-serif;
}
a{
    text-decoration: none;
    color: rgba(255,255,255,.8) !important;
}
.h5, h5 {
  font-size: 1rem;
}
.yellow{
    color: rgba(236, 236, 208, 1.0);
}
.byellow{
    background-color: rgba(236, 236, 208, 1.0) !important;
}
.blue{
    color: rgba(0, 0, 51, 1.0) !important;
}
.bblue{
    background-color: rgba(0, 0, 51, 1.0) !important;
    color: #FFFFFF !important;
}
.white{
    color: #FFFFFF;
}
.bwhite{
    background-color: #FFFFFF !important;
}
.btn.bgreen {
  background: #ABC428 none repeat scroll 0 0;
  background-color: rgb(171, 196, 40);
  border-radius: 5px;
  color: black !important;
/*  font-family: "futura_ltbook",sans-serif;*/
  /*font-size: 16px;
  padding: 10px 20px;*/
  text-transform: uppercase;
  border: 1px solid black;
}
.btn:hover{
    background-color: rgb(171, 196, 40) !important;
    color: black !important;
}
.btn.bblue {
    border-radius: 5px;
    text-transform: uppercase;
    border: 1px solid transparent;
}
a.action-link:hover{
    color: white !important;
    text-shadow: 1px 1px 2px black;
}
#footer a.action-link:hover, .footer_bottom a.action-link:hover{
    color: rgb(171, 196, 40) !important;
    text-shadow: 1px 1px 2px black;
}
.navbar {
    background-color: #f3f5f7;
    box-shadow: 2px 5px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: var(--brand-color);
    border-color: var(--brand-color);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0,0,0,.9) !important;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link {
  color: rgba(0,0,0,.5) !important;
}
.navbar-text {
  color: rgba(0,0,0,.7) !important;
}
.navbar-toggler {
    border: 2px solid red !important;
}

.navbar-toggler-icon {
    filter: invert(0);
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.bg-body-secondary {
    background-color: rgba(20, 200, 200, .5) !important;
}

/* allows bootstrap to style Laminas Navigation generated menu items within the navbar */
/*.navbar li.active a {
    color: var(--bs-navbar-active-color);
}*/
.mb-4{
  margin-bottom: 20px !important;
}
#site-title{
  padding-top: 100px;
}
.hero {
    position: relative;
    min-height: 100vh; /* Toujours 100% de la hauteur de l'écran */
    background: url('/img/image-17.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Contenu en premier plan */
.hero-content {
    position: relative;
    z-index: 2;
}


/*SECTIONS*/
#services, #about, #portfolio, #contacts{
    min-height: 100vh;
    margin: 0;
    padding-top: 100px;
}
.section_head > h1{
    font-size: 2.5rem;
    font-weight: bold !important;
    margin-bottom: 30px;
}

#about {
    height: auto; /* Utilise auto pour que la hauteur s'adapte au contenu */
/*    margin-top: 140px; */
    display: flex;
    flex-direction: column;
    justify-content: center; 
}


.star-rating{
    margin-bottom: 1rem !important;
}
.fa-star{
    color: #93710D;
}
.list-unstyled a{
     color: white;
}



@media (min-width: 1200px) {
  .fs-1 {
    font-size: .9rem !important;
  }
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1140px;
  }
}

@media (max-width: 767px) {
    p {
        font-size: .9rem !important;
    }
    .hero {
        min-height: 80vh; /* Réduit la hauteur sur mobile */
    }
    #about {
        margin-top: 150px; /* Plus d'espace entre les sections sur mobile */
    }
    .section_head > h1{
        font-size: 1.6rem;
    }
    .fs-1{
        font-size: .7rem !important;
    }
}

/* Ajustement en mode tablette */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero {
        min-height: 90vh; /* Ajuste la hauteur sur les tablettes */
    }
    #about {
        margin-top: 130px; /* Ajuste la marge pour les tablettes */
    }
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
} 
       