/* HOMEPAGE */
/* HEADER */

#masthead {
  position: sticky !important;
  z-index: 999 !important;
  position: fixed !important;
background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0,0,0.5);
	transition: all 0.3s ease !important;
}

.ast-builder-menu-1 .sub-menu {
	width: 100%;
}

.ast-header-break-point .ast-icon.icon-arrow svg {
	margin-left: 0px;
}

.ast-header-button-1[data-section*="section-hb-button-"] .ast-builder-button-wrap .ast-custom-button {
	text-align: center;
}

/* RESPONSIVE */
@media (min-width: 1023px) and (max-width: 1030px) {
.ast-builder-grid-row{
	 grid-column-gap: 0px; 

	}}

/* Hero Section */

.hero-video {
  position: relative;
	height: 800px;
}

@media (max-width: 767px) {
	.hero-video {
	height: 700px;
}
}

.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
	height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-content{
	  transform: translate(-50%, -50%);
}

/* Présentation */

.elementor-element-14df2e8.e-con.e-flex>.e-con-inner {
	justify-content: center;
}

.presentation-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
	display: flex;
	justify-content: center;
}

.presentation-container {
	width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* BADGE */
.presentation-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(58, 160, 122, 0.1);
  color: #3AA07A;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

/* TITRE */
.presentation-title {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #222;
}

/* TEXTES */
.presentation-text {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
	margin-bottom: 0px !important;
}

/* HIGHLIGHT */
.presentation-highlight {
  margin: 35px auto;
  font-size: 20px;
  font-weight: 600;
  color: #3AA07A;
  position: relative;
  display: inline-block;
}

.presentation-highlight::before,
.presentation-highlight::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #3AA07A;
  vertical-align: middle;
  margin: 0 10px;
}

/* ANIMATION D'APPARITION */
.presentation-container > * {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.presentation-badge { animation-delay: 0.1s; }
.presentation-title { animation-delay: 0.2s; }
.presentation-text:nth-of-type(1) { animation-delay: 0.3s; }
.presentation-text:nth-of-type(2) { animation-delay: 0.4s; }
.presentation-highlight { animation-delay: 0.5s; }
.presentation-text:nth-of-type(3) { animation-delay: 0.6s; }

/* ANIMATION */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .presentation-section {
    padding: 30px 15px;
  }

  .presentation-title {
    font-size: 28px;
  }

  .presentation-text {
    font-size: 16px;
  }

  .presentation-highlight {
    font-size: 18px;
  }

  .presentation-highlight::before,
  .presentation-highlight::after {
    width: 20px;
  }
}

/* Card-grid */

.service-card {
  overflow: hidden;
  border-radius: 16px;
  text-decoration: none;
  background: #000;
  transform: translateY(0);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.2)
  );
  z-index: 1;
}

.service-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  color: white;
}

.service-content h3 {
  margin: 0;
  font-size: 20px;
	color: #25AB99;
}

.service-content p {
  font-size: 14px;
  opacity: 0.9;
  margin: 10px 0;
}

.service-cta {
  display: inline-block;
  padding: 8px 14px;
  background: #ffffff;
  color: #000;
  border-radius: 30px;
  font-size: 13px;
  transition: 0.3s;
}

.service-card:hover .service-cta {
  background: #498C9D;
  color: #fff;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .service-img img {
    height: 240px;
  }
}

/* Engagement */

.why-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* GAUCHE */
.why-left {
  border-right: 1px solid #eee;
  padding-right: 40px;
}

.why-left h2 {
  font-size: 32px;
  margin-bottom: 25px;
  text-align: center;
}

/* LISTE */
.why-list {
  list-style: none;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px 15px;
  margin-bottom: 12px;
  font-size: 16px;

  border-radius: 10px;
  background: #fff;

  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.6s ease forwards;
  transition: 0.3s;
}

/* effet cascade */
.why-list li:nth-child(1) { animation-delay: 0.1s; }
.why-list li:nth-child(2) { animation-delay: 0.2s; }
.why-list li:nth-child(3) { animation-delay: 0.3s; }
.why-list li:nth-child(4) { animation-delay: 0.4s; }
.why-list li:nth-child(5) { animation-delay: 0.5s; }

