:root{
  --black:#050505;
  --black2:#0d0d0d;
  --white:#ffffff;
  --muted:#e0e0e0;

  /* Couleurs vives */
  --red:#e01925;
  --green:#45c96a;

  --shadow: 0 16px 40px rgba(0,0,0,.45);
  --radius: 20px;

  /* Overlays */
  --overlay: rgba(0,0,0,.55);
  --overlay2: rgba(0,0,0,.68);

  --max: 1200px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height:1.55;
}

a{ color: var(--green); text-decoration:none; }
a:hover{ color: var(--red); }

.wrap{ max-width: var(--max); margin:0 auto; padding: 0 16px; }

/* Sticky topbar */
.topbar{
  position: sticky;
  top:0;
  z-index: 60;
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 16px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand{
  display:flex; gap:10px; align-items:center;
  font-weight:900; letter-spacing:.8px;
  text-transform: uppercase;
}
.dot{
  width:10px; height:10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--green));
  box-shadow: 0 0 0 3px rgba(255,255,255,.06);
}
.brand span{ color: var(--red); }

.cta-row{ display:flex; gap:10px; align-items:center; }
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-weight:800;
  font-size: 1.05rem;
  letter-spacing: .2px;
}
.btn:hover{ border-color: rgba(255,255,255,.30); }
.btn-primary{
  background: linear-gradient(135deg, var(--red), #a80012);
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 6px 18px rgba(224,25,37,.45);
}
.btn-outline{ background: rgba(255,255,255,.05); }

/* Open band */
.openband{
  position: sticky;
  top: 56px; /* sous la topbar */
  z-index: 55;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(90deg, rgba(69,201,106,.18), rgba(224,25,37,.18)),
    rgba(8,8,8,.78);
  backdrop-filter: blur(10px);
}
.openband-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 16px;
  display:flex;
  gap: 10px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.badge{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-weight:900;
}
.pulse{
  width:10px; height:10px; border-radius:50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(69,201,106,.7);
  animation: pulse 1.4s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(69,201,106,.7); }
  70%{ box-shadow: 0 0 0 10px rgba(69,201,106,0); }
  100%{ box-shadow: 0 0 0 0 rgba(69,201,106,0); }
}
.openband .right{
  color: var(--muted);
  font-weight:700;
}
.openband .right strong{ color: var(--white); }

/* HERO */
.hero{
  min-height: 78vh;
  display:flex;
  align-items:flex-end;
  padding: 46px 0 28px;
  background:
    linear-gradient(var(--overlay), rgba(0,0,0,.88)),
    url("../img/hero-bird-of-paradise.jpg") center/cover no-repeat;
}
.hero-card{
  width:100%;
  background: rgba(12,12,12,.58);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
}
.hero h1{
  margin:0 0 10px 0;
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  line-height:1.05;
  letter-spacing: 1px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero h1 span{ color: var(--red); }
.hero p{
  margin: 0 0 14px 0;
  color: var(--muted);
  font-size: 1.25rem;
  max-width: 70ch;
}
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 10px;
}
.chip{
  padding: 10px 12px;
  border-radius: 999px;
  font-weight:900;
  font-size:1rem;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.chip.red{ border-color: rgba(224,25,37,.65); }
.chip.green{ border-color: rgba(69,201,106,.65); }

/* Sections */
section{ padding: 54px 0; }
.title{
  font-size: 2.1rem;
  margin:0 0 12px;
  color: var(--green);
  letter-spacing: .6px;
  font-weight: 900;
  text-transform: uppercase;
}
.lead{ margin:0 0 22px; color: var(--muted); font-size: 1.05rem; }

/* Floral background section */
.bg-floral{
  background:
    linear-gradient(var(--overlay2), var(--overlay2)),
    url("../img/texture-dark.png") center/520px repeat,
    url("../img/bg-floral-shop.jpg") center/cover no-repeat;
}

/* Cards grid */
.grid{
  display:grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.card{
  border-radius: var(--radius);
  background: rgba(18,18,18,.88);
  border: 1px solid rgba(255,255,255,.10);
  padding: 18px;
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}
.card h3{
  margin: 0 0 8px 0;
  color: var(--red);
  font-size: 1.4rem;
  font-weight: 900;
}
.card p{ margin:0; color: #ededed; font-size: 1.05rem; }

/* Info blocks */
.info{
  display:grid;
  gap: 12px;
}
.info-item{
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  padding: 14px 16px;
  font-size: 1.05rem;
}
.info-item strong{
  display:block;
  color: #fff;
  margin-bottom: 4px;
  font-size: 1.15rem;
  font-weight: 900;
}
.info-item .muted{ color: var(--muted); }

/* Hours */
.hours{
  margin-top: 18px;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}
.hours .row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hours .row:first-child{ border-top: 0; }
.hours .day{ font-weight: 900; }
.hours .time{ color: var(--muted); font-weight: 700; }

/* Map */
.map-wrap{
  margin-top: 18px;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
  background: rgba(255,255,255,.04);
}
.map-wrap iframe{
  width:100%;
  height: 320px;
  border:0;
  display:block;
}
.map-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  padding: 12px;
  background: rgba(0,0,0,.55);
}
.small-note{
  margin-top: 10px;
  color: var(--muted);
  font-size: .95rem;
}

/* Footer */
footer{
  padding: 28px 0;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.08);
  color:#8f8f8f;
  font-size:1rem;
}

/* Scroll animation (fade-up) */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s ease, transform .65s ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal{ transition:none; transform:none; opacity:1; }
  .pulse{ animation:none; }
}

/* Desktop */
@media (min-width: 820px){
  .hero{ padding: 70px 0 40px; min-height: 74vh; }
  .hero-card{ padding: 22px 22px 18px; }
  .grid{ grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .info{ grid-template-columns: 1.2fr .8fr; }
  .map-wrap iframe{ height: 380px; }
}

/* Mobile: encore plus grand */
@media (max-width: 480px){
  .btn{ font-size: 1.12rem; padding: 12px 14px; }
  .hero p{ font-size: 1.32rem; }
  .chip{ font-size: 1.05rem; padding: 10px 14px; }
  .title{ font-size: 2.25rem; }
  .lead{ font-size: 1.12rem; }
  .info-item{ font-size: 1.12rem; }
}
