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

body {
  font-family: "Poppins", sans-serif;
  background: #f4a621;
  color: #222;
}

/* BOXED SITE */
.site-wrapper {
  max-width: 1280px;
  margin: 40px auto;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

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

h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url("../images/hero.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 150px 20px;
}

.hero h1 {
  font-size: 3.5rem;
}

.hero p {
  color: #f4a621;
}

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

.menu-card {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.menu-card h3 {
  display: flex;
  justify-content: space-between;
}

.menu-card span {
  color: #f4a621;
}

.menu.alt {
  background: #fafafa;
  border-radius: 20px;
}

/* DRINKS */
.drinks {
  background: #111;
  color: #fff;
  border-radius: 20px;
}

.drinks h2 {
  color: #f4a621;
}

.drinks .menu-card {
  background: #1c1c1c;
}

.qr-box {
  text-align: center;
  margin-top: 40px;
}

.qr-box img {
  width: 160px;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
}

/* EVENT */
.event {
  background: linear-gradient(135deg,#b30000,#ff4d4d);
  color: #fff;
  text-align: center;
  border-radius: 20px;
}

/* MAP */
.map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 16px;
}

/* HOURS */
.hours {
  text-align: center;
  background: #fafafa;
  border-radius: 20px;
}

/* FOOTER */
footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 30px;
}

/* FLOATING BUTTONS */
.call-btn,
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}

.call-btn {
  right: 90px;
  background: #000;
}

.whatsapp-btn {
  right: 20px;
  background: #25D366;
}

/* MOBILE */
@media (max-width: 768px) {
  .site-wrapper {
    margin: 0;
    border-radius: 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}
