*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial;
}

body{
  background:#000;
  color:white;
}

/* SECTION */
.pricing{
  position:relative;
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;
}

/* BACKGROUND IMAGE */
.bg{
  position:absolute;
  inset:0;
  background:url("../images/img3.jpeg") center/cover no-repeat;
  filter:brightness(0.35);
  transform:scale(1.05);
}

/* CONTENT */
.content{
  position:relative;
  z-index:2;
  width:100%;
  max-width:900px;
  padding:20px;
  text-align:center;
}

h1{
  font-size:32px;
}

.subtitle{
  color:#ccc;
  margin-bottom:20px;
}

/* TABS */
.tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  margin-bottom:20px;
}

.tab{
  padding:10px 15px;
  border:none;
  border-radius:20px;
  background:#1c1c1c;
  color:white;
  cursor:pointer;
  transition:0.3s;
}

.tab.active{
  background:white;
  color:black;
}

/* PANELS */
.panel{
  display:none;
  animation:fade 0.3s ease;
}

.panel.active{
  display:block;
}

/* CARDS */
.card{
  background:rgba(0,0,0,0.65);
  backdrop-filter:blur(6px);
  padding:15px;
  margin:10px 0;
  border-radius:12px;
  display:flex;
  justify-content:space-between;
}

/* NOTE */
.note{
  margin-top:15px;
  color:#aaa;
}

/* ANIMATION */
@keyframes fade{
  from{opacity:0; transform:translateY(10px);}
  to{opacity:1; transform:translateY(0);}
}

/* MOBILE */
@media(max-width:600px){
  .card{
    flex-direction:column;
    text-align:center;
    gap:5px;
  }
}

/* =========================
   BOUTONS CARTE (CONTAINER)
   ========================= */
.card-buttons{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:10px;
}

/* =========================
   BOUTON PRIX
   ========================= */
.price-btn{
  background:#222;
  color:white;
  border:1px solid #555;
  padding:8px 12px;
  border-radius:8px;
  cursor:default;
  font-weight:500;
  font-size:14px;
}

/* =========================
   BOUTON RÉSERVER
   ========================= */
.reserve-btn{
  background:#ff2d75;
  color:white;
  border:none;
  padding:8px 12px;
  border-radius:8px;
  cursor:pointer;
  font-weight:500;
  transition:0.3s ease;
}

/* effet hover bouton réserver */
.reserve-btn:hover{
  background:#e61f66;
  transform:scale(1.05);
}

/* =========================
   OPTION: PETIT STYLE GLOBAL
   ========================= */
.price-btn:empty::before{
  content:"Prix";
  color:#aaa;
}