/* hover premium */
.why-list li:hover {
  transform: translateX(6px);
  background: #f1f7f4;
}

/* ICÔNES */
.why-list i {
  color: #3AA07A;
  font-size: 18px;
  min-width: 20px;
}

/* DROITE */
.why-text {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.why-text.light {
  opacity: 0.7;
}

/* CTA */
.why-cta {
  display: block;
  margin: 25px auto 0;
  text-align: center;
  width: fit-content;
  padding: 12px 20px;
  background: #3AA07A;
  color: #fff;
  border-radius: 30px;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: 0.3s;
}

.why-cta:hover {
  background: #706F6F;
	color: white;
  transform: translateY(-2px);
}

/* ANIMATION */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-left {
    border-right: none;
    padding-right: 0;
  }

  .why-left h2 {
    font-size: 26px;
  }
	
.why-list {
  padding: 0px !important;
}
	
  .why-section {
    padding: 30px 15px;
  }
}
/* Insta Feed */

.sbi_follow_btn a{
	font-size: 18px !important;
}
/* Google Reviews */

html body .ti-widget.ti-goog .ti-review-item > .ti-inner {
	background-color: #3AA07A !important;
	border-color: #706F6F !important;
}

/* FOOTER */

.slp-footer {
  background: radial-gradient(circle at top, #498C9D, #706F6F);
  padding: 30px 40px;
  color: #fff;
}

/* GRID */
.slp-footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* COLONNE GAUCHE */
.slp-footer-left {
  display: flex;
  flex-direction: column;
}

.slp-footer-logo {
  width: 200px;
}

.slp-footer-text {
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  font-size: 0.8em;
}

/* COLONNE DROITE */
.slp-footer-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* CARD CONTACT (GROS CHANGE VISUEL) */
.slp-footer-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* LIENS */
.slp-footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.slp-icon {
  width: 25px;
  height: 25px;
  color: white;
  flex-shrink: 0;
  transition: 0.3s;
}

/* hover premium */
.slp-footer-link:hover .slp-icon {
  transform: scale(1.15);
  color: #2d7a5e;
}

.slp-footer-link:hover {
  transform: translateX(5px);
}

/* BAS */
.slp-footer-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* MINI LOGO */
.slp-footer-mini-logo {
  width: 200px;
  opacity: 0.9;
}

/* SOCIAL */
.slp-footer-social {
  display: flex;
  gap: 12px;
}

.slp-footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.slp-footer-social a:hover {
  background: #3AA07A;
  transform: translateY(-4px);
}

/* LEGAL LINKS */
.slp-footer-legal {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.slp-footer-legal a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin: 0 10px;
  transition: 0.3s;
  position: relative;
}

/* effet hover premium discret */
.slp-footer-legal a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #3AA07A;
  transition: 0.3s;
}

.slp-footer-legal a:hover::after {
  width: 100%;
}

.slp-footer-legal a:hover {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	
	.slp-footer{
		padding: 30px 20px;
	}
	
  .slp-footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
	
	
	.slp-footer-text {
  font-size: 0.5em;
}
	.slp-footer-logo{
		margin: 0 auto;
	}
  .slp-footer-bottom {
    justify-content: center;
  }

  .slp-footer-card {
    align-items: center;
  }
	
	 .slp-footer-legal {
    font-size: 12px;
  }
}



/* CONTACT */ 

/* =========================
   SECTION GLOBALE
========================= */
.slp-contact-premium {
  padding: 80px 20px;
  background: #f6f6f4;
}

