 /* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Playfair+Display:wght@700&display=swap');

:root {
  --gold: #c99d49;
  --gold-hover: #b68a3b;
  --bg-color: #f5f5f5;
  --text-color: #111;
}

/* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==== FOND D’ÉCRAN ==== */
body {
  font-family: 'Lato', sans-serif;
  background: url('/assets/background.png') center top / cover no-repeat fixed;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
}

/* ==== BANDEAU DÉFILANT ==== */
.urgent-chat {
  background: var(--gold);
  color: #111;
  padding: 0.5rem;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.13);
  cursor: pointer;
}
.urgent-chat p {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 20s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ==== HERO PRINCIPAL (2 COLONNES) ==== */
.hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
  margin: 3rem 0;
}

/* Colonne gauche : image seule */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-left .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
/* Masquer titre/subtitre */
.hero-left .hero-title,
.hero-left .hero-subtitle {
  display: none !important;
}

/* Colonne droite : 3 cartes empilées */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-right .hero-col {
  flex: 1;
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 1.5rem;
}

/* ==== OFFRE DÉCOUVERTE ==== */
.offer-card {
  background: #fff;
  border: 3px solid var(--gold);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 2rem 1.5rem;
  margin-top: -1rem;
}
.offer-card h2 {
  color: var(--gold);
}
.btn-offer {
  background: var(--gold);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s;
  border: none;
  display: inline-block;
}
.btn-offer:hover {
  background: var(--gold-hover);
}

/* ==== CTA FORMULAIRE & ROI ==== */
.cta-form input,
.roi-calculator input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.roi-calculator {
  font-family: 'Playfair Display', serif;
}
.roi-fieldset {
  border: 2px solid var(--gold);
  background: rgba(255,255,255,0.85);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 0;
}
.roi-fieldset legend {
  color: var(--gold);
  font-weight: 700;
}
.roi-calculator button {
  background: var(--gold);
  color: #111;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.roi-calculator button:hover {
  background: var(--gold-hover);
  color: #fff;
}
.roi-result p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

/* ==== NAVBAR PILLS ==== */
.navbar a {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: transparent;
  color: #333;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.navbar a:hover {
  background: rgba(201,157,73,0.15);
  color: var(--gold);
}
.navbar a.active {
  background: var(--gold);
  color: #fff;
  font-weight: 700;
}

/* ==== BOUTONS GÉNÉRIQUES ==== */
.btn-hero,
.btn-paypal {
  background: var(--gold);
  color: #111;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
  margin-top: 1rem;
}
.btn-hero:hover,
.btn-paypal:hover {
  background: var(--gold-hover);
  color: #fff;
}

/* ==== Services & Testimonials ==== */
.services-grid,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.service-card,
.testimonial {
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: calc(50% - 1.5rem);
}

/* ==== Contact Card ==== */
.contact-card {
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 2rem;
  max-width: 600px;
  margin: 3rem auto;
}
.contact-form .form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-form .form-group {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 0.3rem;
  margin-bottom: 0.7rem;
}

/* ==== Footer ==== */
footer {
  text-align: center;
  padding: 2rem 0;
  background: rgba(255,255,255,0.9);
}

/* ==== Responsive ==== */
@media (max-width: 900px) {
  .service-card,
  .testimonial {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hero-main {
    grid-template-columns: 1fr !important;
  }
  .hero-right .hero-col {
    margin-bottom: 1rem;
  }
}
/* 🔧 Correction affichage Hero accueil */
.hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
  margin: 3rem 0;
}
.hero-left .hero-image {
  width: 100%;
  height: auto; /* remplacé cover */
  object-fit: cover;
  border-radius: 12px;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}