:root {
  --bg-dark: #121417;
  --bg-card: #1c1f24;
  --bg-card-alt: #16181d;
  --accent: #c43228;
  --accent-gold: #d9822b;
  --accent-hover: #9e231b;
  --text-main: #f0f2f5;
  --text-muted: #9aa0a6;
  --border: #2c3038;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1400px; /* Expanded for desktop real estate */
  margin: 0 auto;
}

/* Navigation */
.navbar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0.4rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-main);
}

.nav-logo {
  height: 65px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 1rem;
}

.logo-text span {
  color: var(--accent);
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 1.2rem;
  font-size: 0.95rem;
  transition: color 0.2s;
}

nav a:hover,
nav a.active {
  color: var(--accent-gold);
}

/* Hero Section */
.hero {
  padding: 5rem 0 6rem 0;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(circle at 30% 50%, #262a33 0%, var(--bg-dark) 70%);
}

.hero-content-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.hero-logo-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-logo {
  max-width: 475px;
  width: 100%;
  height: auto;
  /* filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6)); */
}

.hero-text-wrapper {
  flex: 1.1;
  text-align: left;
}

.hero-text-wrapper h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-text-wrapper p {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}

/* Subpage Headers */
.page-header {
  padding: 4rem 0 3rem 0;
  text-align: center;
  background: radial-gradient(circle at 50% 20%, #262a33 0%, var(--bg-dark) 80%);
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto;
}

.page-header.bourbon-theme {
  background: radial-gradient(circle at 50% 20%, #382515 0%, var(--bg-dark) 80%);
}

/* Badges & Highlights */
.badge {
  display: inline-block;
  background-color: var(--accent-gold);
  color: #121417;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

/* Buttons & Links */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}

.btn-primary {
  background-color: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--text-main);
}

.btn-secondary:hover {
  background-color: var(--bg-card);
}

.btn-sm {
  background: var(--accent);
  color: #fff !important;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
}

.card-link {
  display: inline-block;
  color: var(--accent-gold);
  font-weight: 600;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.bg-alt {
  background-color: var(--bg-card-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 2.5rem;
}

.content-container {
  max-width: 850px;
  margin: 0 auto; /* Ensures text-heavy pages stay centered inside the new 1400px container */
}

.content-block h2 {
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.content-block p {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Grid & Cards */
.grid {
  display: grid;
  gap: 1.5rem;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.details-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card, .info-box {
  background: var(--bg-card);
  padding: 1.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.card-featured {
  border-color: var(--accent-gold);
  background: #202329;
}

.card h3, .info-box h3 {
  margin-bottom: 0.75rem;
  color: var(--accent-gold);
}

.card p, .info-box p {
  color: var(--text-muted);
}

.highlight-box {
  border-left: 4px solid var(--accent-gold);
  background: #191c21;
}

.cta-banner {
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
}

.cta-banner h3 {
  font-size: 1.4rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.cta-banner p {
  color: var(--text-muted);
}

/* Hours List */
.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--border);
  color: var(--text-muted);
}

/* Facebook Icon Block */
.social-follow {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.fb-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.fb-link:hover {
  transform: scale(1.1);
}

.social-follow p {
  margin: 0;
  font-size: 0.95rem;
}

/* Utility Spacing */
.mt-1 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }

/* Footer */
footer {
  padding: 2rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-content-split {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-logo-wrapper {
    justify-content: center;
  }
  
  .hero-text-wrapper {
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero-text-wrapper h1 {
    font-size: 2rem;
  }
  .nav-content {
    flex-direction: column;
    gap: 0.75rem;
  }
  nav a {
    margin: 0 0.5rem;
  }
  .hero-logo {
    max-width: 260px;
  }
}

/* Add these classes to style.css for the image showcase */
.showcase-row {
  align-items: center;
  gap: 2.5rem;
}

.showcase-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottle-showcase-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

@media (max-width: 768px) {
  .showcase-row {
    grid-template-columns: 1fr;
  }
  .bottle-showcase-img {
    max-width: 240px;
  }
}

/* ==========================================================================
   Bourbon Room & Cigar Speakeasy Theme
   ========================================================================== */
body.bourbon-theme-body {
  background-color: #12100e;
  color: #e6dfd5;
}

.bourbon-theme-body header.navbar {
  background-color: #1c1815;
  border-bottom: 1px solid #382e26;
}

.page-header.bourbon-theme {
  background: radial-gradient(circle at center, #2e2015 0%, #16120e 100%);
  border-bottom: 1px solid #4a3828;
  padding: 3.5rem 1rem;
  text-align: center;
}

.badge-amber {
  background-color: #d97706;
  color: #fff;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.showcase-row {
  background: linear-gradient(145deg, #1c1815, #261f1a);
  border: 1px solid #423325;
  border-radius: 12px;
  padding: 2.5rem;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.showcase-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottle-showcase-img {
  max-height: 380px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.7));
  transition: transform 0.35s cubic-bezier(0.25, 1, .5, 1), filter 0.35s ease;
  cursor: pointer;
}

.bottle-showcase-img:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 18px 32px rgba(217,119,6,0.35));
}

.tasting-section-title {
  color: #f59e0b;
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #382e26;
  padding-bottom: 0.5rem;
}

.tasting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.tasting-card {
  background: #1c1815;
  border: 1px solid #382e26;
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.tasting-card:hover {
  transform: translateY(-4px);
  border-color: #d97706;
}

.tasting-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.tasting-card-header h3 {
  margin: 0;
  color: #fbbf24;
  font-size: 1.3rem;
}

.proof-badge {
  background-color: #2b221a;
  border: 1px solid #523e2b;
  color: #d97706;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.flavor-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0.75rem 0 1rem 0;
}

.flavor-pill {
  background-color: #261e18;
  border: 1px solid #4a3828;
  color: #e6dfd5;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 9999px;
}

.notes-block {
  background: #14110e;
  border-left: 3px solid #d97706;
  padding: 0.75rem 1rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.notes-block p {
  margin: 4px 0;
}

.notes-label {
  color: #fbbf24;
  font-weight: 600;
}

.cigar-pairing-box {
  background: linear-gradient(135deg, #2b1f17, #1f1712);
  border: 1px dashed #78583c;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
}

.cigar-pairing-title {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f59e0b;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.bourbon-theme-body .card {
  background: #1c1815;
  border: 1px solid #382e26;
}

.bourbon-theme-body .highlight-box {
  background: linear-gradient(145deg, #241b14, #1a1410);
  border: 1px solid #5a402d;
}

.bourbon-theme-body footer {
  background-color: #0d0b0a;
  border-top: 1px solid #29211a;
}