/* ================================================================
   EASSY LIQUOR — Main Stylesheet
   ================================================================ */

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

:root {
  --yellow:  #f5d800;
  --black:   #111100;
  --black2:  #1a1a00;
  --black3:  #1e1e00;
  --border:  #2e2e00;
  --muted:   #888800;
  --light:   #cccc00;
  --red:     #ff4400;
  --green:   #00aa33;
  --white:   #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ================================================================
   CONTAINER
   ================================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================================================
   AGE NOTICE
   ================================================================ */
.age-notice {
  background: #1a0000;
  border-bottom: 1px solid #330000;
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  color: #cc6644;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 2px solid var(--yellow);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  gap: 24px;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 3px;
  color: var(--yellow);
  flex-shrink: 0;
}

.nav-logo span { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--yellow); }

.nav-cta {
  font-size: 13px;
  font-weight: 700;
  background: var(--yellow);
  color: var(--black);
  padding: 8px 18px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.85; }

.hamburger {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  color: var(--yellow);
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ================================================================
   MOBILE MENU
   ================================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 3px;
  color: var(--white);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--yellow); }

/* ================================================================
   SECTION SHARED
   ================================================================ */
.sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}

.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 40px;
  line-height: 1.05;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 80px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-left h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 100px);
  letter-spacing: 3px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-left h1 span { color: var(--yellow); }

.hero-badge {
  display: inline-block;
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 16px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.hero-left > p {
  font-size: 16px;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.info-row {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  transition: opacity 0.2s;
  white-space: nowrap;
  display: inline-block;
}

.btn-yellow:hover { opacity: 0.85; }

.btn-outline {
  background: transparent;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1.5px solid var(--yellow);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
}

/* ================================================================
   HERO RIGHT — HOURS CARD
   ================================================================ */
.hero-right {
  background: var(--black2);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.open-badge {
  display: inline-block;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

.hours-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.hours-list { display: flex; flex-direction: column; gap: 8px; }

.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.hour-row:last-child { border-bottom: none; }
.hour-row .day  { color: var(--muted); }
.hour-row .time { color: var(--white); font-weight: 600; }
.hour-row.today .day  { color: var(--yellow); font-weight: 700; }
.hour-row.today .time { color: var(--yellow); }

/* ================================================================
   FLYERS
   ================================================================ */
.flyer-section {
  padding: 96px 0;
  background: var(--black2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.flyer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.flyer-card {
  background: var(--black);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.flyer-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.flyer-img {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
}

.fi-1 { background: #2a2000; }
.fi-2 { background: #1e1a00; }
.fi-3 { background: #221000; }

.flyer-body { padding: 20px; }

.ftag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--black2);
  color: var(--yellow);
  border: 1px solid var(--border);
  margin-bottom: 10px;
}

.ftag.red   { background: #2a0000; color: #ff6644; border-color: #440000; }
.ftag.green { background: #002200; color: #44cc66; border-color: #004400; }

.flyer-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.flyer-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.flyer-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 16px;
  transition: background 0.2s, color 0.2s;
}

.flyer-btn:hover {
  background: var(--yellow);
  color: var(--black);
}

/* ================================================================
   DEALS
   ================================================================ */
.deals-section {
  padding: 96px 0;
  background: var(--black);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.deal-card {
  background: var(--black2);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  transition: border-color 0.2s, transform 0.2s;
  overflow: hidden;
}

.deal-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.deal-img {
  width: 100px;
  min-height: 100px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
}

.di-1 { background: #2a2000; }
.di-2 { background: #1e1a00; }
.di-3 { background: #221000; }
.di-4 { background: #2e2800; }
.di-5 { background: #1a2200; }
.di-6 { background: #221e00; }

.deal-body { flex: 1; min-width: 0; }

.dbadge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 20px;
  background: var(--black3);
  color: var(--yellow);
  border: 1px solid var(--border);
  margin-bottom: 8px;
}

.dbadge.fire {
  background: #2a0000;
  color: #ff6644;
  border-color: #440000;
}

.deal-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.deal-sub {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.deal-prices {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.deal-prices .now {
  font-size: 22px;
  font-weight: 800;
  color: var(--yellow);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}

.deal-prices .was {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}

.deal-prices .save {
  font-size: 11px;
  font-weight: 700;
  background: #002200;
  color: #44cc66;
  padding: 2px 8px;
  border-radius: 20px;
}

/* ================================================================
   ABOUT
   ================================================================ */
.about-section {
  padding: 96px 0;
  background: var(--black2);
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-perks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.perk {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--black);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.perk-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.perk-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.perk-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ================================================================
   VISIT
   ================================================================ */
.visit-section {
  padding: 96px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}

.visit-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.05;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.vrow {
  font-size: 15px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.visit-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-dark {
  font-size: 14px;
  font-weight: 700;
  background: var(--yellow);
  color: var(--black);
  padding: 12px 24px;
  border-radius: 8px;
  transition: opacity 0.2s;
  display: inline-block;
}

.btn-dark:hover { opacity: 0.85; }

.btn-dark-outline {
  font-size: 14px;
  font-weight: 700;
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--border);
  padding: 12px 24px;
  border-radius: 8px;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-dark-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.visit-hours {
  background: var(--black2);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--black2);
  border-top: 2px solid var(--yellow);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--yellow);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--yellow); }

.footer p {
  font-size: 12px;
  color: var(--muted);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero         { grid-template-columns: 1fr; min-height: auto; padding: 60px 24px; }
  .hero-right   { max-width: 480px; }
  .about-grid   { grid-template-columns: 1fr; gap: 48px; }
  .visit-grid   { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav          { padding: 0 20px; }
  .nav-links    { display: none; }
  .nav-cta      { display: none; }
  .hamburger    { display: flex; }
  .flyer-grid   { grid-template-columns: 1fr; }
  .deals-grid   { grid-template-columns: 1fr; }
  .deal-card    { flex-direction: column; align-items: flex-start; }
  .deal-img     { width: 100%; height: 120px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-btns    { flex-direction: column; }
  .btn-yellow, .btn-outline { width: 100%; text-align: center; }
}
