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

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  overflow-x:hidden;
  color:var(--dark);
}

.section-title{
  font-size:3rem;
  font-weight:800;
  line-height:1.1;
}

.section-title span{
  color:var(--gold);
}

.section-mini{
  color:var(--gold);
  letter-spacing:4px;
  font-size:0.8rem;
  font-weight:700;
  margin-bottom:20px;
}

.btn-gold{
  background:linear-gradient(to right,#b68a3d,#e3c07c);
  color:white;
  border-radius:50px;
  padding:14px 30px;
  border:none;
  font-weight:600;
}

.text-white{
  color:white;
}
