@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --main: #f0a034;
  --secondary: #7dd4f0;
  --dark: #7a3a42;
  --card: #e0e0ec8d;
  --glass: rgba(255,220,180,0.07);
  --glass-border: rgba(255,200,150,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: white;
  font-size: 16px;
  line-height: 1.6;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  background-image: url("bj.jpg");
  background-size: cover;
  background-position: center;
  background-color: rgba(0,0,0,0.6);
  background-blend-mode: overlay;
  backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.08em;
  color: var(--main);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img { height: 34px; width: auto; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
  padding-left: 40px;
}

.nav-links li { display: flex; align-items: center; }

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { opacity: 1; color: var(--main); }

/* HERO */
#home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 10%, rgba(240,160,52,0.16) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 85% 65%, rgba(125,212,240,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(240,120,80,0.06) 0%, transparent 70%);
}

.logo-space img {
  width: 220px;
  margin-bottom: 24px;
  border-radius: 16px;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--main);
  text-transform: uppercase;
  border: 1px solid rgba(240,160,52,0.4);
  padding: 5px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  font-weight: 500;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 14vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0.03em;
  margin: 12px 0 20px;
  background: linear-gradient(135deg, #fff 40%, rgba(240,160,52,0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 480px;
  font-size: 15px;
  font-weight: 300;
  opacity: 0.7;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--main);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: 4px;
}

/* SECTIONS */
section {
  padding: 96px 40px;
  max-width: 860px;
  margin: 0 auto;
}

.section-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 15px;
  font-weight: 300;
  opacity: 0.65;
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.75;
}

.playground-photo img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* CAT LABELS */
.cat-label {
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--main);
  font-weight: 600;
  margin: 28px 0 12px;
  display: block;
}

/* Override inline big cat labels */
p.cat-label[style] {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 1.7rem !important;
  letter-spacing: 0.05em !important;
  color: var(--main) !important;
  margin: 36px 0 14px !important;
  font-weight: 400 !important;
}

/* MENU TABS */
.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.mtab {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}

.mtab:hover { color: white; border-color: rgba(255,255,255,0.3); }

.mtab.active {
  background: var(--main);
  color: #000;
  border-color: var(--main);
  font-weight: 600;
}

.menu-panel { display: none; }
.menu-panel.visible { display: block; }

/* ITEMS */
.item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 18px 22px;
  border-radius: 16px;
  margin-bottom: 12px;
  transition: border-color 0.2s, background 0.2s;
}

.item:hover {
  border-color: rgba(240,160,52,0.4);
  background: rgba(255,200,150,0.1);
}

.drink-photo {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.drink-info { flex: 1; }

.item-name {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 5px;
  color: white;
}

.item-desc {
  font-size: 14px;
  opacity: 0.58;
  font-weight: 300;
  line-height: 1.5;
}

.item-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.3rem;
  color: var(--main);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}

.contact-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 22px 24px;
  border-radius: 16px;
  transition: border-color 0.2s;
}

.contact-card:hover { border-color: rgba(240,160,52,0.35); }

.contact-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.contact-val {
  font-size: 15px;
  font-weight: 400;
  color: white;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 48px 24px;
  border-top: 1px solid var(--glass-border);
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.45;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  nav { padding: 14px 20px; }
  .nav-links { gap: 20px; padding-left: 16px; }
  .nav-links a { font-size: 11px; }
  section { padding: 72px 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .drink-photo { width: 76px; height: 76px; }
}