/* HEADER */
.slp-contact-header {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.slp-contact-header h2 {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.slp-contact-header p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
}

/* =========================
   GRID
========================= */
.slp-contact-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* =========================
   CARD PREMIUM
========================= */
.slp-contact-card {
  background: #fff;
  border-radius: 22px;
  padding: 35px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* ACCENT CARD (horaires) */
.slp-contact-card--accent {
  background: linear-gradient(135deg, #3AA07A, #2c7a5d);
  color: #fff;
}

.slp-contact-card--accent h3,
.slp-contact-card--accent span,
.slp-contact-card--accent a {
  color: #fff;
}

/* TITRE CARD */
.slp-contact-card h3 {
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 500;
}

/* ITEM */
.slp-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.5;
}

/* ICONES */
.slp-contact-item svg{
	 width: 22px;
  height: 22px;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
}

/* accent card icons */
.slp-contact-card--accent {
  color: rgba(255,255,255,0.9);
}

/* LINKS */
.slp-contact-item a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

.slp-contact-item a:hover {
  opacity: 0.8;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .slp-contact-grid {
    grid-template-columns: 1fr;
  }

  .slp-contact-card {
    padding: 25px;
  }

  .slp-contact-header h2 {
    font-size: 26px;
  }
}

/* À PROPOS */

/* =========================
   GLOBAL
========================= */

.slp-container {
	
  padding: 60px 50px;
}

/* =========================
   HERO
========================= */

.slp-about-hero {
  position: relative;
  height: 50vh;
  background: url('https://structurel-paysage.fr/wp-content/uploads/2026/04/Cailloux-bois-2.jpg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slp-about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.slp-about-content {
  position: relative;
  max-width: 700px;
}

.slp-about-content h1 {
  line-height: 1.2;
}

.slp-about-content p {
  font-size: 18px;
	color: white;
}

/* =========================
   STATS (RONDS)
========================= */

.h2-valeurs{
	margin-top: 40px !important;
}

.slp-stats {
	margin-bottom: 40px;
	padding-top: 40px;
}

.slp-stats-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.slp-stat-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  position: relative;

  background: radial-gradient(circle at 30% 30%, #3AA07A, #498C9D);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    inset 0 0 20px rgba(255,255,255,0.1),
    0 15px 40px rgba(0,0,0,0.6);

  transition: 0.4s;
}

.circle-inner {
  text-align: center;
	color: white;
}

.circle-inner span {
  font-size: 50px;
  font-weight: bold;
	color: white;
}

.circle-inner p {
  font-size: 13px;
}

.slp-stat-circle:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow:
    inset 0 0 30px rgba(255,255,255,0.2),
    0 25px 60px rgba(0,0,0,0.8);
}

/* =========================
   VALUES (CARDS GLASS)
========================= */

.slp-values .slp-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
	margin-bottom: 40px;
}

.slp-value-card {
  position: relative;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid #706F6F;
  transition: 0.4s;
  overflow: hidden;
}

.slp-value-card h3 {
  margin-bottom: 15px;
}

.slp-value-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border-color: rgba(58,160,122,0.4);
}

/* =========================
   ENGAGEMENTS (STYLE ARCHI)
========================= */

.slp-engagements {
  background: rgba(112, 111, 111, 0.1);
	margin-left: 50px;
  margin-right: 50px;
	margin-bottom: 40px;
}

.slp-engagements h2 {
  text-align: center;
  margin-bottom: 40px;
}

.slp-engagement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
	justify-items: center;
}

.slp-engagement-grid div {
  position: relative;
  padding: 30px 30px 30px 50px;
  border-left: 2px solid rgba(58,160,122,0.3);
  transition: 0.4s;
}

.slp-engagement-grid div h4 {
  margin-bottom: 10px;
}

/* point */
.slp-engagement-grid div::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 30px;
  width: 12px;
  height: 12px;
  background: #3AA07A;
  border-radius: 50%;
  transition: 0.3s;
}

.slp-engagement-grid div:hover {
  border-color: #3AA07A;
  transform: translateX(10px);
}

.slp-engagement-grid div:hover::before {
  transform: scale(1.5);
}

/* =========================
   RSE
========================= */
/* SECTION */
.slp-rse {
  padding: 0px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

/* TITRE */
.slp-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
}

/* INTRO */
.slp-rse-intro {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
  color: #555;
  line-height: 1.7;
}

/* GRID */
.slp-rse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

/* CARDS PREMIUM */
.slp-rse-card {
  padding: 40px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  transition: 0.4s;
  overflow: hidden;
}

/* LIGNE DESIGN */
.slp-rse-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #3AA07A;
  transition: 0.4s;
}

.slp-rse-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.slp-rse-card h4 {
  margin-bottom: 10px;
  font-size: 20px;
}

