/* Chamblee Liquor Store - Premium Theme */
:root {
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #B8960C;
  --black: #111111;
  --dark: #1a1a1a;
  --dark-gray: #2a2a2a;
  --white: #ffffff;
  --off-white: #f8f5f0;
  --text-light: #cccccc;
}

/* Base */
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--gold);
}

/* Navbar */
.navbar-chamblee {
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  padding: 0.5rem 0;
  transition: all 0.3s;
}
.navbar-chamblee.scrolled {
  padding: 0.3rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.navbar-chamblee .navbar-brand img {
  height: 60px;
  transition: height 0.3s;
}
.navbar-chamblee.scrolled .navbar-brand img {
  height: 45px;
}
.navbar-chamblee .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.4rem 0.5rem !important;
  transition: color 0.3s;
}
.navbar-chamblee .nav-link:hover,
.navbar-chamblee .nav-link.active {
  color: var(--gold) !important;
}
.lang-toggle {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.lang-toggle:hover {
  background: var(--gold);
  color: var(--black);
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 85vh;
  background: linear-gradient(135deg, rgba(17,17,17,0.85), rgba(17,17,17,0.6)), url('../img/store_bg.jpg') center/cover;
  display: flex;
  align-items: center;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--black));
}
.hero-content { position: relative; z-index: 2; }
.hero-content h1 {
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1.1;
}
.hero-content p.lead {
  font-size: 1.3rem;
  color: var(--text-light);
}

/* Gold Button */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  transition: all 0.3s;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212,175,55,0.3);
}
.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 28px;
  background: transparent;
  border-radius: 4px;
  transition: all 0.3s;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}

/* Section */
.section-dark { background: var(--dark); }
.section-black { background: var(--black); }
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}
.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto 2rem;
}

/* Product Cards */
.product-card {
  background: var(--dark-gray);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(212,175,55,0.1);
  height: 100%;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(212,175,55,0.15);
  border-color: rgba(212,175,55,0.3);
}
.product-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: #1a1a1a;
  padding: 15px;
}
.product-card .card-body {
  padding: 1.2rem;
}
.product-card h5 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.product-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}
.product-card .badge-category {
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
}

/* Specials Banner */
.specials-banner {
  background: linear-gradient(135deg, #1a0a00, #2a1000, #1a0a00);
  color: #FF4500;
  padding: 0.8rem 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  overflow: hidden;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  text-shadow: 0 0 10px rgba(255,69,0,0.3);
}
.specials-banner .marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Hours */
.hours-table td {
  padding: 8px 15px;
  border-bottom: 1px solid rgba(212,175,55,0.15);
  color: var(--text-light);
}
.hours-table td:first-child {
  color: var(--gold);
  font-weight: 600;
}
.hours-table tr.today td {
  color: var(--gold-light);
  font-weight: 700;
}

/* Store Info Card */
.info-card {
  background: var(--dark-gray);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  padding: 2rem;
}
.info-card i {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Gallery */
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
.footer-chamblee {
  background: var(--dark);
  border-top: 1px solid rgba(212,175,55,0.2);
  padding: 3rem 0 1.5rem;
}
.footer-chamblee h5 { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.footer-chamblee p, .footer-chamblee li { color: var(--text-light); font-size: 0.9rem; }
.footer-chamblee a { color: var(--text-light); }
.footer-chamblee a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  color: #666;
  font-size: 0.85rem;
}

/* Contact Form */
.form-control-dark {
  background: var(--dark-gray);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 6px;
}
.form-control-dark:focus {
  background: var(--dark-gray);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 0 0 0.2rem rgba(212,175,55,0.15);
}
.form-control-dark::placeholder { color: #666; }

/* Blog/Event Card */
.content-card {
  background: var(--dark-gray);
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,0.1);
  padding: 2rem;
  height: 100%;
  transition: border-color 0.3s;
}
.content-card:hover { border-color: rgba(212,175,55,0.3); }
.content-card h4 { color: var(--gold); }
.content-card .date { color: var(--gold-dark); font-size: 0.85rem; font-weight: 600; }

/* Category Filter */
.filter-btn {
  background: transparent;
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--text-light);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Map */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(212,175,55,0.2);
}

/* Open/Closed Badge */
.store-status {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
}
.store-status.open { background: #28a745; color: #fff; }
.store-status.closed { background: #dc3545; color: #fff; }

/* Page Header */
.page-header {
  background: linear-gradient(135deg, rgba(17,17,17,0.9), rgba(42,42,42,0.9)), url('../img/bg.jpg') center/cover;
  padding: 6rem 0 3rem;
  text-align: center;
}
.page-header h1 { font-size: 3rem; }
.page-header p { color: var(--text-light); font-size: 1.1rem; }

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .page-header h1 { font-size: 2rem; }
  .page-header { padding: 5rem 0 2rem; }
}
@media (max-width: 576px) {
  .hero-content h1 { font-size: 1.8rem; }
  .product-card img { height: 180px; }
}
