/* ========= RESET ========= */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
:root{
--primary:#7d141e;
--primary-dark:#5b0f16;
--gold:#d4af37;
--cream:#f8f4ec;
--white:#fff;
--text:#333;
--muted:#666;
--shadow:0 12px 35px rgba(0,0,0,.12);
--radius:18px;
}
body{
font-family:'Poppins',sans-serif;
background:var(--cream);
color:var(--text);
line-height:1.7;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
.container{width:min(1140px,92%);margin:auto}

/* ========= NAV ========= */
header{
position:fixed;
top:0;left:0;width:100%;
z-index:1000;
background:rgba(125,20,30,.78);
backdrop-filter:blur(14px);
box-shadow:0 5px 20px rgba(0,0,0,.12);
}
.navbar{
height:82px;
display:flex;
align-items:center;
justify-content:space-between;
width:min(1200px,94%);
margin:auto;
}
.logo{
font-family:'Playball',cursive;
font-size:2.5rem;
color:var(--gold);
}
#navLinks{
display:flex;
gap:28px;
list-style:none;
}
#navLinks a{
color:#fff;
font-weight:500;
position:relative;
}
#navLinks a:after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:var(--gold);
transition:.3s;
}
#navLinks a:hover:after{width:100%}
.language-switch{display:flex;gap:8px}
.language-switch button{
border:none;
background:rgba(255,255,255,.12);
color:#fff;
padding:8px 12px;
border-radius:999px;
cursor:pointer;
transition:.25s;
}
.language-switch button:hover{
background:var(--gold);
color:var(--primary);
}
.menu-toggle{
display:none;
background:none;
border:none;
font-size:2rem;
color:#fff;
cursor:pointer;
}

/* ========= HERO ========= */
.hero{
min-height:100vh;
display:grid;
place-items:center;
position:relative;
text-align:center;
padding:140px 20px 80px;
background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.45)),
url("../images/hero.jpg") center/cover no-repeat;
color:#fff;
}
.hero-content{position:relative;z-index:2;max-width:850px}
.hero h1{
font-family:'Playball',cursive;
font-size:5rem;
color:var(--gold);
margin-bottom:10px;
}
.hero h2{
font-size:2.3rem;
font-weight:600;
margin-bottom:18px;
}
.hero p{
font-size:1.15rem;
max-width:700px;
margin:0 auto 35px;
opacity:.95;
}
.hero-buttons{
display:flex;
justify-content:center;
gap:16px;
flex-wrap:wrap;
}

/* ========= BUTTONS ========= */
.btn,.whatsapp-button{
display:inline-block;
padding:15px 34px;
border-radius:999px;
font-weight:600;
transition:.25s;
}
.primary{
background:var(--gold);
color:#222;
box-shadow:var(--shadow);
}
.primary:hover{
transform:translateY(-3px);
}
.secondary{
border:2px solid #fff;
color:#fff;
}
.secondary:hover{
background:#fff;
color:var(--primary);
}
.whatsapp-button{
background:#25D366;
color:#fff;
font-size:1.05rem;
}
.whatsapp-button:hover{
transform:translateY(-3px) scale(1.02);
}

/* ========= SECTIONS ========= */
.section{
padding:110px 0;
}
.light{background:#fff}
.section h2{
font-size:2.4rem;
text-align:center;
color:var(--primary);
margin-bottom:18px;
position:relative;
}
.section h2:after{
content:"";
display:block;
width:80px;
height:4px;
background:var(--gold);
margin:18px auto 0;
border-radius:10px;
}
.section-intro,
.section p{
max-width:760px;
margin:0 auto 40px;
text-align:center;
color:var(--muted);
}

/* ========= CARDS ========= */
.menu-grid,
.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:28px;
margin-top:40px;
}
.menu-item{
background:#fff;
padding:35px;
border-radius:var(--radius);
box-shadow:var(--shadow);
text-align:center;
transition:.3s;
}
.light .menu-item{background:var(--cream)}
.menu-item:hover{
transform:translateY(-8px);
}
.menu-item h3{
margin:15px 0 10px;
color:var(--primary);
}
.menu-item p{
margin:0;
font-size:.95rem;
}

/* ========= GALLERY ========= */
.gallery-item{
aspect-ratio:1;
border-radius:18px;
background:linear-gradient(135deg,#d9d9d9,#bfbfbf);
display:grid;
place-items:center;
font-weight:600;
color:#555;
box-shadow:var(--shadow);
transition:.3s;
}
.gallery-item:hover{
transform:scale(1.03);
}

/* ========= HOURS ========= */
.hours-table{
width:min(700px,100%);
margin:40px auto 0;
border-collapse:collapse;
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:var(--shadow);
}
.hours-table td{
padding:18px 24px;
border-bottom:1px solid #eee;
}
.hours-table tr:last-child td{border-bottom:none}
.hours-table td:last-child{
text-align:right;
font-weight:600;
color:var(--primary);
}

/* ========= MAP ========= */
iframe{
margin-top:30px;
box-shadow:var(--shadow);
}
#location .btn{
margin-top:30px;
display:inline-block;
}

/* ========= CONTACT ========= */
.contact-section{
padding:120px 0;
text-align:center;
background:linear-gradient(135deg,var(--primary),var(--primary-dark));
color:#fff;
}
.contact-section h2{
color:#fff;
}
.contact-section h2:after{
background:var(--gold);
}
.contact-section p{
color:#f2f2f2;
margin-bottom:35px;
}

/* ========= FOOTER ========= */
footer{
background:#1d1d1d;
color:#ddd;
padding:70px 0;
text-align:center;
}
footer h3{
font-family:'Playball',cursive;
font-size:2.2rem;
color:var(--gold);
margin-bottom:10px;
}
.footer-links{
display:flex;
justify-content:center;
gap:28px;
flex-wrap:wrap;
margin-top:30px;
}
.footer-links a{
transition:.25s;
}
.footer-links a:hover{
color:var(--gold);
}

/* ========= MOBILE ========= */
@media(max-width:900px){
.menu-toggle{display:block}
#navLinks{
display:none;
flex-direction:column;
width:100%;
padding:25px 0;
text-align:center;
}
#navLinks.show{display:flex}
.navbar{
flex-wrap:wrap;
height:auto;
padding:20px 0;
}
.hero h1{font-size:3.7rem}
.hero h2{font-size:1.8rem}
.section{padding:80px 0}
.hours-table td{
padding:14px;
font-size:.95rem;
}
}

@media(max-width:600px){
.hero h1{font-size:3rem}
.hero h2{font-size:1.5rem}
.hero-buttons{
flex-direction:column;
align-items:center;
}
.btn,.whatsapp-button{
width:260px;
text-align:center;
}
.section h2{font-size:2rem}
}