.slp-rse-card p {
  color: #666;
  line-height: 1.6;
}

/* BLOC TEXTE */
.slp-rse-content {
  max-width: 900px;
  margin: auto;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* TITRE INTERNE */
.slp-rse-content h3 {
  margin: 40px 0 20px;
  font-size: 22px;
}

/* LISTE PREMIUM */
.slp-rse-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 40px;
}

.slp-rse-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

/* BULLET DESIGN */
.slp-rse-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3AA07A;
  box-shadow: 0 0 10px rgba(58,160,122,0.5);
}

/* PHRASE FORTE */
.slp-rse-highlight {
  margin-top: 40px;
  font-weight: 500;
  font-size: 18px;
  padding-left: 20px;
  border-left: 3px solid #3AA07A;
}

/* ANIMATION */
.slp-animate {
  opacity: 0 !important;
  transform: translateY(40px) !important;
  transition: 0.8s ease !important;
}

.slp-animate.active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {

  .slp-stats-container {
    justify-content: center;
  }

  .slp-values .slp-container {
    grid-template-columns: 1fr;
  }

  .slp-engagement-grid {
    grid-template-columns: 1fr;
  }

  .slp-rse-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .slp-rse-grid {
    grid-template-columns: 1fr;
  }

  .slp-title {
    font-size: 28px;
  }

  .slp-rse {
    padding: 0px 20px;
  }
}

@media (max-width: 768px) {
	.slp-container{
		padding: 10px 25px;
	}
	
  .slp-about-content h1 {
    font-size: 30px;
		padding-right: 20px;
    padding-left: 20px;
  }
	
	.h2-valeurs{
	margin-top: 20px !important;
}
	
	.slp-about-content p{
		padding-right: 20px;
    padding-left: 20px;
	}
	
  .slp-stat-circle {
    width: 130px;
    height: 130px;
  }

  .circle-inner span {
    font-size: 28px;
  }
	
	.slp-engagements {
		margin-left: 15px;
		margin-right: 15px;
}
	
	.slp-rse-grid div{
		padding: 20px;
		justify-items: center;
	}
}
	
	/* Savoir-faire paysagé */

/* =========================
   GLOBAL
========================= */

.sf-container{
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.sf-section{
  padding: 70px 0;
}

/* fond alterné léger */
.sf-alt{
  background: #f7f7f5;
	margin-top: 40px;
}

/* =========================
   HERO
========================= */

.sf-hero-split{
  padding: 0px 20px 40px;
}

.sf-hero-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.sf-hero-grid span{
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #3AA07A;
  text-transform: uppercase;
}

.sf-hero-grid h1{
  font-size: 44px;
  line-height: 1.2;
  margin-top: 10px;
  color: #222;
}

.sf-hero-grid p{
  margin-top: 15px;
  font-size: 17px;
  color: #666;
  line-height: 1.7;
}

.sf-hero-image img{
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* =========================
   GRID INTRO
========================= */

.sf-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.sf-grid h2{
  font-size: 30px;
  margin-bottom: 20px;
}

.sf-grid p{
  line-height: 1.9;
  color: #555;
  margin-bottom: 15px;
}

.sf-grid img{
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* =========================
   CARDS
========================= */
.sf-center {
	text-align: center;
}

.sf-cards{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin-top: 40px;
}

.sf-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 28px;
  border-radius: 14px;
  transition: 0.25s;
}

.sf-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.sf-card h3{
  color: #3AA07A;
  font-size: 18px;
  margin-bottom: 8px;
}

.sf-card p{
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* =========================
   TEXTE
========================= */

.sf-text{
  text-align: center;
  max-width: 1200px;
  margin: auto;
  font-size: 17px;
  line-height: 1.9;
  color: #444;
}


/* =========================
   CTA GLOBAL
========================= */

.sf-cta{
  position: relative;
  margin: auto;
	margin-bottom: 40px;
  max-width: 1000px;
  padding: 0 20px;
}

/* structure principale décalée */
.sf-cta-inner{
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: linear-gradient(135deg, #498C9D , #706F6F  );
  border-radius: 24px;
  overflow: hidden;

  /* effet “bloc flottant” */
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

/* =========================
   PARTIE TEXTE
========================= */

.sf-cta-content{
  padding: 60px 50px;
  color: #fff;
  position: relative;
}

.sf-cta-content h2{
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 15px;
	color: white;
}

.sf-cta-content p{
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
}

/* bouton premium */
.sf-cta-content a{
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  background: #fff;
  color: #2f7a63;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.25s;
}

.sf-cta-content a:hover{
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* =========================
   BLOC DÉCALÉ / DÉSTRUCTURÉ
========================= */

.sf-cta-accent{
  position: relative;
  background: rgba(255,255,255,0.08);

  /* forme volontairement “cassée” */
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);

  /* léger décalage de hauteur visuelle */
  transform: scaleY(1.15);
  transform-origin: center;
}

/* effet lumière subtile */
.sf-cta-accent::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 60%);
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width: 768px){
	
   .sf-hero-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }
	
	.sf-hero-grid h1{
		font-size: 38px;
	}
	
	 .sf-hero-split{
    padding: 20px 0 40px;
  }

  .sf-hero-image{
    order: 2; /* force l'image à apparaître après le texte */
  }
	
	.sf-hero-image img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  }

  .sf-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
  }
	
	  /* on inverse uniquement la 2e section (image + texte) */
  .sf-section .sf-grid > div:first-child{
    order: 2;
  }
	
	  .sf-section .sf-grid > div:last-child{
    order: 1;
  }
	
	.sf-section img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  }

  .sf-cards{
    grid-template-columns: 1fr;
  }
	
	.sf-card{
		text-align: center;
	}

  .sf-section{
    padding: 40px 0;
  }
	
	  .sf-cta-inner{
    grid-template-columns: 1fr;
  }

  .sf-cta-accent{
    display: none;
  }

  .sf-cta-content{
    padding: 40px 25px;
    text-align: center;
  }
}

