:root {
  --bg: #090909;
  --bg-soft: #121212;
  --bg-card: #181818;
  --gold: #c59d5f;
  --gold-light: #e4c17d;
  --pink: #ff4d6d;
  --purple: #7b2cbf;
  --cyan: #00d4ff;
  --text: #f7f2e8;
  --muted: #b9b0a2;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

.navbar {
  padding: 18px 0;
  transition: 0.3s ease;
}

.navbar.scrolled {
  background: rgba(9, 9, 9, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
}

.navbar-brand {
  letter-spacing: -0.03em;
}

.brand-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  color: #090909;
  margin-right: 8px;
  box-shadow: 0 0 30px rgba(197, 157, 95, 0.28);
}

.nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--gold-light);
}

.hero-section {
  position: relative;
  background: url("https://images.unsplash.com/photo-1470337458703-46ad1756a187?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(123, 44, 191, 0.45), transparent 28%),
    radial-gradient(circle at 75% 60%, rgba(255, 77, 109, 0.25), transparent 30%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.2));
}

.hero-title {
  line-height: 1;
  letter-spacing: -0.06em;
}

.hero-text,
.section-text {
  color: var(--muted);
  max-width: 680px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: 0;
  color: #15100a;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(197, 157, 95, 0.26);
}

.btn-gold:hover,
.btn-gold:focus {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #15100a;
  transform: translateY(-1px);
}

.section-padding {
  padding: 96px 0;
}

.section-muted {
  background: linear-gradient(180deg, #0d0d0d, #121212);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(197, 157, 95, 0.35);
  border-radius: 999px;
  background: rgba(197, 157, 95, 0.1);
  color: var(--gold-light);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.info-strip {
  position: relative;
  z-index: 4;
  margin-top: -52px;
}

.quick-card,
.feature-card,
.event-card,
.testimonial-card,
.reservation-card,
.promo-box {
  background: rgba(24, 24, 24, 0.85);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.quick-card {
  min-height: 120px;
  padding: 22px;
  display: grid;
  gap: 6px;
}

.quick-card i,
.feature-card i {
  color: var(--gold-light);
  font-size: 1.65rem;
}

.quick-card strong,
.quick-card span {
  display: block;
}

.quick-card span,
.feature-card p,
.event-card p,
.testimonial-card p {
  color: var(--muted);
}

.feature-card {
  padding: 24px;
  height: 100%;
}

.feature-card h3,
.event-card h3 {
  font-size: 1.2rem;
  margin-top: 12px;
  font-weight: 800;
}

.image-stack {
  position: relative;
}

.main-img {
  min-height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  left: -24px;
  bottom: 28px;
  max-width: 280px;
  padding: 18px;
  background: rgba(9, 9, 9, 0.84);
  border: 1px solid rgba(197, 157, 95, 0.28);
  border-radius: 18px;
  backdrop-filter: blur(16px);
}

.floating-note span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.menu-filters {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 2px 16px;
  justify-content: center;
  scrollbar-width: thin;
}

.filter-btn {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-radius: 999px;
  padding: 11px 18px;
  white-space: nowrap;
  font-weight: 800;
  transition: 0.22s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: #120d08;
  border-color: var(--gold);
}

.drink-card {
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.drink-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 157, 95, 0.45);
}

.drink-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.drink-content {
  padding: 22px;
}

.drink-content h3 {
  font-size: 1.15rem;
  font-weight: 900;
  margin: 0;
}

.drink-content strong {
  color: var(--gold-light);
  white-space: nowrap;
}

.drink-content p {
  color: var(--muted);
  margin: 10px 0 14px;
}

.tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 77, 109, 0.16);
  border: 1px solid rgba(255, 77, 109, 0.25);
  font-size: 0.82rem;
  font-weight: 700;
}

.happy-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 77, 109, 0.16), transparent 30%),
    radial-gradient(circle at 85% 70%, rgba(123, 44, 191, 0.2), transparent 34%),
    #090909;
}

.promo-box {
  padding: 26px;
}

.promo-item {
  display: grid;
  gap: 5px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.promo-item:last-child {
  border-bottom: 0;
}

.promo-item strong {
  font-size: 1.25rem;
  color: var(--gold-light);
}

.promo-item span {
  color: var(--muted);
}

.event-card {
  padding: 28px;
  min-height: 230px;
  transition: 0.25s ease;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-card span {
  color: var(--gold-light);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 240px;
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.testimonial-card {
  padding: 28px;
  height: 100%;
}

.stars {
  color: var(--gold-light);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.reservation-card {
  padding: clamp(24px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(197, 157, 95, 0.12), rgba(123, 44, 191, 0.12)),
    rgba(24, 24, 24, 0.92);
}

.form-control {
  min-height: 54px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 14px;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--gold);
  color: var(--text);
  box-shadow: 0 0 0 0.25rem rgba(197, 157, 95, 0.16);
}

.footer {
  background: #050505;
  color: var(--muted);
}

.footer h3,
.footer h4 {
  color: var(--text);
}

.footer hr {
  border-color: var(--border);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: var(--gold-light);
  font-size: 1.25rem;
}

.floating-whatsapp,
.back-to-top {
  position: fixed;
  z-index: 20;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 0;
}

.floating-whatsapp {
  right: 22px;
  bottom: 22px;
  background: #25d366;
  color: #fff;
  font-size: 1.55rem;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.32);
}

.back-to-top {
  right: 22px;
  bottom: 88px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.menu-item.hidden {
  display: none;
}

@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(9, 9, 9, 0.96);
    border: 1px solid var(--border);
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.74));
  }

  .section-padding {
    padding: 72px 0;
  }

  .info-strip {
    margin-top: -28px;
  }

  .floating-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 210px;
  }

  .gallery-grid img:first-child {
    grid-row: span 1;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-meta span {
    width: 100%;
    justify-content: center;
  }

  .quick-card {
    padding: 16px;
    min-height: 112px;
  }

  .menu-filters {
    justify-content: flex-start;
  }

  .drink-card img {
    height: 220px;
  }

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

  .main-img {
    min-height: 360px;
  }

  .floating-whatsapp,
  .back-to-top {
    right: 16px;
  }
}
