@charset "UTF-8";
/* CSS Document */
/* eco-theme.css */ :root {
  --green: #2e7d32;
  --green-dark: #1b5e20;
  --green-light: #e8f5e9;
  --light: #f4f8f4;
  --white: #ffffff;
  --text: #333333;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
body {
  line-height: 1.7;
  background: var(--light);
  color: var(--text);
  padding-top: 80px; /* Espace pour le header fixe */
}
/* Header Fixe */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 80px;
}
.nav-container {
  max-width: 1200px;
  margin: auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.logo-link {
  text-decoration: none;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-link h1 {
  font-size: 1.4rem;
  font-weight: 800;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
/* Boutons Header */
.btn {
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-phone {
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-phone:hover {
  background: var(--green);
  color: white;
}
.btn-devis {
  background: var(--green);
  color: white;
}
.btn-devis:hover {
  background: var(--green-dark);
}
/* Structure & Contenu */
.container {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 20px;
}
.card {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}
h2 {
  color: var(--green-dark);
  margin-bottom: 20px;
  border-left: 5px solid var(--green);
  padding-left: 15px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
/* Services */
.service-list {
  list-style: none;
}
.service-item {
  background: var(--green-light);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  transition: var(--transition);
}
.service-item:hover {
  transform: translateY(-3px);
}
.service-item h3 {
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
/* Footer */
footer {
  background: var(--green-dark);
  color: white;
  text-align: center;
  padding: 40px 20px;
}
/* Responsive */
@media (max-width: 850px) {
  .btn-phone span:not(.material-icons) {
    display: none;
  } /* Cache le texte du tel sur petit mobile */
  .logo-link h1 {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .nav-container {
    padding: 0 10px;
  }
  .btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}