/* ============================================================
   LUCKY FOOD MART & SMOKE HOUSE — STYLESHEET
   Colors: Red (#CC0000) + Green (#2D6A2D / #3A8A3A CBD green)
   ============================================================ */

:root {
  --red: #CC0000;
  --red-dark: #990000;
  --red-bright: #FF1A1A;
  --green: #2D8A2D;
  --green-light: #3DAA3D;
  --green-dark: #1A5C1A;
  --gold: #D4A017;
  --gold-light: #F0C040;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #222222;
  --gray: #444444;
  --light-gray: #888888;
  --white: #FFFFFF;
  --off-white: #F5F5F0;
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

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

/* ============ AGE GATE ============ */
#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.age-gate-box {
  background: var(--dark2);
  border: 2px solid var(--red);
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(204,0,0,0.4);
}

.age-gate-logo {
  width: 160px;
  border-radius: 50%;
  margin: 0 auto 24px;
  border: 3px solid var(--gold);
}

.age-gate-box h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.age-gate-box p {
  color: #bbb;
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

.age-gate-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}

#age-yes {
  background: var(--red);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
#age-yes:hover { background: var(--red-bright); }

#age-no {
  background: transparent;
  color: #888;
  border: 1px solid #444;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}
#age-no:hover { background: #333; }

.age-disclaimer {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0;
}

/* ============ NAVBAR ============ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--red);
  transition: all 0.3s;
}

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

.nav-logo img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

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

.nav-links li a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  color: #ccc;
}

.nav-links li a:hover { color: var(--white); background: rgba(204,0,0,0.15); }

.nav-cta {
  background: var(--red) !important;
  color: white !important;
  border-radius: 8px !important;
  padding: 9px 20px !important;
}
.nav-cta:hover { background: var(--red-bright) !important; }

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

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.30) 0%,
    rgba(80,0,0,0.45) 30%,
    rgba(0,0,0,0.82) 70%,
    rgba(0,0,0,0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  animation: fadeUp 0.8s ease forwards;
  margin-top: auto;
  padding-bottom: 80px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.95;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.8);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero-content h1 .amp {
  color: var(--gold-light);
}

.hero-sub {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.hero-tags span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s;
}

.hero-tags span:hover {
  background: var(--red);
  border-color: var(--red);
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red);
  color: white;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.25s;
  border: 2px solid var(--red);
}
.btn-primary:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204,0,0,0.5);
}
.btn-primary.small { padding: 10px 20px; font-size: 0.88rem; margin-top: 10px; }

.btn-secondary {
  background: transparent;
  color: white;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border-radius: 8px;
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.25s;
}
.btn-secondary:hover {
  border-color: var(--green-light);
  color: var(--green-light);
  transform: translateY(-2px);
}
.btn-secondary.small { padding: 10px 20px; font-size: 0.88rem; margin-top: 10px; }

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ============ MARQUEE ============ */
.marquee-bar {
  background: var(--red);
  overflow: hidden;
  padding: 12px 0;
  border-top: 2px solid var(--red-dark);
  border-bottom: 2px solid var(--red-dark);
}

.marquee-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: white;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ STATS BAR ============ */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--dark2);
  border-bottom: 1px solid #222;
  padding: 28px 20px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: #888;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: #333;
}

/* ============ SECTION COMMONS ============ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  border: 1px solid var(--green-light);
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 12px;
}

.section-header p {
  color: #999;
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============ PRODUCTS ============ */
.products-section {
  padding: 100px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--dark2);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  transition: all 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 20px 50px rgba(204,0,0,0.2);
}

.product-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #111;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s;
}

/* For product images that are better shown with contain (white bg product shots) */
.product-card:nth-child(1) .product-img-wrap img,
.product-card:nth-child(2) .product-img-wrap img,
.product-card:nth-child(3) .product-img-wrap img,
.product-card:nth-child(5) .product-img-wrap img,
.product-card:nth-child(6) .product-img-wrap img {
  object-fit: contain;
  padding: 12px;
  background: #0f0f0f;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--red);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
}

.green-badge { background: var(--green) !important; }

.product-info {
  padding: 24px;
}

.product-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.product-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.product-info p {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-list li {
  font-size: 0.85rem;
  color: #bbb;
  padding-left: 16px;
  position: relative;
}

.product-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-size: 0.75rem;
}

/* ============ GALLERY ============ */
.gallery-section {
  background: var(--dark2);
  padding: 100px 24px;
}

.gallery-section .section-header {
  color: var(--white);
}

.gallery-label {
  max-width: 1280px;
  margin: 0 auto 16px;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-left: 4px solid var(--red);
  padding-left: 14px;
}

.gallery-grid {
  max-width: 1280px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  height: 220px;
}

.gallery-item.tall {
  grid-row: span 2;
  height: 100%;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* Product shots: use contain so product labels are readable */
.gallery-item.product-shot {
  background: #111;
  height: 240px;
}

.gallery-item.product-shot img {
  object-fit: contain !important;
  padding: 8px;
  background: #111;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.06); }

/* ============ ABOUT ============ */
.about-section {
  padding: 100px 24px;
  background: var(--black);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-col {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: 16px;
  border: 3px solid var(--red);
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(204,0,0,0.4);
}

.badge-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: white;
  line-height: 1.6;
  display: block;
  text-align: center;
  letter-spacing: 0.05em;
}

.about-text-col {
  padding-left: 20px;
}

.about-text-col h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1;
  margin: 12px 0 20px;
  color: var(--white);
}

.about-text-col p {
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about-text-col p strong { color: var(--gold-light); }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: #ccc;
}

.feature-icon { color: var(--green-light); flex-shrink: 0; }

/* ============ CONTACT ============ */
.contact-section {
  background: var(--dark2);
  padding: 100px 24px;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--dark3);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon { font-size: 1.6rem; flex-shrink: 0; }

.info-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.info-card p {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.6;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
  font-size: 0.85rem;
  color: #aaa;
}

.hours-grid span:nth-child(odd) { color: #ccc; }

.map-col iframe {
  width: 100%;
  min-height: 420px;
  border-radius: 16px;
  border: 2px solid #2a2a2a;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  border-top: 2px solid var(--red);
  padding: 60px 24px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #222;
}

.footer-logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin-bottom: 16px;
}

.footer-logo-col p {
  color: #777;
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer h5 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-links-col ul,
.footer-products-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col ul li a,
.footer-products-col ul li {
  color: #888;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links-col ul li a:hover { color: var(--white); }

.footer-contact-col p {
  color: #888;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-note {
  margin-top: 10px;
  color: var(--gold-light) !important;
  font-weight: 600;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.footer-bottom p {
  color: #555;
  font-size: 0.78rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-badge-float { display: none; }
  .about-text-col { padding-left: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; height: 220px; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.product-shot { height: 200px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    padding: 20px;
    border-bottom: 2px solid var(--red);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 12px 20px; border-radius: 8px; font-size: 1.05rem; }
  
  #navbar { position: relative; } /* override for mobile menu layout */
  #navbar { position: fixed; }
  
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { gap: 16px; }
  .stat { padding: 0 16px; }
  .stat-divider { display: none; }
  .about-features { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-tags { gap: 6px; }
}
