/*
Theme Name: Elagage LS
Theme URI: https://elagage-ls.fr
Author: Melaphen
Version: 1.0
*/

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #1a1a1a;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
a:hover { color: #d4af37; }

h1,h2,h3,h4 { font-weight: 600; margin: 0 0 20px; }

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
}
.btn-gold { background:#d4af37; color:#fff; }
.btn-gold:hover { background:#b8962e; }
.btn-green { background:#2e7d32; color:#fff; }
.btn-green:hover { background:#256628; }

/* ----- HEADER ----- */
header {
  position: fixed;
  width:100%;
  top:0;
  left:0;
  z-index:999;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 40px;
}
header img {height:80px;}
header nav ul {
  list-style:none;
  display:flex;
  gap:30px;
  margin:0;
}
header nav ul li a {
  color:#fff;
  font-weight:500;
}
header nav ul li a:hover { color:#d4af37; }
header .cta a { margin-left:10px; }

/* ----- HERO SLIDER ----- */
.hero {
  position:relative;
  height:100vh;
  overflow:hidden;
}
.hero .slide {
  position:absolute;
  top:0;left:0;
  width:100%;height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1s ease-in-out;
}
.hero .slide.active { opacity:1; }
.hero .overlay {
  position:absolute;
  top:0;left:0;width:100%;height:100%;
  background:rgba(0,0,0,0.45);
}
.hero .content {
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
}
.hero h1 {font-size:52px;margin-bottom:10px;}
.hero p {font-size:20px;margin-bottom:30px;}

/* ----- SECTIONS ----- */
.section {padding:80px 20px;max-width:1200px;margin:auto;}
.section h2 {text-align:center;color:#2e7d32;margin-bottom:50px;font-size:36px;}

.services {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}
.service-card {
  background:#fff;
  box-shadow:0 4px 10px rgba(0,0,0,0.1);
  border-radius:10px;
  overflow:hidden;
  text-align:center;
  transition:transform .3s;
}
.service-card:hover {transform:translateY(-5px);}
.service-card img {width:100%;height:220px;object-fit:cover;}
.service-card h3 {margin:15px 0 10px;color:#2e7d32;}
.service-card p {padding:0 15px 20px;}

/* ----- GALLERY ----- */
.gallery {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:20px;
}
.gallery img {width:100%;border-radius:8px;transition:.3s;}
.gallery img:hover {transform:scale(1.05);}

/* ----- CONTACT FORM ----- */
form input, form textarea {
  width:100%;
  padding:12px;
  border:1px solid #ccc;
  border-radius:6px;
  margin-bottom:15px;
  font-size:15px;
}
form button {border:none;cursor:pointer;}

/* ----- FOOTER ----- */
footer {
  background:#1a1a1a;
  color:#fff;
  text-align:center;
  padding:50px 20px;
}
footer a {color:#d4af37;}
footer img {height:80px;margin-bottom:15px;}
