:root{
  --cream:#f8f3eb;
  --dark:#171717;
  --black:#101010;
  --burgundy:#a51635;
  --burgundy-dark:#7f1028;
  --gold:#c99a2e;
  --gold-soft:#e4c06a;
  --white:#ffffff;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:var(--cream);
  color:var(--dark);
  line-height:1.6;
}

a{
  text-decoration:none;
}

.site-header{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index:1000;
  background:rgba(16,16,16,.94);
  border-bottom:1px solid rgba(201,154,46,.35);
  backdrop-filter:blur(12px);
}

.navbar{
  max-width:1300px;
  margin:auto;
  padding:14px 25px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--white);
  font-size:24px;
  font-weight:800;
  letter-spacing:.5px;
}

.brand img{
  width:62px;
  height:62px;
  border-radius:50%;
  object-fit:cover;
  background:var(--cream);
  border:2px solid var(--gold);
  padding:4px;
}

.nav-links{
  display:flex;
  gap:32px;
}

.nav-links a{
  color:var(--white);
  font-weight:600;
  transition:.3s;
}

.nav-links a:hover{
  color:var(--gold-soft);
}

.menu-btn{
  display:none;
  background:none;
  border:none;
  color:var(--white);
  font-size:30px;
  cursor:pointer;
}

.hero{
  min-height:100vh;
  background:
    linear-gradient(rgba(16,16,16,.78),rgba(80,9,26,.75)),
    url("assets/hero.jpg") center center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:130px 20px 70px;
}

.hero-content{
  color:var(--white);
  max-width:900px;
}

.badge{
  display:inline-block;
  padding:10px 24px;
  background:linear-gradient(135deg,var(--burgundy),var(--gold));
  border-radius:30px;
  margin-bottom:22px;
  font-weight:800;
  letter-spacing:.5px;
}

.hero h1{
  font-size:64px;
  line-height:1.08;
  margin-bottom:22px;
}

.hero p{
  font-size:22px;
  margin-bottom:36px;
  color:#f3e8d8;
}

