/*
Theme Name: Beer & Beans
Theme URI: https://beerandbeans.in
Author: 3BS Hospitality LLP
Author URI: https://beerandbeans.in
Description: Custom theme for Beer & Beans - Modern Bistro, Pune
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: beerandbeans
*/

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark: #0a3b20;
  --darker:  #111111;
  --gold: #c09142;
  --gold-lt: #e8c97e;
  --cream:   #f5f0e8;
  --white:   #ffffff;
  --grey:    #888888;
  --light:   #f9f6f1;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-lt); }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title span { color: var(--gold); }

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--darker);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Navigation ───────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 0;
  transition: all 0.4s;
}

.site-header.scrolled {
  background: rgba(10,59,32,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.site-logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.site-logo span { color: var(--gold); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-menu a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  transition: color 0.3s;
}
.nav-menu a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--darker) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-lt); color: var(--darker) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--darker);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(17,17,17,0.92) 0%, rgba(26,26,26,0.75) 50%, rgba(17,17,17,0.85) 100%),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80') center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 8px 18px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.hero-badge span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--white);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Story / About strip ─────────────────────────────────────────────────── */
.about-strip {
  background: var(--gold);
  padding: 28px 24px;
}
.about-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.about-strip p {
  font-size: 1.05rem;
  color: var(--darker);
  font-weight: 500;
  font-style: italic;
  font-family: var(--font-head);
}
.about-strip-dot {
  width: 6px;
  height: 6px;
  background: rgba(26,26,26,0.4);
  border-radius: 50%;
}

/* ── About Section ────────────────────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
}
.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  border: 3px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}
.about-text p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat h3 {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 700;
}
.stat p {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin: 0;
}

/* ── Menu Highlights ─────────────────────────────────────────────────────── */
.menu-section {
  padding: 100px 0;
  background: #141414;
}
.menu-header {
  text-align: center;
  margin-bottom: 60px;
}
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.menu-tab {
  padding: 12px 28px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.menu-tab.active, .menu-tab:hover {
  background: var(--gold);
  color: var(--darker);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.menu-card {
  background: #1a1a1a;
  padding: 32px;
  transition: background 0.3s;
}
.menu-card:hover { background: #212121; }
.menu-card-tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.menu-card h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}
.menu-card p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 16px;
}
.menu-card-price {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
}

/* ── Locations ────────────────────────────────────────────────────────────── */
.locations {
  padding: 100px 0;
  background: var(--dark);
}
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}
.location-card {
  background: #141414;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.location-card:hover { background: #1a1a1a; }
.location-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}
.location-num {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.12);
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 1;
}
.location-card h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 8px;
}
.location-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.location-info {
  list-style: none;
  margin-bottom: 32px;
}
.location-info li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  gap: 12px;
}
.location-info li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
}

/* ── QR Section ───────────────────────────────────────────────────────────── */
.qr-section {
  padding: 100px 0;
  background: #0d0d0d;
  text-align: center;
}
.qr-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.qr-card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 36px 28px;
  width: 180px;
  transition: all 0.3s;
  cursor: pointer;
}
.qr-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  background: #212121;
}
.qr-card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.qr-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}
.qr-card p {
  font-size: 0.75rem;
  color: var(--grey);
  margin-top: 6px;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: #0a0a0a;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand h2 span { color: var(--gold); }
.footer-brand p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 28px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: all 0.3s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.5;
}
.footer-col ul li a {
  color: var(--grey);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid, .locations-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 24px; }
  .location-card { padding: 36px 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .qr-grid { gap: 12px; }
  .qr-card { width: 140px; padding: 28px 20px; }
}

/* ── Mobile Nav ──────────────────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--white);
  font-weight: 700;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  color: var(--grey);
}


/* FOUNDERS SECTION */
.founders-section { padding: 100px 0; background: #141414; text-align: center; }
.founders-inner { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.founders-intro { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 640px; margin: 0 auto 60px; line-height: 1.8; }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 48px; }
.founder-card { background: #1a1a1a; padding: 40px 36px; text-align: left; border-top: 3px solid var(--gold); }
.founder-card h4 { font-family: var(--font-head); font-size: 1.3rem; color: var(--white); margin-bottom: 14px; }
.founder-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.8; }
.founders-quote { background: rgba(201,168,76,0.08); border-left: 4px solid var(--gold); padding: 36px 48px; text-align: left; border-radius: 2px; margin-top: 8px; }
.founders-quote p { font-family: var(--font-head); font-size: 1.15rem; color: var(--white); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.founders-quote cite { color: var(--gold); font-size: 0.88rem; letter-spacing: 1px; font-style: normal; }
@media (max-width: 700px) { .founders-grid { grid-template-columns: 1fr; } .founders-quote { padding: 28px 24px; } }
/* LOGO IMAGE */
.logo img { height: 64px; width: auto; display: block; }
body.admin-bar .site-header { top: 46px; }