/* =========================
   Terrasse
========================= */


/* =========================
   GLOBAL
========================= */

.sf-container-bis{
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* =========================
   HERO SIMPLE PREMIUM
========================= */

.sf-page-hero{
  padding: 6em 20px 40px;
}

.sf-page-hero h1{
  font-size: 15px;
	color: #3AA07A;
  margin-bottom: 10px;
	text-transform: uppercase;
}

.sf-page-hero p{
  max-width: 1200px;
  margin: auto;
  color: #666;
  line-height: 1.6;
}

/* =========================
   INTRO
========================= */

.sf-page-intro{
  padding: 30px 20px 50px;
  text-align: center;
  position: relative;
}

/* fond subtil pour détacher du reste */
.sf-page-intro::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(58,160,122,0.06), transparent 60%);
  z-index: -1;
}

/* titre */
.sf-page-intro h2{
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 15px;
  color: #706F6F;
}

/* texte */
.sf-page-intro p{
  max-width: 800px;
  margin: auto;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  position: relative;
  padding: 0 10px;
}

/* accent graphique (ligne élégante) */
.sf-page-intro p::before{
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #3AA07A;
  margin: 0 auto 20px;
  border-radius: 2px;
  opacity: 0.7;
}


/* =========================
   NAVIGATION THÈMES
========================= */

.sf-gallery-nav{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 60px;
}

/* boutons */
.sf-nav-btn{
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid rgba(58,160,122,0.3);
  color: #3AA07A;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: 0.3s ease;
  background: transparent;
}

/* hover premium */
.sf-nav-btn:hover{
  background: #3AA07A;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(58,160,122,0.25);
}

/* scroll smooth global */
html{
  scroll-behavior: smooth;
}


/* =========================
   GALERIE MASONRY (KEY PART)
========================= */

.sf-gallery{
  padding: 40px 20px 120px;
}

/* colonne type agence */
.sf-gallery-grid{
  column-count: 3;
  column-gap: 25px;
}

/* ITEM */
.sf-gallery-item{
  display: inline-block;
  width: 100%;
  margin-bottom: 25px;
  break-inside: avoid;
  position: relative;
  text-decoration: none;
}

/* IMAGE */
.sf-gallery-media{
  overflow: hidden;
  border-radius: 18px;
  position: relative;
}

