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

body {
font-family: 'Poppins', sans-serif;
background: #0f172a;
color: white;
}

.hero {
height: 100vh;
background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('palapa1.jpg');
background-size: cover;
background-position: center;
}

nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 8%;
position: fixed;
width: 100%;
background: rgba(0,0,0,0.4);
backdrop-filter: blur(8px);
z-index: 1000;
}

.logo img {
width: 120px;
}

nav ul {
display: flex;
gap: 30px;
list-style: none;
}

nav ul li a {
color: white;
text-decoration: none;
font-weight: 600;
}

.hero-content {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 20px;
}

.hero-content h1 {
font-size: 70px;
margin-bottom: 10px;
}

.hero-content p {
font-size: 24px;
margin-bottom: 30px;
}

.hero-buttons {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.btn {
background: #f59e0b;
color: white;
padding: 14px 28px;
border-radius: 50px;
text-decoration: none;
font-weight: bold;
transition: 0.3s;
}

.btn:hover {
transform: scale(1.05);
}

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

.about,
.gallery,
.menu,
.contact {
padding: 100px 8%;
}

.about {
background: #111827;
text-align: center;
}

.about h2,
.gallery h2,
.menu h2,
.contact h2 {
font-size: 42px;
margin-bottom: 20px;
}

.about p {
max-width: 900px;
margin: auto;
font-size: 20px;
line-height: 1.8;
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
}

.gallery-grid img,
.menu-images img {
width: 100%;
border-radius: 20px;
transition: 0.3s;
}

.gallery-grid img:hover,
.menu-images img:hover {
transform: scale(1.03);
}

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

.contact {
background: #111827;
text-align: center;
}

.contact-box {
max-width: 700px;
margin: auto;
}

.contact p {
margin-bottom: 20px;
font-size: 20px;
}

.whatsapp-float {
position: fixed;
bottom: 25px;
right: 25px;
background: #25D366;
color: white;
padding: 18px 25px;
border-radius: 50px;
text-decoration: none;
font-weight: bold;
z-index: 9999;
box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

@media(max-width: 768px) {

nav {
flex-direction: column;
gap: 15px;
}

.hero-content h1 {
font-size: 42px;
}

.hero-content p {
font-size: 18px;
}

nav ul {
gap: 15px;
flex-wrap: wrap;
justify-content: center;
}
}
