/* ============================================
   Paysagiste Renard — style.css?v=1
   Domain: paysagiste-renard.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: #faf5eb;
  color: #2d1f14;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #d97706; text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: 'Georgia', serif;
  color: #2d1f14;
  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 {
  --brown-dark: #2d1f14;
  --amber: #d97706;
  --amber-light: #f59e0b;
  --sand: #faf5eb;
  --sand-dark: #fde68a;
  --text: #2d1f14;
  --text-light: #78593a;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  background: #d97706;
  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: #b45309; transform: translateY(-2px); text-decoration: none; }
.btn-outline {
  background: transparent;
  border: 2px solid #d97706;
  color: #d97706;
}
.btn-outline:hover { background: #d97706; color: #fff; }
.btn-white {
  background: #fff;
  color: #2d1f14;
}
.btn-white:hover { background: #faf5eb; }

/* === HEADER / NAV === */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(45, 31, 20, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(217,119,6,.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: #fde68a;
  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: #d97706;
  border-bottom-color: #d97706;
  text-decoration: none;
}
.nav-cta-btn {
  background: #d97706;
  color: #fff !important;
  padding: .45rem 1.2rem;
  border-radius: 3px;
  border-bottom: none !important;
}
.nav-cta-btn:hover { background: #b45309 !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); }

/* === HERO (CSS BG) === */
.hero-bg {
  background-image: url('/images/hero-jardin.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45, 31, 20, 0.87);
}
.hero-bg .container {
  position: relative;
  z-index: 1;
  padding: 120px 2rem 80px;
}
.hero-bg h1 {
  color: #fff;
  max-width: 700px;
  margin-bottom: 1.2rem;
}
.hero-bg h1 span { color: #d97706; }
.hero-bg p {
  color: #fde68a;
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-badges {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-badge {
  background: rgba(217,119,6,.18);
  border: 1px solid rgba(217,119,6,.45);
  color: #fde68a;
  padding: .3rem .8rem;
  border-radius: 20px;
  font-size: .82rem;
}

/* === STANDARD HERO (inner pages) === */
.hero-inner {
  background: linear-gradient(135deg, #2d1f14 60%, #92400e 100%);
  padding: 140px 2rem 80px;
  text-align: center;
  color: #fff;
}
.hero-inner h1 { color: #fff; margin-bottom: 1rem; }
.hero-inner p { color: #fde68a; 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: #fcd34d;
  margin-bottom: 1rem;
}
.breadcrumb a { color: #fcd34d; }
.breadcrumb span { color: rgba(255,255,255,.5); }

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

/* === TRUST STRIP === */
.trust-strip {
  background: #2d1f14;
  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: #d97706;
}
.trust-item span { font-size: .9rem; color: #fde68a; }

/* === 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 #fde68a;
  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(45,31,20,.12); transform: translateY(-4px); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { color: #2d1f14; margin-bottom: .5rem; }
.service-card p { color: #78593a; font-size: .95rem; }
.service-card a { color: #d97706; 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: #2d1f14; margin-bottom: 1rem; }
.two-col-text p { color: #78593a; margin-bottom: 1rem; }
.check-list { margin: 1.2rem 0; }
.check-list li {
  padding: .4rem 0 .4rem 1.8rem;
  position: relative;
  color: #2d1f14;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d97706;
  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(45, 31, 20, 0.85);
}
.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: #fde68a; 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 #fde68a;
  transition: box-shadow .2s;
}
.blog-card:hover { box-shadow: 0 8px 30px rgba(45,31,20,.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: #d97706; margin-bottom: .4rem; font-weight: 600; }
.blog-card-body h3 { margin-bottom: .5rem; font-size: 1.05rem; }
.blog-card-body h3 a { color: #2d1f14; }
.blog-card-body h3 a:hover { color: #d97706; text-decoration: none; }
.blog-card-body p { color: #78593a; font-size: .92rem; margin-bottom: 1rem; }
.read-more { color: #d97706; font-weight: 700; font-size: .9rem; }

/* === BLOG ARTICLE === */
.article-header {
  background: #2d1f14;
  padding: 140px 2rem 60px;
  color: #fff;
}
.article-header h1 { color: #fff; max-width: 800px; }
.article-meta { color: #fcd34d; 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: #2d1f14; margin: 2rem 0 1rem; }
.article-body h3 { color: #2d1f14; 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: #fef3c7;
  color: #92400e;
  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 #fde68a;
  max-width: 820px;
  margin: 0 auto;
}
.article-nav a { color: #d97706; font-weight: 600; }

/* === CTA SECTION === */
.cta-section {
  background: #2d1f14;
  padding: 80px 2rem;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: #fde68a; 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: #d97706;
  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 #d97706;
  box-shadow: 0 2px 12px rgba(45,31,20,.06);
}
.testimonial-stars { color: #d97706; font-size: 1.1rem; margin-bottom: .5rem; }
.testimonial-card p { color: #78593a; font-style: italic; margin-bottom: 1rem; }
.testimonial-author { font-weight: 700; color: #2d1f14; font-size: .9rem; }
.testimonial-location { color: #d97706; font-size: .85rem; }

/* === CONTACT FORM === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { color: #2d1f14; margin-bottom: 1rem; }
.contact-info p { color: #78593a; }
.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: #2d1f14; }
.contact-detail-text span { color: #78593a; font-size: .95rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-weight: 700;
  color: #2d1f14;
  margin-bottom: .4rem;
  font-size: .92rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid #fde68a;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: #2d1f14;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d97706;
}
.form-group textarea { height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .82rem; color: #78593a; margin-top: .5rem; }

/* === FOOTER === */
footer {
  background: #1c1008;
  color: #b8966a;
  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: #d97706;
  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: #b8966a; font-size: .9rem; transition: color .2s; }
.footer-col ul li a:hover { color: #d97706; }
.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: #7a5c3a;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: #7a5c3a; }
.footer-bottom a:hover { color: #d97706; }

/* === 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: #d97706; border-bottom: 2px solid #fde68a; padding-bottom: .5rem; margin-bottom: 1rem; }
.sitemap-col ul li { margin-bottom: .4rem; }
.sitemap-col ul li a { color: #2d1f14; font-size: .95rem; }
.sitemap-col ul li a:hover { color: #d97706; }

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

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { gap: 2.5rem; }
}
@media (max-width: 768px) {
  nav ul { display: none; flex-direction: column; position: fixed; inset: 70px 0 0 0; background: rgba(45,31,20,.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; }
}