.hero-buttons{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn{
  padding:15px 35px;
  border-radius:50px;
  font-weight:800;
  transition:.3s;
}

.primary{
  background:var(--burgundy);
  color:var(--white);
  border:2px solid var(--burgundy);
}

.primary:hover{
  background:var(--burgundy-dark);
}

.secondary{
  border:2px solid var(--gold);
  color:var(--gold-soft);
}

.secondary:hover{
  background:var(--gold);
  color:var(--black);
}

.features{
  max-width:1200px;
  margin:-45px auto 0;
  padding:0 20px 90px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  position:relative;
  z-index:5;
}

.feature-box{
  background:var(--white);
  padding:36px;
  border-radius:22px;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
  text-align:center;
  border-top:4px solid var(--burgundy);
}

.feature-box h3{
  margin-bottom:15px;
  color:var(--burgundy);
}

.section{
  max-width:1200px;
  margin:auto;
  padding:85px 20px;
}

.section-title{
  text-align:center;
  margin-bottom:52px;
}

.section-title span{
  color:var(--burgundy);
  font-weight:900;
  letter-spacing:1px;
}

.section-title h2{
  font-size:44px;
  margin-top:10px;
  color:var(--black);
}

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

.menu-card{
  background:var(--white);
  padding:32px;
  border-radius:20px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  transition:.3s;
  border:1px solid rgba(201,154,46,.25);
}

.menu-card:hover{
  transform:translateY(-8px);
  border-color:var(--gold);
}

.menu-card h3{
  margin-bottom:12px;
  color:var(--burgundy);
}

.about{
  background:linear-gradient(135deg,var(--black),var(--burgundy-dark));
  color:var(--white);
  padding:95px 20px;
}

.about-content{
  max-width:900px;
  margin:auto;
  text-align:center;
}

.about-content span{
  color:var(--gold-soft);
  font-weight:900;
}

.about-content h2{
  font-size:42px;
  margin:20px 0;
}

.about-content p{
  color:#f4e8d6;
}

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

.gallery-item{
  height:280px;
  background:linear-gradient(135deg,#eee4d4,#d5c19b);
  border-radius:20px;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:24px;
  color:var(--burgundy);
  font-weight:800;
  border:1px solid rgba(201,154,46,.4);
}

.comments{
  background:var(--white);
  padding:90px 20px;
}

.comment-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:25px;
}

.comment-card{
  background:var(--cream);
  padding:32px;
  border-radius:22px;
  border-left:5px solid var(--burgundy);
}

.comment-card strong{
  display:block;
  margin-top:15px;
  color:var(--gold);
}

.contact{
  max-width:1200px;
  margin:auto;
  padding:90px 20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
}

.contact-info span{
  color:var(--burgundy);
  font-weight:900;
}

.contact-info h2{
  font-size:42px;
  margin:15px 0 30px;
}

.contact-info p{
  margin-bottom:15px;
}

.contact-buttons{
  margin-top:30px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.contact-buttons a{
  background:var(--burgundy);
  color:var(--white);
  padding:14px 25px;
  border-radius:50px;
  font-weight:800;
}

.contact-buttons a:hover{
  background:var(--gold);
  color:var(--black);
}

.map-box iframe{
  width:100%;
  height:400px;
  border:none;
  border-radius:22px;
  box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.floating-whatsapp{
  position:fixed;
  right:22px;
  bottom:22px;
  background:#25D366;
  color:#fff;
  padding:14px 22px;
  border-radius:50px;
  font-weight:bold;
  z-index:999;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
}

footer{
  background:var(--black);
  color:#cfc6b8;
  text-align:center;
  padding:30px;
  border-top:1px solid rgba(201,154,46,.35);
}

@media(max-width:900px){
  .hero h1{
    font-size:42px;
  }

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

  .contact{
    grid-template-columns:1fr;
  }

  .nav-links{
    position:absolute;
    top:91px;
    left:0;
    width:100%;
    background:var(--black);
    flex-direction:column;
    display:none;
    padding:25px;
  }

  .nav-links.active{
    display:flex;
  }

  .menu-btn{
    display:block;
  }
}

@media(max-width:520px){
  .brand span{
    font-size:17px;
  }

  .brand img{
    width:50px;
    height:50px;
  }

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

  .section-title h2,
  .about-content h2,
  .contact-info h2{
    font-size:32px;
  }
}

.menu-note{
  margin-top:12px;
  color:#6b5b48;
}

.home-menu-card{
  background:var(--white);
  padding:28px;
  border-radius:20px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  border:1px solid rgba(201,154,46,.25);
}

.home-menu-card small{
  color:var(--gold);
  font-weight:900;
}

.home-menu-card h3{
  margin:8px 0 10px;
  color:var(--burgundy);
}

.home-menu-card p{
  color:#555;
}

.qr-menu-call{
  margin-top:35px;
  background:linear-gradient(135deg,var(--black),var(--burgundy-dark));
  color:white;
  padding:30px;
  border-radius:24px;
  text-align:center;
}

.qr-menu-call h3{
  font-size:28px;
  margin-bottom:8px;
}

.qr-menu-call p{
  color:#f0ddc0;
  margin-bottom:20px;
}

.qr-menu-call a{
  display:inline-block;
  background:var(--gold);
  color:#111;
  padding:14px 28px;
  border-radius:50px;
  font-weight:900;
}

.page-hero{
  padding:150px 20px 80px;
  text-align:center;
  color:white;
  background:linear-gradient(135deg,#101010,#7f1028);
}

.page-hero span{
  color:var(--gold);
  font-weight:900;
  letter-spacing:1px;
}

.page-hero h1{
  font-size:56px;
  margin:12px 0;
}

.page-hero p{
  color:#f1dfbd;
  font-size:18px;
}

.about-page{
  max-width:950px;
  margin:70px auto;
  background:white;
  padding:40px;
  border-radius:26px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.about-page h2{
  color:var(--burgundy);
  font-size:38px;
  margin-bottom:18px;
}

.home-menu-card{
  background:var(--white);
  padding:28px;
  border-radius:20px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  border:1px solid rgba(201,154,46,.25);
}

.home-menu-card small{
  color:var(--gold);
  font-weight:900;
}

.home-menu-card h3{
  margin:8px 0 10px;
  color:var(--burgundy);
}

.home-menu-card p{
  color:#555;
}

@media(max-width:520px){
  .page-hero h1{
    font-size:38px;
  }
}

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

.gallery-photo{
  height:320px;
  border-radius:26px;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  box-shadow:0 18px 45px rgba(0,0,0,.14);
  background:#eee;
}

.gallery-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.45s;
}

.gallery-photo:hover img{
  transform:scale(1.08);
}

.gallery-photo div{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:45px 18px 18px;
  background:linear-gradient(transparent,rgba(0,0,0,.78));
  color:white;
  font-weight:900;
  letter-spacing:.3px;
}

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.86);
  z-index:99999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:25px;
}

.lightbox.active{
  display:flex;
}

.lightbox img{
  max-width:92%;
  max-height:86vh;
  border-radius:20px;
  box-shadow:0 25px 80px rgba(0,0,0,.45);
}

.lightbox-close{
  position:absolute;
  top:20px;
  right:25px;
  color:white;
  font-size:42px;
  cursor:pointer;
}
