/* =============================================================================
   /include/evenements-la-grange.css — CNATUREL
   Rôle : styles UNIQUEMENT page Événements La Grange
   Règle : chemins relatifs au fichier CSS
   ============================================================================= */

.lg-events-body{
  min-height: 100vh;
  color: var(--ink, #2e2e2e);
  background: #111;
  position: relative;
}

/* Fond photo */
.lg-events-body::before{
  content:"";
  position: fixed;
  inset: 0;
  background-image: url("../photos/la-grange/concert-la-grange.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(0.95) contrast(0.95);
  z-index: 0;
}

/* Voile léger pour lisibilité */
.lg-events-body::after{
  content:"";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.25);
  z-index: 1;
}

/* Page au-dessus */
.lg-events-page{
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 58px 16px 74px;
}

/* Cartouche “verre dépoli” large */
.lg-events-hero{
  display: flex;
  justify-content: center;
}

.lg-glass{
  width: min(980px, 100%);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 48px rgba(0,0,0,.20);
  overflow: hidden;
}

/* Bandeau titre */
.lg-glass-head{
  padding: 18px 22px;
  background: rgba(60,60,60,.38);
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.lg-glass-head h1{
  margin: 0;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 10px 24px rgba(0,0,0,.35);
}

/* Corps */
.lg-glass-body{
  padding: 20px 22px 24px;
  color: rgba(255,255,255,.92);
}

.lg-lead{
  margin: 0 0 10px 0;
  font-size: 1.12rem;
  font-weight: 650;
}

.lg-text{
  margin: 0 0 14px 0;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
}

.lg-link{
  display: inline-block;
  margin: 2px 0 0;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lg-sep{
  height: 1px;
  background: rgba(255,255,255,.22);
  margin: 18px 0;
}

/* Mailing */
.lg-mailing h2{
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  color: #fff;
}

.lg-alert{
  border-radius: 12px;
  padding: 12px 14px;
  margin: 12px 0 14px 0;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(0,0,0,.18);
  color: #fff;
}

.lg-alert.ok{
  background: rgba(20,120,70,.20);
}

.lg-alert.err{
  background: rgba(160,40,40,.22);
}

.lg-alert ul{
  margin: 8px 0 0 18px;
}

.lg-form{
  display: grid;
  gap: 10px;
  max-width: 520px;
}

.lg-label{
  font-weight: 600;
  color: rgba(255,255,255,.95);
}

.lg-input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.22);
  color: #fff;
  outline: none;
}

.lg-input::placeholder{
  color: rgba(255,255,255,.70);
}

.lg-input:focus-visible{
  box-shadow: 0 0 0 3px rgba(255,255,255,.22);
}

.lg-check{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.4;
  color: rgba(255,255,255,.90);
}

.lg-check input{
  margin-top: 3px;
}

.lg-note{
  font-size: .95rem;
  color: rgba(255,255,255,.78);
}

.lg-btn{
  justify-self: start;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.18);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.lg-btn:hover{
  background: rgba(255,255,255,.24);
}

.lg-btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,.22);
}

/* Honeypot */
.hp{
  display:none !important;
}

/* Responsive */
@media (max-width: 700px){
  .lg-events-page{
    padding: 38px 12px 54px;
  }
  .lg-glass-head{
    padding: 16px 16px;
  }
  .lg-glass-body{
    padding: 16px 16px 18px;
  }
}