/* Lentille.com — site stylesheet */
body {
  padding-top: 56px;
}

/* Hero / intro */
#intro {
  background: url(../images/img/intro-bg.jpg) no-repeat center center fixed;
  background-color: #000;
  color: #fff;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  -webkit-background-size: cover;
}

#intro .brand-heading {
  font-size: 3.5rem;
  font-weight: 800;
  color: #e25822;
}

#intro .intro-text {
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 2rem;
}

#intro .btn-hero {
  background: #e25822;
  color: #fff;
  border: none;
  font-size: 1.1rem;
  padding: .6rem 1.8rem;
  border-radius: 4px;
}

#intro .btn-hero:hover {
  background: #c94b1a;
}

/* Section headings */
.section-heading {
  text-align: center;
  margin: 3rem 0 1.5rem;
}

.section-heading h2 {
  font-weight: 700;
  font-size: 2rem;
}

.section-heading hr {
  width: 60px;
  border-top: 3px solid #e25822;
  margin: .5rem auto 1rem;
}

/* Intervention cards */
.intervention-card {
  transition: transform .15s, box-shadow .15s;
  border: none;
}

.intervention-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .15) !important;
}

.intervention-thumb {
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
}

/* Intervention detail page */
.intervention-hero {
  background: #111;
  color: #fff;
  padding: 60px 0 40px;
  text-align: center;
}

.intervention-hero h1 {
  font-size: 2rem;
  font-weight: 700;
}

.intervention-hero .meta {
  color: #aaa;
  font-size: .95rem;
}

/* Photo grid */
.photo-grid .photo-item {
  margin-bottom: 12px;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity .15s;
}

.photo-grid img:hover {
  opacity: .85;
}

/* Map */
#map {
  height: 680px;
  border-radius: 8px;
}

/* Navbar brand fire icon */
.navbar-brand .fa-fire {
  color: #e25822;
}

/* Footer */
footer a:hover {
  text-decoration: underline;
}

/* Section backgrounds (matching original site) */
#spectaculaire {
  background: url(../images/img/services-bg.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}


#spectaculaire .section-heading h2 {
  color: #fff;
}

#spectaculaire .section-heading hr {
  border-color: #e25822;
}

#spectaculaire .section-heading p {
  color: #eee;
}

#spectaculaire .btn-outline-secondary {
  background: #ff7700;
  color: #ffffff;
  border: none;
  font-weight: bold;
}

#photographies {
  background: #f6f6f6;
}

#carte {
  background: #e6e6e6;
}

#apropos {
  background: #111;
  color: #b6b6b6;
}

#apropos h2,
#apropos h4 {
  color: #fff;
}

#apropos .section-heading hr {
  border-color: #e25822;
}

#apropos li::marker {
  color: #e25822;
}

/* Prevent image selection */
img {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: auto;
}

/* Fire marker icons for map */
.fire-marker-icon {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.fire-marker-icon i {
  display: block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
}