/* ============================================
   Vert d'Ô — Paysagiste — style.css?v=1
   Domain: vertdo-paysagiste.fr
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: #f0fdf4;
  color: #1a3a2a;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #22c55e; text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: 'Georgia', serif;
  color: #1a3a2a;
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: .5rem; }
p { margin-bottom: 1rem; }

/* === COLORS === */
:root {
  --green-dark: #1a3a2a;
  --green-leaf: #22c55e;
  --green-mid: #16a34a;
  --cream: #f0fdf4;
  --cream-dark: #dcfce7;
  --text: #1a3a2a;
  --text-light: #4b7a60;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  background: #22c55e;
  color: #fff;
  padding: .85rem 2rem;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  transition: background .2s, transform .2s;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}
.btn:hover { background: #16a34a; transform: translateY(-2px); text-decoration: none; }
.btn-outline {
  background: transparent;
  border: 2px solid #22c55e;
  color: #22c55e;
}
.btn-outline:hover { background: #22c55e; color: #fff; }
.btn-white {
  background: #fff;
  color: #1a3a2a;
}
.btn-white:hover { background: #f0fdf4; }

/* === HEADER / NAV === */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 58, 42, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(34,197,94,.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-logo-text {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: Georgia, serif;
}
nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
nav ul li a {
  color: #dcfce7;
  font-size: .95rem;
  letter-spacing: .04em;
  transition: color .2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
nav ul li a:hover,
nav ul li a.active {
  color: #22c55e;
  border-bottom-color: #22c55e;
  text-decoration: none;
}
.nav-cta-btn {
  background: #22c55e;
  color: #fff !important;
  padding: .45rem 1.2rem;
  border-radius: 3px;
  border-bottom: none !important;
}
.nav-cta-btn:hover { background: #16a34a !important; }

/* === HAMBURGER === */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === SPLIT HERO === */
.hero.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.hero-text-half {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: #1a3a2a;
  color: #fff;
  padding-top: 100px;
}
.hero-text-half h1 {
  color: #fff;
  margin-bottom: 1.2rem;
}
.hero-text-half h1 span {
  color: #22c55e;
}
.hero-text-half p {
  color: #dcfce7;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-text-half .hero-badges {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-badge {
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.4);
  color: #86efac;
  padding: .3rem .8rem;
  border-radius: 20px;
  font-size: .82rem;
}
.hero-video-half {
  position: relative;
  overflow: hidden;
  background: #1a3a2a;
}
.hero-split-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

/* === STANDARD HERO (inner pages) === */
.hero-inner {
  background: linear-gradient(135deg, #1a3a2a 60%, #16a34a 100%);
  padding: 140px 2rem 80px;
  text-align: center;
  color: #fff;
}
.hero-inner h1 { color: #fff; margin-bottom: 1rem; }
.hero-inner p { color: #dcfce7; font-size: 1.1rem; max-width: 600px; margin: 0 auto 1.5rem; }
.breadcrumb {
  display: flex;
  gap: .5rem;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: #86efac;
  margin-bottom: 1rem;
}
.breadcrumb a { color: #86efac; }
.breadcrumb span { color: rgba(255,255,255,.5); }

/* === SECTION LAYOUT === */
.section { padding: 80px 2rem; }
.section-alt { background: #dcfce7; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { color: #1a3a2a; }
.section-header p { color: #4b7a60; max-width: 640px; margin: .75rem auto 0; font-size: 1.05rem; }
.section-subtitle {
  display: inline-block;
  color: #22c55e;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

/* === INTRO / TRUST STRIP === */
.trust-strip {
  background: #1a3a2a;
  padding: 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
  color: #fff;
}
.trust-item strong {
  display: block;
  font-size: 1.8rem;
  color: #22c55e;
}
.trust-item span { font-size: .9rem; color: #86efac; }

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid #dcfce7;
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: 0 8px 30px rgba(26,58,42,.12); transform: translateY(-4px); }
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.service-card h3 { color: #1a3a2a; margin-bottom: .5rem; }
.service-card p { color: #4b7a60; font-size: .95rem; }
.service-card a {
  color: #22c55e;
  font-weight: 700;
  font-size: .9rem;
}

/* === 2-COL SPLIT === */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col-img { border-radius: 6px; overflow: hidden; }
.two-col-img img { width: 100%; height: 400px; object-fit: cover; }
.two-col-text h2 { color: #1a3a2a; margin-bottom: 1rem; }
.two-col-text p { color: #4b7a60; margin-bottom: 1rem; }
.check-list { margin: 1.2rem 0; }
.check-list li {
  padding: .4rem 0 .4rem 1.8rem;
  position: relative;
  color: #1a3a2a;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

/* === BANNER (CSS BG) === */
.banner-section {
  background-image: url('/images/vue-larochelle.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 100px 2rem;
  text-align: center;
}
.banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 58, 42, 0.82);
}
.banner-section .container { position: relative; z-index: 1; }
.banner-section h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.banner-section p { color: #dcfce7; font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }

/* === BLOG GRID === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #dcfce7;
  transition: box-shadow .2s;
}
.blog-card:hover { box-shadow: 0 8px 30px rgba(26,58,42,.12); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta { font-size: .82rem; color: #22c55e; margin-bottom: .4rem; font-weight: 600; }
.blog-card-body h3 { margin-bottom: .5rem; font-size: 1.05rem; }
.blog-card-body h3 a { color: #1a3a2a; }
.blog-card-body h3 a:hover { color: #22c55e; text-decoration: none; }
.blog-card-body p { color: #4b7a60; font-size: .92rem; margin-bottom: 1rem; }
.read-more { color: #22c55e; font-weight: 700; font-size: .9rem; }

/* === BLOG ARTICLE === */
.article-header {
  background: #1a3a2a;
  padding: 140px 2rem 60px;
  color: #fff;
}
.article-header h1 { color: #fff; max-width: 800px; }
.article-meta { color: #86efac; margin-top: .75rem; font-size: .9rem; }
.article-hero-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}
.article-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.article-body h2 { color: #1a3a2a; margin: 2rem 0 1rem; }
.article-body h3 { color: #1a3a2a; margin: 1.5rem 0 .75rem; }
.article-body p { color: #374151; margin-bottom: 1.2rem; }
.article-body ul { margin: 1rem 0 1.2rem 1.5rem; list-style: disc; }
.article-body ul li { color: #374151; margin-bottom: .4rem; }
.article-mid-img {
  width: 100%;
  border-radius: 6px;
  margin: 2rem 0;
  max-height: 380px;
  object-fit: cover;
}
.article-tags { margin-top: 2rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.tag {
  background: #dcfce7;
  color: #16a34a;
  padding: .25rem .75rem;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
}
.article-nav {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  border-top: 1px solid #dcfce7;
  max-width: 820px;
  margin: 0 auto;
}
.article-nav a { color: #22c55e; font-weight: 600; }

/* === CTA SECTION === */
.cta-section {
  background: #1a3a2a;
  padding: 80px 2rem;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: #dcfce7; max-width: 600px; margin: 0 auto 2rem; }

/* === TWO-COL CTA === */
.two-col-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.cta-img-half {
  position: relative;
  overflow: hidden;
}
.cta-img-half img { width: 100%; height: 100%; object-fit: cover; }
.cta-text-half {
  background: #22c55e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  color: #fff;
}
.cta-text-half h2 { color: #fff; margin-bottom: 1rem; }
.cta-text-half p { color: rgba(255,255,255,.9); margin-bottom: 1.5rem; }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: #fff;
  border-radius: 6px;
  padding: 2rem;
  border-left: 4px solid #22c55e;
  box-shadow: 0 2px 12px rgba(26,58,42,.06);
}
.testimonial-stars { color: #22c55e; font-size: 1.1rem; margin-bottom: .5rem; }
.testimonial-card p { color: #4b7a60; font-style: italic; margin-bottom: 1rem; }
.testimonial-author { font-weight: 700; color: #1a3a2a; font-size: .9rem; }
.testimonial-location { color: #22c55e; font-size: .85rem; }

/* === CONTACT FORM === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { color: #1a3a2a; margin-bottom: 1rem; }
.contact-info p { color: #4b7a60; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.2rem;
}
.contact-detail-icon { font-size: 1.4rem; margin-top: .1rem; }
.contact-detail-text strong { display: block; color: #1a3a2a; }
.contact-detail-text span { color: #4b7a60; font-size: .95rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-weight: 700;
  color: #1a3a2a;
  margin-bottom: .4rem;
  font-size: .92rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid #dcfce7;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: #1a3a2a;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #22c55e;
}
.form-group textarea { height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .82rem; color: #4b7a60; margin-top: .5rem; }

/* === FOOTER === */
footer {
  background: #111e14;
  color: #a3c4a8;
  padding: 60px 2rem 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 44px; margin-bottom: 1rem; }
.footer-brand p { font-size: .92rem; line-height: 1.7; }
.footer-col h4 {
  color: #22c55e;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: #a3c4a8; font-size: .9rem; transition: color .2s; }
.footer-col ul li a:hover { color: #22c55e; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: #6b8f72;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: #6b8f72; }
.footer-bottom a:hover { color: #22c55e; }

/* === SITEMAP PAGE === */
.sitemap-section { padding: 120px 2rem 80px; }
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.sitemap-col h3 { color: #22c55e; border-bottom: 2px solid #dcfce7; padding-bottom: .5rem; margin-bottom: 1rem; }
.sitemap-col ul li { margin-bottom: .4rem; }
.sitemap-col ul li a { color: #1a3a2a; font-size: .95rem; }
.sitemap-col ul li a:hover { color: #22c55e; }

/* === 404 === */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: #1a3a2a;
}
.page-404 h1 {
  font-size: 8rem;
  color: #22c55e;
  line-height: 1;
  margin-bottom: .5rem;
}
.page-404 h2 { color: #fff; margin-bottom: 1rem; }
.page-404 p { color: #dcfce7; margin-bottom: 2rem; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { gap: 2.5rem; }
}
@media (max-width: 768px) {
  .hero.hero-split { grid-template-columns: 1fr; }
  .hero-video-half { height: 300px; }
  .hero-text-half { padding: 100px 1.5rem 3rem; }
  nav ul { display: none; flex-direction: column; position: fixed; inset: 70px 0 0 0; background: rgba(26,58,42,.98); padding: 2rem; gap: 0; }
  nav ul.open { display: flex; }
  nav ul li { border-bottom: 1px solid rgba(255,255,255,.1); width: 100%; }
  nav ul li a { display: block; padding: 1rem 0; font-size: 1.1rem; }
  .hamburger { display: flex; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; direction: ltr; }
  .two-col-img img { height: 280px; }
  .two-col-cta { grid-template-columns: 1fr; }
  .cta-img-half { height: 280px; }
  .cta-text-half { padding: 3rem 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 60px 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .trust-strip { gap: 1.5rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
