*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#050505;
  color:#fff;
  font-family:Arial, Helvetica, sans-serif;
}

.site-header{
  min-height:100vh;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.94), rgba(0,0,0,0.6), rgba(0,0,0,0.88)),
    url('https://images.unsplash.com/photo-1513104890138-7c749659a591?q=80&w=1600&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:24px 7%;
  background:rgba(0,0,0,0.78);
  border-bottom:1px solid rgba(212,175,55,0.35);
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:blur(10px);
}

.brand{
  color:#d4af37;
  font-size:32px;
  font-weight:900;
  text-decoration:none;
  letter-spacing:1px;
}

.brand span{
  color:#47c47a;
  text-transform:uppercase;
}

.nav-links{
  display:flex;
  gap:28px;
}

.nav-links a{
  color:white;
  text-decoration:none;
  font-weight:800;
  font-size:16px;
}

.nav-links a:hover{
  color:#d4af37;
}

.hero{
  min-height:calc(100vh - 86px);
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  align-items:center;
  gap:50px;
  padding:0 7%;
}

.tagline{
  color:#47c47a;
  text-transform:uppercase;
  letter-spacing:2px;
  font-weight:900;
  font-size:14px;
  margin-bottom:15px;
}

.hero-text h1{
  font-size:96px;
  line-height:1;
  text-transform:uppercase;
  margin-bottom:22px;
  text-shadow:0 10px 35px rgba(0,0,0,0.8);
}

.hero-text h1 .gold{
  color:#d4af37;
}

.hero-text h1 .green{
  color:#47c47a;
}

.hero-description{
  font-size:25px;
  line-height:1.5;
  max-width:760px;
  color:#f1f1f1;
  margin-bottom:35px;
}

.hero-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.btn{
  padding:16px 34px;
  border-radius:999px;
  text-decoration:none;
  border:none;
  cursor:pointer;
  font-weight:900;
  font-size:17px;
  display:inline-block;
  transition:0.25s;
}

.primary{
  background:#47c47a;
  color:white;
}

.secondary{
  background:transparent;
  color:#d4af37;
  border:2px solid #d4af37;
}

.btn:hover{
  transform:translateY(-3px);
}

.primary:hover{
  background:#d4af37;
  color:#000;
}

.hero-card{
  background:rgba(0,0,0,0.72);
  border:1px solid rgba(212,175,55,0.55);
  border-radius:28px;
  padding:42px;
  box-shadow:0 25px 70px rgba(0,0,0,0.6);
}

.hero-card h3{
  color:#d4af37;
  font-size:32px;
  margin-bottom:14px;
}

.hero-card p{
  font-size:30px;
  font-weight:900;
  margin-bottom:10px;
}

.hero-card span{
  color:#ddd;
  line-height:1.6;
}

.intro{
  padding:70px 7%;
  background:#080808;
}

.intro-card{
  max-width:1050px;
  margin:auto;
  text-align:center;
  border:1px solid rgba(212,175,55,0.35);
  background:linear-gradient(135deg, #111, #050505);
  padding:45px;
  border-radius:28px;
}

h2{
  color:#47c47a;
  font-size:48px;
  margin-bottom:18px;
}

.intro-card p,
.events-content p,
.about-text p{
  font-size:20px;
  line-height:1.8;
  color:#e8e8e8;
}

.menu-section{
  padding:95px 7%;
  background:
    radial-gradient(circle at top, rgba(212,175,55,0.14), transparent 35%),
    #000;
}

.section-title{
  text-align:center;
  margin-bottom:48px;
}

.section-title p{
  color:#ffffff;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:2px;
}

.menu-layout{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:28px;
}

.menu-box{
  grid-column:span 6;
  display:grid;
  grid-template-columns:230px 1fr;
  background:linear-gradient(180deg, #161616, #080808);
  border:1.5px solid rgba(212,175,55,0.75);
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 18px 50px rgba(0,0,0,0.5);
}

.menu-box.drinks{
  grid-column:span 12;
}

.menu-box img{
  width:100%;
  height:100%;
  min-height:330px;
  object-fit:cover;
}

.menu-info{
  padding:34px;
}

.menu-info h3{
  color:#d4af37;
  font-size:32px;
  margin-bottom:14px;
}

.price{
  color:#47c47a;
  font-size:19px;
  font-weight:900;
  margin-bottom:18px;
}

.menu-info ul{
  list-style:none;
}

.menu-info li{
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,0.1);
  font-size:17px;
  color:#f4f4f4;
}

.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  background:#0b0b0b;
  align-items:center;
}

.about-text{
  padding:70px 7%;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.about-slider{
  position:relative;
  width:100%;
  height:460px;
  overflow:hidden;
  background:#000;
}

.about-slider img{
  width:100%;
  height:460px;
  object-fit:cover;
  display:block;
  filter:brightness(0.72);
  transition:opacity 0.7s ease-in-out;
  cursor:pointer;
}

.fade-out{
  opacity:0;
}

.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  border:2px solid #d4af37;
  background:rgba(0,0,0,0.65);
  color:#d4af37;
  font-size:28px;
  cursor:pointer;
  z-index:5;
  transition:0.3s;
}

