@charset "UTF-8";
/* CSS Document */
/* --- VARIABLES --- */ :root {
  --primary: #2e5f32; /* Vert Buisson */
  --accent: #89b449; /* Vert Herbe */
  --dark: #1d2d1f;
  --light-bg: #f8faf7;
  --white: #ffffff;
  --shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
/* --- RESET & BASE --- */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #89b449;
  color: var(--dark);
  line-height: 1.2;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}
/* --- HEADER --- */
header {
  background: var(--white);
  padding: 20px 5%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo .icon {
  font-size: 55px;
}
.logo h1 {
  font-size: 22px;
  margin: 0;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.logo span {
  font-size: 14px;
  color: var(--accent);
  font-weight: bold;
}
.coords {
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.coords p {
  margin: 2px 0;
}
.coords a {
  color: #fff;
  text-decoration: none;
  font-size: 25px;
  background: red;
  border-radius: 5px;
  padding: 0 5px;
}
/* --- HERO --- */
.tree_theme {
  height: 550px;
  background: url('elagage_lechesnay.webp') center/cover no-repeat;
  position: relative;
}
.tree_theme-overlay {
  background: rgba(29, 45, 31, 0.6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.tree_theme-content {
  max-width: 900px;
  color: var(--white);
}
.badge {
  background: var(--accent);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
.tree_theme h2 {
  font-size: 3.5rem;
  margin: 20px 0;
  line-height: 1.2;
}
.tree_theme p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
}
/* --- BOUTON DEVIS --- */
.btn-devis {
display: inline-flex;
  flex-direction: column;
  background: red;
  color: var(--white);
  text-decoration: none;
  padding: 18px 45px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px #0004;
}
.btn-devis:hover {
  background: #f91212;
  transform: translateY(-3px);
}
.btn-devis strong {
  font-size: 18px;
  letter-spacing: 1px;
}
.btn-devis span {
  font-size: 12px;
  opacity: 0.9;
}
/* --- SECTIONS --- */
section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}
h2 {
  font-size: 2.2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}
h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  margin: 15px auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.service-item {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: 0.3s;
  border-top: 4px solid var(--accent);
}
.service-item:hover {
  transform: translateY(-10px);
}
.service-item h3 {
  font-size: 1.3rem;
  margin-top: 0;
  color: var(--primary);
}
.points-forts ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.points-forts li {
  background: #eef3ed;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 15px;
}
.points-forts li strong {
  color: var(--primary);
}
/* --- FOOTER --- */
footer {
  background: var(--dark);
  color: #cbd5cb;
  padding: 20px;
  text-align: center;
}
.footer-container a {
  color: var(--accent);
  text-decoration: none;
}
/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .header-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .coords {
    text-align: center;
  }
  .tree_theme h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 600px) {
  .points-forts ul {
    grid-template-columns: 1fr;
  }
  .tree_theme {
    height: auto;
    padding: 80px 0;
  }
  h2 {
    font-size: 1.8rem;
  }
}