:root{
  --orange-1: #e84c15;
  --orange-2: #e84c15;
  --text: #0f172a;
  --muted: #475569;
  --bg: #ffffff;
  --max: 1100px;
  --radius: 18px;
}

main{
  background: var(--bg);
  color: var(--text);
}


/* Container générique */
.container{
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

/* Wrapper */
.occasions-wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 18px;
}

/* Header / Intro en carte */
.occasions-head{
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 22px 22px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
}

.occasions-head h2{
  margin: 0 0 10px;
  font-size: 35px;
  line-height: 1.2;
}

.occasions-head p{
  margin: 10px 0 0;
  color: rgba(15, 23, 42, 0.78);
  line-height: 1.6;
}

/* Séparateur doux */
.occasions-sep{
  height: 1px;
  background: rgba(15, 23, 42, 0.10);
  margin: 26px 0;
}

/* Titres sections */
.occasions-title{
  margin: 0 0 14px;
  font-size: 20px;
}

/* Listes en cards */
.liste-occasions{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.liste-occasions li{
  position: relative;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  padding: 14px 16px 14px 16px;
  line-height: 1.5;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.04);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

/* Barre colorée à gauche (reprend ton style) */
.liste-occasions li::before{
  content: "";
  position: absolute;
  left: 8px;
  top: 12px;
  bottom: 12px;
  width: 5px;
  border-radius: 999px;
  background: #15588b; 
}

/* Petit "check" discret */
.liste-occasions li::after{
  content: "✓";
  position: absolute;
  right: 14px;
  top: 12px;
  font-weight: 800;
  opacity: 0.25;
}

.liste-occasions li:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.08);
}

/* CTA */
.section-cta2{
  margin-top: 22px;
  display: flex;
  justify-content: center; 
  align-items: center;    
}

.btn-cta2{
  font-size: 25px;
  display: inline-block;
  background: #e84c15;
  color: #fff;
  text-decoration: none;
  padding: 34px 42px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(232, 76, 21, 0.25);
}

.btn-cta2:hover{
  filter: brightness(1.05);
  text-decoration: underline;
  text-underline-offset: 8px;   
  text-decoration-thickness: 2px;
}




/* Mobile */
@media (max-width: 640px){
  .occasions-head{ padding: 18px; border-radius: 14px; }
  .liste-occasions li{ padding-right: 36px; }
}


@media (max-width: 430px) {
  .bloc-infos-occasions{
    padding: 20px 16px 28px;  
    margin: 0;                 
    max-width: none;           
    max-height: none;         
  }


  /* La carte orange */
  .infos-occasions{
    width: 100%;
    max-width: 100%;           
    padding: 1.35rem 1.1rem;  
    border-radius: 18px;
    margin: 0 auto 22px;       
    box-sizing: border-box;
  }


  .infos-occasions h1{
    font-size: 1.55rem;
    line-height: 1.15;
    margin-bottom: 12px;
  }


 .infos-occasions h2 {
    font-size: 20px;      
    line-height: 1.15;
    margin-bottom: 16px;
}

  .infos-occasions p{
    font-size: 0.95rem;
    line-height: 1.6;
  }

.btn-occasions{
    width: 100%;
    max-width: 250px;         
    margin: 0 auto;           
    padding: 0.9rem 1rem;
    border-radius: 16px;
    font-size: 15px;
  }

.btn-tel{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #111827;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transition: transform .12s ease, box-shadow .12s ease;
}

.btn-tel:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

.occasions-head h2{
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.btn-cta2{
  font-size: 12px;
  display: inline-block;
  background: #e84c15;
  color: #fff;
  text-decoration: none;
  padding: 18px 25px;
  border-radius: 12px;
  font-weight: 100;
  box-shadow: 0 10px 22px rgba(232, 76, 21, 0.25);
}

}
