/* ==========================================================================
   template3.css — Style "Chaleureux / Familial" (orange, formes rondes)
   ========================================================================== */

body { background: #fffaf5; }

/* ---------- Header ---------- */
.t3-header { background: #fff; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.t3-header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; }
.t3-logo { display: flex; align-items: center; gap: 10px; }
.t3-logo-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), #fb923c);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
}
.t3-logo-text strong { font-size: 20px; color: #7c2d12; display: block; }
.t3-logo-text small { font-size: 10.5px; letter-spacing: 1.5px; color: #c2703f; }

.t3-nav { display: flex; gap: 26px; align-items: center; }
.t3-nav a { color: #7c2d12; font-size: 14.5px; font-weight: 600; }
.t3-nav a.active, .t3-nav a:hover { color: var(--primary-color); }

.t3-btn-book {
  background: var(--primary-color);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(234,88,12,0.28);
}
.t3-btn-book:hover { background: #c2410c; }
.t3-menu-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--primary-color); cursor: pointer; }

/* ---------- Hero ---------- */
.t3-hero { position: relative; padding: 60px 0 80px; overflow: hidden; }
.t3-hero::before {
  content: "";
  position: absolute; top: -120px; right: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: #ffedd5; z-index: 0;
}
.t3-hero::after {
  content: "";
  position: absolute; bottom: -160px; left: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: #fff1e6; z-index: 0;
}
.t3-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.t3-hero-content .t3-eyebrow {
  background: #ffedd5; color: var(--primary-color);
  padding: 7px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
}
.t3-hero-content h1 { font-size: 44px; line-height: 1.2; font-weight: 800; margin: 0 0 20px; color: #7c2d12; }
.t3-hero-content h1 .accent { color: var(--primary-color); }
.t3-hero-content p { font-size: 16px; color: #9a5b3a; line-height: 1.75; max-width: 480px; margin-bottom: 30px; }
.t3-hero-actions { display: flex; gap: 14px; margin-bottom: 36px; }
.t3-btn-outline { border: 1.5px solid #fdba74; color: var(--primary-color); padding: 12px 24px; border-radius: 999px; font-weight: 700; font-size: 14.5px; display: inline-flex; align-items: center; gap: 8px; background:#fff; }

#hero-badges-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 440px; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 700; color: #7c2d12; background:#fff; padding: 10px 14px; border-radius: 14px; box-shadow: 0 6px 14px rgba(234,88,12,0.08); }
.hero-badge-icon { color: var(--primary-color); font-size: 18px; }

.t3-hero-image-wrap { position: relative; border-radius: 32px; overflow: hidden; aspect-ratio: 4/3.7; box-shadow: 0 20px 50px rgba(234,88,12,0.18); }
.t3-hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Services ---------- */
.t3-section { padding: 80px 0; }
.t3-section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.t3-eyebrow-tag {
  background: #ffedd5; color: var(--primary-color);
  padding: 6px 16px; border-radius: 999px;
  font-weight: 700; font-size: 13px;
  display: inline-block; margin-bottom: 14px;
}
.t3-section-head h2 { font-size: 32px; font-weight: 800; margin: 0; color: #7c2d12; }

#services-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px 26px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(234,88,12,0.06);
}
.service-card:hover { transform: translateY(-6px) rotate(-0.5deg); box-shadow: 0 20px 40px rgba(234,88,12,0.16); }
.service-icon {
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg,#ffedd5,#fed7aa);
  color: var(--primary-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.service-card h3 { font-size: 18.5px; margin: 0 0 10px; color: #7c2d12; }
.service-card p { color: #9a5b3a; font-size: 14.5px; line-height: 1.6; margin: 0 0 16px; }
.service-link { color: var(--primary-color); font-weight: 700; font-size: 14px; }

.t3-view-all { text-align: center; margin-top: 40px; }
.t3-view-all a { border: none; background: #ffedd5; color: var(--primary-color); padding: 13px 30px; border-radius: 999px; font-weight: 700; font-size: 14.5px; }

/* ---------- About ---------- */
.t3-about { background: #fff5ea; border-radius: 40px; margin: 0 20px; }
.t3-about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.t3-about-image { border-radius: 26px; overflow: hidden; position: relative; }
.t3-about-image::after {
  content: "";
  position: absolute; bottom: -18px; right: -18px;
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--primary-color); opacity: .15;
  z-index: -1;
}
.t3-about-content h2 { font-size: 30px; font-weight: 800; margin: 8px 0 16px; color: #7c2d12; }
.t3-about-content > p { color: #9a5b3a; line-height: 1.75; margin-bottom: 22px; }

#why-points-container { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 12px; }
#why-points-container li { color: #7c2d12; font-size: 14.5px; font-weight: 600; }
#why-points-container li i { color: var(--primary-color); margin-right: 10px; }

#info-cards-container { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; }
.info-card { display: flex; gap: 12px; align-items: flex-start; background:#fff; padding: 16px; border-radius: 16px; }
.info-card-icon { color: var(--primary-color); font-size: 18px; margin-top: 2px; }
.info-card h4 { font-size: 14.5px; margin: 0 0 4px; color: #7c2d12; }
.info-card p { font-size: 13px; color: #9a5b3a; margin: 0; line-height: 1.5; }

/* ---------- Testimonial ---------- */
.t3-testimonial { padding: 70px 0; text-align: center; }
.t3-testimonial-card {
  background: linear-gradient(135deg, var(--primary-color), #fb923c);
  border-radius: 30px;
  padding: 50px 40px;
  max-width: 800px; margin: 0 auto;
  color: #fff;
}
.t3-testimonial i.quote { font-size: 26px; opacity: .8; }
.t3-testimonial blockquote { font-size: 20px; font-weight: 600; margin: 16px auto; line-height: 1.65; }
.t3-testimonial cite { font-size: 14px; opacity: .9; font-style: normal; }

/* ---------- CTA ---------- */
.t3-cta-wrap { padding: 60px 0 90px; }
.t3-cta {
  background: #fff;
  border: 2px dashed #fdba74;
  border-radius: 28px;
  padding: 42px 50px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  max-width: 1152px; margin-inline: auto;
}
.t3-cta-left { display: flex; align-items: center; gap: 18px; }
.t3-cta-icon { width: 56px; height: 56px; border-radius: 50%; background: #ffedd5; color: var(--primary-color); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.t3-cta h3 { margin: 0 0 6px; font-size: 22px; color: #7c2d12; }
.t3-cta p { margin: 0; color: #9a5b3a; font-size: 14.5px; }

/* ---------- Footer ---------- */
.t3-footer { background: #7c2d12; color: #fed7aa; padding: 60px 0 24px; border-radius: 40px 40px 0 0; margin-top: 20px; }
.t3-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.t3-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.t3-footer-logo-icon { width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--primary-color); display: flex; align-items: center; justify-content: center; font-size: 19px; }
.t3-footer-logo strong { color: #fff; font-size: 18px; }
.t3-footer p { font-size: 14px; line-height: 1.7; color: #fdba74; }
.t3-footer h4 { color: #fff; font-size: 15px; margin: 0 0 16px; }
.t3-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.t3-footer ul li a { color: #fdba74; font-size: 14px; }
.t3-footer ul li a:hover { color: #fff; }
.t3-footer .contact-item { display: flex; gap: 10px; font-size: 14px; margin-bottom: 12px; color: #fdba74; }
.t3-footer .contact-item i { color: #fff; margin-top: 3px; }
.t3-social { display: flex; gap: 10px; margin-top: 16px; }
.t3-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: #fff; }
.t3-footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; display: flex; justify-content: space-between; font-size: 13px; color: #fdba74; flex-wrap: wrap; gap: 10px; }
.t3-footer-bottom a { color: #fdba74; margin-left: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .t3-nav { display: none; }
  .t3-menu-toggle { display: block; }
  .t3-hero-grid, .t3-about-grid { grid-template-columns: 1fr; }
  .t3-hero-content h1 { font-size: 33px; }
  #services-container { grid-template-columns: 1fr 1fr; }
  .t3-footer-grid { grid-template-columns: 1fr 1fr; }
  .t3-cta { flex-direction: column; text-align: center; padding: 30px; }
  .t3-about { margin: 0 12px; border-radius: 28px; }
}
@media (max-width: 600px) {
  #services-container { grid-template-columns: 1fr; }
  #info-cards-container { grid-template-columns: 1fr; }
  .t3-footer-grid { grid-template-columns: 1fr; }
  .t3-hero-content h1 { font-size: 27px; }
  #hero-badges-container { grid-template-columns: 1fr; }
}