.slider-btn:hover{
  background:#d4af37;
  color:#000;
}

.slider-btn.left{
  left:20px;
}

.slider-btn.right{
  right:20px;
}

.events{
  padding:95px 7%;
  background:
    linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.9)),
    url('https://images.unsplash.com/photo-1555244162-803834f70033?q=80&w=1600&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
}

.events-content{
  max-width:900px;
  margin:auto;
  text-align:center;
  background:rgba(0,0,0,0.72);
  border:1px solid rgba(212,175,55,0.55);
  border-radius:28px;
  padding:50px;
}

.contact{
  padding:95px 7%;
  background:#111;
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.contact-card{
  background:#070707;
  border:1px solid rgba(212,175,55,0.45);
  border-radius:24px;
  padding:35px;
  text-align:center;
}

.contact-card h3{
  color:#d4af37;
  font-size:26px;
  margin-bottom:14px;
}

.contact-card p{
  color:#eee;
  font-size:18px;
  line-height:1.7;
}

.small{
  margin-top:18px;
  padding:13px 26px;
}

footer{
  background:#030303;
  border-top:2px solid #d4af37;
  padding:40px 7%;
  text-align:center;
  color:#ccc;
}

footer p{
  margin:8px 0;
}

.socials{
  margin-bottom:22px;
}

.socials a{
  color:#d4af37;
  text-decoration:none;
  margin:0 14px;
  font-weight:900;
}

.socials a:hover{
  color:#47c47a;
}

.popup{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.88);
  justify-content:center;
  align-items:center;
  z-index:999;
}

.popup-content{
  background:linear-gradient(180deg, #171717, #050505);
  border:2px solid #d4af37;
  padding:42px;
  border-radius:24px;
  text-align:center;
  max-width:430px;
  width:90%;
  position:relative;
}

.popup-content h2{
  color:#47c47a;
  font-size:30px;
  margin-bottom:15px;
}

.popup-content p{
  color:#ddd;
  line-height:1.6;
}

.close{
  position:absolute;
  top:14px;
  right:18px;
  background:none;
  border:none;
  color:#d4af37;
  font-size:34px;
  cursor:pointer;
}

.phone-btn{
  display:inline-block;
  margin-top:22px;
  padding:16px 30px;
  background:#47c47a;
  color:white;
  text-decoration:none;
  border-radius:999px;
  font-weight:900;
}

.image-popup{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.78);
  backdrop-filter:blur(6px);
  z-index:2000;
  justify-content:center;
  align-items:center;
  padding:25px;
}

.image-popup img{
  max-width:92vw;
  max-height:88vh;
  width:auto;
  height:auto;
  object-fit:contain;
  border-radius:18px;
  border:2px solid #d4af37;
  box-shadow:0 20px 60px rgba(0,0,0,0.7);
}

.image-popup-close{
  position:fixed;
  top:22px;
  right:28px;
  background:rgba(0,0,0,0.65);
  color:#d4af37;
  border:2px solid #d4af37;
  width:46px;
  height:46px;
  border-radius:50%;
  font-size:32px;
  line-height:38px;
  cursor:pointer;
  z-index:2001;
}

.image-popup-close:hover{
  background:#d4af37;
  color:#000;
}

.popup-arrow{
  position:fixed;
  top:50%;
  transform:translateY(-50%);
  z-index:2001;
  width:54px;
  height:54px;
  border-radius:50%;
  border:2px solid #d4af37;
  background:rgba(0,0,0,0.65);
  color:#d4af37;
  font-size:30px;
  cursor:pointer;
}

.popup-arrow:hover{
  background:#d4af37;
  color:#000;
}

.popup-left{
  left:28px;
}

.popup-right{
  right:28px;
}

@media(max-width:1000px){
  .hero{
    grid-template-columns:1fr;
    padding-top:60px;
    padding-bottom:60px;
  }

  .menu-box,
  .menu-box.drinks{
    grid-column:span 12;
  }

  .about{
    grid-template-columns:1fr;
  }

  .about-slider{
    height:360px;
  }

  .about-slider img{
    height:360px;
  }

  .contact-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:700px){
  .navbar{
    flex-direction:column;
    gap:16px;
  }

  .nav-links{
    gap:12px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .nav-links a{
    font-size:14px;
  }

  .hero-text h1{
    font-size:52px;
  }

  .hero-description{
    font-size:20px;
  }

  h2{
    font-size:34px;
  }

  .menu-box{
    grid-template-columns:1fr;
  }

  .menu-box img{
    min-height:220px;
  }

  .hero-card{
    padding:30px;
  }

  .about-text{
    padding:50px 6%;
  }

  .about-slider{
    height:280px;
  }

  .about-slider img{
    height:280px;
  }

  .slider-btn{
    width:44px;
    height:44px;
    font-size:26px;
  }

  .popup-arrow{
    width:44px;
    height:44px;
    font-size:24px;
  }

  .popup-left{
    left:12px;
  }

  .popup-right{
    right:12px;
  }
}