.sf-gallery-media img{
  width: 100%;
  height: auto;
  display: block;
  transition: 0.5s ease;
}

/* hover subtil premium */
.sf-gallery-item:hover img{
  transform: scale(1.05);
}

/* overlay léger */
.sf-gallery-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.25), transparent 60%);
  opacity: 0;
  transition: 0.3s;
}

.sf-gallery-item:hover .sf-gallery-media::after{
  opacity: 1;
}

/* caption */
.sf-gallery-caption{
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
}

.sf-gallery-item:hover .sf-gallery-caption{
  opacity: 1;
  transform: translateY(0);
}


/* =========================
   LIGHTBOX
========================= */

.sf-lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9999;
}

.sf-lightbox.active{
  opacity: 1;
  visibility: visible;
}

.sf-lightbox img{
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.sf-lightbox-close{
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* cursor interaction */
.sf-gallery-media img{
  cursor: zoom-in;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 1024px){
  .sf-gallery-grid{
    column-count: 2;
  }
}

@media(max-width: 768px){
  .sf-gallery-grid{
    column-count: 1;
  }

  .sf-page-hero h1{
    font-size: 13px;
  }
	
	.sf-page-intro{
    padding: 20px 15px 35px;
  }

  .sf-page-intro h2{
    font-size: 18px;
  }

  .sf-page-intro p{
    font-size: 15px;
  }
}


/* =========================
   Politique de confidentialité
========================= */

.slp-legal {
  padding: 80px 20px;
  background: #fff;
  color: #111;
}

.slp-legal h1 {
  text-align: center;
  margin-bottom: 30px;
}

.slp-legal-intro {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
  color: #555;
}

.slp-legal-block {
  margin-bottom: 40px;
}

.slp-legal-block h2 {
  margin-bottom: 15px;
  font-size: 22px;
}

.slp-legal-block h3 {
  margin-top: 20px;
  font-size: 18px;
}

.slp-legal ul {
  padding-left: 20px;
}

.slp-legal li {
  margin-bottom: 8px;
}

.slp-legal-contact {
  list-style: none;
  padding: 0;
}

.slp-legal-contact li {
  margin-bottom: 5px;
}

.slp-legal-update {
  margin-top: 50px;
  text-align: center;
  font-size: 14px;
  color: #777;
}

/* =========================
   Banner cookies
========================= */

/* =========================
   CONTAINER GLOBAL
========================= */
.cmplz-cookiebanner {
  max-width: 1100px !important;
  width: calc(100% - 40px) !important;
	height: 300px !important;
  margin: 0 auto 30px auto !important;

  border-radius: 20px !important;
  padding: 20px 25px !important;

  background: rgba(15,15,15,0.92) !important;
  backdrop-filter: blur(16px) !important;

  border: 1px solid rgba(255,255,255,0.08)!important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5)!important;

  animation: slpFadeUp 0.8s ease!important;

  left: 50% !important;
  transform: translateX(-50%) !important;
}

/* =========================
   HEADER
========================= */
.cmplz-cookiebanner .cmplz-header{
  grid-template-columns: 10px 1fr 10px;
}

.cmplz-header {
  display: flex!important;
  align-items: center!important;
  justify-content: space-between!important;
}

.cmplz-title {
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #fff !important;
}

/* CLOSE */

#cmplz-cookiebanner-container > div > div.cmplz-header > div.cmplz-close > svg > path {
  fill: #fff !important;
}

.cmplz-close {
  opacity: 0.7;
  transition: 0.3s;
}

.cmplz-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* =========================
   TEXTE
========================= */
.cmplz-message {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 8px;
}

/* =========================
   CATEGORIES (accordion)
========================= */
.cmplz-category {
  margin-top: 10px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}

.cmplz-category summary {
  padding: 12px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cmplz-cookiebanner .cmplz-categories .cmplz-category {
    background-color: rgba(239, 239, 239, 0.9) !important;
}

.cmplz-category-title {
  font-size: 14px;
}

.cmplz-description {
  padding: 10px 15px;
  font-size: 13px;
}

.cmplz-message,
.cmplz-message p {
  color: rgba(255,255,255,0.75) !important;
}

/* =========================
   BOUTONS
========================= */
.cmplz-cookiebanner .cmplz-links .cmplz-link{
	color: white !important;
}

.cmplz-buttons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: wrap;
}

