/* ===============================
   pcsconseil.css - Version UTF-8
   =============================== */

/* --- Section parallaxe image pleine page --- */
#geom-1 {
  background-image: url('img/biz-oriented-header.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;        /* occupe tout l’écran */
  width: 100%;
  display: block;
  position: relative;
  z-index: 0;
}

#geom-1::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.25); /* léger assombrissement optionnel */
  z-index: -1;
}

/* --- Navigation --- */
nav {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 30px;
}

nav a {
  color: white !important;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 10px;
}

/* --- Texte sur l’image (hero) --- */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  width: 90%;
  max-width: 700px;
}

.hero-text h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1rem;
  line-height: 1.5;
}

/* --- Section contenu principal --- */
.content-section {
  padding: 40px 20px;
  text-align: left;
  max-width: 1100px;
  margin: auto;
}

.content-section h2 {
  color: #0d1b2a;
  font-weight: 700;
  margin-bottom: 20px;
}

.content-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

/* --- Services boxes --- */
.tm-services-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tm-services-img {
  flex: 0 0 auto;
  width: 225px;
  height: 160px;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 5px;
}

.tm-services-box div {
  flex: 1 1 auto;
}

@media (max-width: 768px) {
  .tm-services-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .tm-services-img {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
    height: auto;
  }
}

/* --- Blocs gris (background) --- */
.tm-bg-gray-dark {
  background-color: #f4f4f4;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}

/* --- Footer --- */
footer {
  text-align: center;
  padding: 8px 0;
  background: rgba(0, 0, 0, 0.05);
  color: #555;
  font-size: 0.9rem;
}
