@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body{
  background: #ffffff;
  color: #111;
}

/* CONTAINER */
.container{
  width: 92%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.header{
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  z-index: 999;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.logo{
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.logo span{
  color: #b08d57;
}

.menu a{
  text-decoration: none;
  color: #111;
  margin-left: 14px;
  font-size: 14px;
  font-weight: 500;
}

.menu a:hover{
  color: #b08d57;
}

/* HERO */
.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-image: url("hero.jpg");
  background-size: cover;
  background-position: center;
}

.overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content{
  position: relative;
  z-index: 2;
  color: white;
  padding: 60px 0;
}

.hero h1{
  font-size: 38px;
  line-height: 1.2;
  max-width: 720px;
}

.hero p{
  margin-top: 15px;
  font-size: 16px;
  max-width: 650px;
  opacity: 0.92;
}

.hero-buttons{
  margin-top: 25px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-mini{
  margin-top: 25px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  opacity: 0.95;
}

/* BUTTONS */
.btn{
  display: inline-block;
  background: #b08d57;
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid #b08d57;
  transition: 0.25s;
}

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

.btn-outline{
  background: transparent;
  border: 2px solid white;
}

.btn-outline:hover{
  background: white;
  color: #111;
}

/* SECTIONS */
.section{
  padding: 70px 0;
}

.section h2{
  font-size: 30px;
  margin-bottom: 10px;
}

.subtext{
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 720px;
}

.alt{
  background: #f7f5f1;
}

/* CARDS */
.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card{
  background: white;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.card h3{
  margin-bottom: 10px;
  font-size: 18px;
}

/* PRICES */
.prices{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 25px;
}

.price-card{
  background: white;
  padding: 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.price{
  font-size: 34px;
  font-weight: 700;
  margin: 10px 0;
  color: #b08d57;
}

/* IBAN BOX */
.iban-box{
  background: white;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

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

/* FORM */
.form{
  background: white;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.form label{
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin: 14px 0 6px;
}

.form input,
.form select,
.form textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.15);
  outline: none;
  font-size: 14px;
}

.form input:focus,
.form select:focus,
.form textarea:focus{
  border-color: #b08d57;
}

.grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* CONTACT */
.contact-box{
  background: white;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

/* FOOTER */
.footer{
  background: #111;
  color: white;
  padding: 25px 0;
  text-align: center;
  font-size: 14px;
}

/* PAGE MERCI */
.thanks-page{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: #f7f7f7;
}

.thanks-box{
  background: white;
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.thanks-box h1{
  font-size: 28px;
  margin-bottom: 10px;
}

.thanks-box p{
  font-size: 16px;
  line-height: 1.5;
  margin: 6px 0;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .cards, .prices{
    grid-template-columns: 1fr;
  }

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

  .hero h1{
    font-size: 30px;
  }

  .menu{
    display: none;
  }
}