/* base */
.cmplz-btn {
  border-radius: 30px !important;
  padding: 12px 20px !important;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

/* ACCEPT */
.cmplz-btn.cmplz-accept {
  background: #25AB99 !important;
  color: #fff !important;
  border: none;
}

.cmplz-btn.cmplz-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,171,153,0.4);
}

/* REFUSER */
.cmplz-btn.cmplz-deny {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff !important;
}

.cmplz-btn.cmplz-deny:hover {
  background: rgba(255,255,255,0.08);
}

/* PREFERENCES */
.cmplz-btn.cmplz-view-preferences,
.cmplz-btn.cmplz-save-preferences {
   background: rgba(255,255,255,0.08) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.15);
}

.cmplz-btn:hover {
  transform: translateY(-2px);
}

/* =========================
   ANIMATION
========================= */
@keyframes slpFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px) translateX(-50%);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
}


/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .cmplz-cookiebanner {
    width: calc(100% - 40px);
    padding: 10px !important;
		height: auto !important;
  }

  .cmplz-buttons {
    flex-direction: column;
  }

  .cmplz-btn {
    width: 100%;
    text-align: center;
  }
	
	  .cmplz-manage-consent {
    position: fixed !important;
    bottom: 15px !important;
    left: 15px !important;

    width: 44px !important;
    height: 44px !important;

    max-width: 44px !important;
    min-width: 44px !important;

    padding: 0 !important;

    border-radius: 50% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-size: 0 !important; /* cache le texte */
    line-height: 0 !important;

    background: rgba(20,20,20,0.9) !important;
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.1) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;

    z-index: 999999 !important;
  }

  /* SUPPRIME LE TEXTE */
  .cmplz-manage-consent span,
  .cmplz-manage-consent::after {
    display: none !important;
  }

  /* AJOUT ICONE */
  .cmplz-manage-consent::before {
    content: "🍪";
    font-size: 18px;
    line-height: 1;
  }
	
}


/* =========================
   WRAPPER GRID
========================= */

.wp-show-posts {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* TABLET */
@media(max-width:1024px){
  .wp-show-posts {
    grid-template-columns: repeat(2,1fr);
  }
}

/* MOBILE */
@media(max-width:768px){
  .wp-show-posts {
    grid-template-columns: 1fr;
  }
	
	.site .site-content #primary .ast-article-single, .ast-separate-container .site-content #secondary .widget{
	margin-top : 4em;
	padding-left: 0px;
	padding-right: 0px;
}
	
	.ast-separate-container .ast-article-post, .ast-separate-container .ast-article-single, .ast-separate-container .comment-respond{
		padding: 1.5em;
	}
}

.wpsp-col-4 {
        width: 100% !important;
    }

/* =========================
   CARD
========================= */

.wp-show-posts-inner {
  display: flex !important;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  height: 100%;
}

.wp-show-posts-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

/* =========================
   IMAGE EN HAUT
========================= */

.wp-show-posts-image {
  order: 1;
  overflow: hidden;
}

.wp-show-posts-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.5s;
}

.wp-show-posts-inner:hover img {
  transform: scale(1.05);
}

/* =========================
   CONTENU
========================= */

.wp-show-posts-entry-header {
  order: 2;
  padding: 20px 20px 10px;
}

.wp-show-posts-entry-title a {
  font-size: 20px;
  color: #111;
  text-decoration: none;
  line-height: 1.4;
}

.wp-show-posts-entry-title a:hover {
  color: #25AB99;
}

/* DATE */
.wp-show-posts-entry-meta {
  font-size: 13px;
  color: #888;
  margin-top: 5px;
}

/* TEXTE */
.wp-show-posts-entry-summary {
  order: 3;
  padding: 0 20px 20px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   ALIGNEMENT HAUTEUR
========================= */

.wp-show-posts-entry-summary p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================
   ESPACE GLOBAL
========================= */

.wp-show-posts {
  margin-top: 20px;
}
