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

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

nav{
position:fixed;
width:100%;
padding:30px 8%;
display:flex;
justify-content:flex-end;
background:rgba(0,0,0,.4);
backdrop-filter:blur(10px);
z-index:100;
}

.logo {
position: absolute;
top: 20px;
left: 20px;
width: 100px;
}

ul{
display: flex;
justify-content: center;
align-items: center;
list-style: none;
gap: 30px;
text-decoration: none;
color: white;
}

ul a{
color:white;
text-decoration:none;
}

.hero{
height:100vh;
background:url("/html/ty/images/tp.png");
background-size:cover;
display:flex;
justify-content:center;
align-items:center;
}

.overlay{
text-align:center;

}

.overlay h1{
font-size:70px;
color:orange;
-webkit-text-stroke: 3px black;
}

.overlay p{
background: rgba(0,0,0,0.5);
color: white;
padding: 10px 20px; 
border-radius: 10px;
display: inline-block; 
margin-top: 10px;
}

.btn{
display:inline-block;
padding:15px 35px;
background:#ff9800;
color:black;
text-decoration:none;
border-radius:40px;
margin-top:20px;
}

.menu{
padding:100px 10%;
}

.menu h2{
text-align:center;
margin-bottom:50px;
}

.container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
background:#1c1c1c;
border-radius:20px;
overflow:hidden;
position:relative;
}

.card img{
width:100%;
height:250px;
object-fit:cover;
}

.card h3,p{
padding:10px;
}

.card button{
width:90%;
margin:15px;
padding:12px;
background:#ff9800;
border:none;
border-radius:20px;
color:white;
}

.badge{
position:absolute;
top:15px;
left:15px;
background:red;
padding:8px 15px;
border-radius:20px;
}

#about,#review{
padding:100px 10%;
text-align:center;
}

.review-box{
background:#1c1c1c;
padding:30px;
margin:20px;
border-radius:20px;
}

footer{
padding:50px;
text-align:center;
background:black;
}

.wa{
position:fixed;
bottom:30px;
right:30px;
background:#25d366;
width:60px;
height:60px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:30px;
color:white;
}