/* ------------------------------
Base & variables
------------------------------- */
/* ------------------------------
Palette alternative - beige & terracotta
------------------------------- */
:root {
--primary: #C76D48;   /* terracotta chaleureux */
--primary-dark: #9B4F32;
--secondary: #FAF8F4; /* beige clair */
--text: #2C2C2C;
--text-light: #555;
--bg: #ffffff;
--radius: 12px;
--shadow: 0 4px 12px rgba(0,0,0,0.08);
--max-width: 1200px;
--font: "Poppins", "Segoe UI", Arial, sans-serif;
}


* { box-sizing: border-box; margin: 0; padding: 0; }
  body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  }

/* ------------------------------
Layout
------------------------------- */
.wrap { max-width: var(--max-width); margin: auto; padding: 0 1rem; }
header.header {
display: flex; justify-content: space-between; align-items: center;
padding: 1rem 0;
position: sticky; top: 0; z-index: 1000;
background: var(--bg); transition: box-shadow .3s ease;
}
header.header.scrolled { box-shadow: var(--shadow); }

.logo { display: flex; align-items: center; gap: .8rem; }
.logo-img { max-height: 80px; border-radius: var(--radius); }

/* ------------------------------
Contact header
------------------------------- */
.contact-header { text-align: right; }
.contact-header a {
display: block;
color: var(--primary);
font-weight: 600;
text-decoration: none;
margin: 0.2rem 0;
}
.contact-header a:hover { text-decoration: underline; }

/* ------------------------------
Hero
------------------------------- */
.hero {
display: grid; gap: 2rem;
grid-template-columns: 1fr 1fr;
align-items: center;
padding: 2rem 0;
}
.hero .txt h1 { font-size: 2rem; margin-bottom: 1rem; }
.hero .txt .lead { font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--text-light); }
.hero-img img { width: 60%;max-width: 600px; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ------------------------------
CTA Buttons
------------------------------- */
.cta {
background: var(--primary); color: #fff;
padding: .8rem 1.5rem;
border-radius: var(--radius);
font-weight: 600;
text-decoration: none;
margin-right: 1rem;
display: inline-block;
transition: background .3s ease;
}
.cta:hover { background: var(--primary-dark); }

.cta.secondary {
background: #eee; color: var(--text);
}
.cta.secondary:hover { background: #ddd; }

/* ------------------------------
Sections
------------------------------- */
section { padding: 3rem 0; }
h2 { font-size: 1.8rem; margin-bottom: 2rem; text-align: center; color: var(--primary-dark); }

.map-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0; /* optionnel, espace autour */
}

/* Services cards */
.services {
display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
}
.card {
background: var(--secondary);
border-radius: var(--radius);
padding: 1.5rem;
box-shadow: var(--shadow);
transition: transform .2s ease;
}
.card:hover { transform: translateY(-5px); }

/* Portfolio grid */
.portfolio-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
}
.portfolio-grid img {
width: 80%; border-radius: var(--radius);
box-shadow: var(--shadow);
}

/* Testimonials */
#temoignages {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.titreBottom {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.titreBottom img {
  width: 50px;
  height: auto;
  margin-right: 0.75rem;
}

.rightTitre {
  text-align: right;
  margin-bottom: 2rem;
}

.rightTitre .plus {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.rightTitre .plus:hover {
  color: #555;
  border-bottom: 1px solid #555;
}

.testimonials blockquote {
  font-style: italic;
  background: #f8f8f8;
  border-left: 4px solid #ccc;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.testimonials cite {
  display: block;
  margin-top: 0.5rem;
  text-align: right;
  font-style: normal;
  color: #555;
}

.center {
  text-align: center;
}



#contact {
  text-align: center;
  padding: 3rem 1rem;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.contact-form label {
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: var(--radius, 8px);
  font-size: 1rem;
}

.contact-form button {
  background: #333;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius, 8px);
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.contact-form button:hover {
  background: #555;
}

/* Footer */
footer {
background: var(--secondary);
padding: 1rem;
text-align: center;
font-size: 0.9rem;
color: var(--text-light);
}

/* ------------------------------
Sticky CTA
------------------------------- */
.sticky-cta {
position: fixed;
bottom: 20px; right: 20px;
background: var(--primary);
color: #fff;
padding: 0.8rem 1.2rem;
border-radius: 50px;
box-shadow: var(--shadow);
font-weight: 600;
text-decoration: none;
transition: background .3s ease;
z-index: 1100;
}
.sticky-cta:hover { background: var(--primary-dark); }

/* ------------------------------
Responsive
------------------------------- */
@media (max-width: 768px) {
.hero { grid-template-columns: 1fr; text-align: center; }
.hero .txt h1 { font-size: 1.6rem; }
.contact-header { text-align: center; margin-top: 1rem; }
.logo { flex-direction: column; text-align: center; }
}
