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

body{
  font-family:'Poppins', sans-serif;

  background:
    linear-gradient(
      rgba(5,10,20,0.75),
      rgba(5,10,20,0.75)
    ),
    url('assets/images/bg-tropical.jpg');

  background-size:cover;
  background-position:center;
  background-attachment:fixed;

  min-height:100vh;

  color:white;
}

.container{
  width:100%;
  max-width:480px;

  margin:auto;

  padding:30px 20px 100px;
}

.hero{
  text-align:center;
  margin-top:20px;
}

.logo{
  width:110px;
  height:110px;

  object-fit:cover;

  border-radius:50%;

  border:3px solid rgba(255,255,255,0.4);

  box-shadow:0 8px 30px rgba(0,0,0,0.4);
}

.hero h1{
  margin-top:20px;

  font-size:32px;
  font-weight:600;

  letter-spacing:1px;
}

.tagline{
  margin-top:8px;

  color:#e8d8a8;

  font-size:15px;

  letter-spacing:2px;
}

.divider{
  width:70px;
  height:2px;

  background:#d4af37;

  margin:18px auto;
}

.description{
  color:rgba(255,255,255,0.8);

  font-size:14px;
}

.menu{
  margin-top:40px;

  display:flex;
  flex-direction:column;

  gap:18px;
}

.menu-card{
  display:flex;
  align-items:center;
  gap:18px;

  padding:18px 20px;

  text-decoration:none;

  color:white;

  border-radius:24px;

  backdrop-filter:blur(12px);

  background:rgba(255,255,255,0.08);

  border:1px solid rgba(255,255,255,0.12);

  box-shadow:
    0 8px 20px rgba(0,0,0,0.25);

  transition:0.3s ease;
}

.menu-card:hover{
  transform:translateY(-4px);

  background:rgba(255,255,255,0.12);
}

.icon{
  width:56px;
  height:56px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:24px;

  border-radius:18px;

  background:rgba(255,255,255,0.12);
}

.text h2{
  font-size:17px;
  font-weight:500;
}

.text p{
  margin-top:4px;

  color:rgba(255,255,255,0.7);

  font-size:13px;
}

footer{
  margin-top:40px;

  text-align:center;

  color:rgba(255,255,255,0.6);

  font-size:13px;
}

.floating-wa{
  position:fixed;

  right:20px;
  bottom:20px;

  width:60px;
  height:60px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:28px;

  text-decoration:none;

  background:#25D366;

  color:white;

  box-shadow:
    0 8px 20px rgba(0,0,0,0.3);

  transition:0.3s;
}

.floating-wa:hover{
  transform:scale(1.08);
}

@media(max-width:480px){

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

  .menu-card{
    padding:16px;
  }

}