/* ======================================================
   RESET & BASE
====================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2f6b4f;
  --dark: #222;
  --light: #f7f7f7;
  --white: #ffffff;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--dark);
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* ======================================================
   BUTTONS
====================================================== */
.btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.btn.primary {
  background: var(--primary);
  color: var(--white);
}

.btn.secondary {
  border: 1px solid var(--white);
  color: var(--white);
}

.btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ======================================================
   HEADER & NAV
====================================================== */
.header {
  background: var(--white);
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  text-decoration: none;
  color: var(--dark);
  transition: color 0.3s;
}

.nav a:hover {
  color: var(--primary);
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* ======================================================
   HERO
====================================================== */
.hero {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url("/img-fleuriste/flower.webp");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 7rem 0;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ======================================================
   ABOUT
====================================================== */
.about {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about img {
  border-radius: 16px;
}

/* ======================================================
   SERVICES
====================================================== */
.services {
  background: #336d5b;
  padding: 5rem 0;
  color: var(--white);
  text-align: center;
}

.services h2 {
  color: var(--white);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  color: var(--dark);
}

.icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* ======================================================
   GALLERY
====================================================== */
.gallery {
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 1.5rem;
}

/* ======================================================
   ZONE D’INTERVENTION
====================================================== */
.zone-intervention {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url("/img-fleuriste/flower.webp");
  background-size: cover;
  background-position: bottom;
  color: var(--white);
  padding: 5rem 0;
}

.zone-intervention h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.zone-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.zone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 2rem;
}

.zone-card {
  background: var(--white);
  color: var(--dark);
  padding: 2rem;
  border-radius: 14px;
  text-align: center;
  transition: 0.3s;
}

.zone-card:hover {
  transform: translateY(-6px);
}

.zone-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

/* ======================================================
   CONTACT
====================================================== */
.contact {
  background: #356756;
  padding: 5rem 0;
  color: var(--white);
  text-align: center;
}

.contact h2 {
  text-align: center;
  margin-bottom: 2rem;
}


.contact form {
  max-width: 500px;
  margin: auto;
  display: grid;
  gap: 1rem;
}

.contact input,
.contact textarea {
  padding: 0.8rem;
  border-radius: 6px;
  border: none;
}

/* ======================================================
   FOOTER
====================================================== */
.footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 768px) {

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.3s;
  }

  .nav.active {
    transform: translateX(0);
  }

  .burger {
    display: flex;
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px,-5px);
  }

  .hero {
    padding: 4.5rem 0;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero .btn {
    width: 100%;
    max-width: 280px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

