*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Oswald', sans-serif;
}

body{
background:black;
color:white;
}

/* HEADER */

header{
position:fixed;
width:100%;
top:0;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:rgba(0,0,0,0.8);
z-index:100;
}

.logo img{
width:60px;
height:60px;
border-radius:50%;
object-fit:cover;
}

nav a{
margin-left:20px;
color:white;
text-decoration:none;
font-weight:600;
}

/* HERO */

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.9)),
url("cocinero.jpg");
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
}

.hero h1{
font-size:50px;
color:#ff6a00;
}

.hero p{
margin:20px 0;
font-size:20px;
}

.btn{
background:#ff6a00;
color:black;
border:none;
padding:12px 25px;
margin:10px;
cursor:pointer;
border-radius:8px;
font-weight:bold;
}

/* HISTORIA */

.historia{
display:none;
background:white;
color:black;
padding:60px 20px;
animation:fadeDown 0.6s ease;
}

.historia.mostrar{
display:block;
}

@keyframes fadeDown{
from{opacity:0; transform:translateY(-50px);}
to{opacity:1; transform:translateY(0);}
}

.historia-contenido{
max-width:900px;
margin:auto;
}

.historia p{
margin:15px 0;
line-height:1.6;
}

.historia-galeria{
margin-top:30px;
display:flex;
flex-wrap:wrap;
gap:15px;
justify-content:center;
}

.historia-galeria img{
width:180px;
height:180px;
object-fit:cover;
border-radius:15px;
}

/* MENU */

.menu{
padding:70px 20px;
text-align:center;
}

.menu h2{
color:#ff6a00;
margin-bottom:40px;
}

.menu-container{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
}

.card{
background:#111;
border:2px solid black;
border-radius:15px;
padding:20px;
width:250px;
}

.card img{
width:100%;
height:180px;
object-fit:cover;
border-radius:15px;
}

.card h3{
margin-top:10px;
color:#ff6a00;
}

/* CONTACTO */

.contacto{
background:white;
color:black;
padding:60px 20px;
text-align:center;
}

.contacto h2{
color:#ff6a00;
margin-bottom:20px;
}

/* FOOTER */

footer{
background:#111;
padding:20px;
text-align:center;
}
