*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
  background:#503322;
  color:#f5d38a;
}

.hero{
  height:80vh;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.3), rgba(0,0,0,.8)),
    url("https://lh3.googleusercontent.com/p/AF1QipNuFxatBfCCUSzHVgzKUxXYoZiIWlwOoeiVoqEm=s680-w680-h510-rw")
    center / cover;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-content{
  text-align:center;
}

.hero-content h1{
  font-size:3.2rem;
  letter-spacing:4px;
}

section{
  padding:90px 10%;
}

h2{
  font-size:2.2rem;
  margin-bottom:30px;
}

/* ===== CARROUSEL ===== */
.carousel{
  margin-top:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:40px;
}

.carousel-window{
  width:340px;
  overflow:hidden;
  border-radius:26px;
}

.carousel-track{
  display:flex;
  gap:40px;
  transition:transform .6s ease;
}

.carousel-track img{
  width:340px;
  border-radius:26px;
  box-shadow:0 20px 45px rgba(0,0,0,.5);
}

.carousel-btn{
  background:none;
  border:none;
  font-size:3.2rem;
  color:#f5d38a;
  cursor:pointer;
}

.carousel-btn:hover{
  transform:scale(1.25);
}

/* ===== INFOS ===== */
.infos{
  padding:140px 10%;
}

.infos-box{
  max-width:640px;
  margin:auto;
  background:#3b2417;
  padding:60px;
  border-radius:36px;
  text-align:center;
  box-shadow:0 30px 60px rgba(0,0,0,.3);
}

.hours{
  margin-top:30px;
  line-height:1.8;
}

/* ===== FOOTER ===== */
footer{
  padding:40px 10%;
  border-top:1px solid rgba(255,255,255,.2);
  text-align:center;
}

.socials a{
  margin:0 10px;
  color:#f5d38a;
  text-decoration:none;
}