/* ============================================================
   86Proof — Shared Stylesheet
   ============================================================ */

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

html {
  /* Reserves scrollbar gutter on both sides — keeps container
     centered identically on all pages regardless of scroll state */
  scrollbar-gutter: stable both-edges;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #333333;
  background-color: #0a0a0a;
  overflow-x: hidden;
}

/* --- Background --- */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.35);
  z-index: 0;
}

body.bg-shelves::before { background-image: url('/assets/BarShelves.jpg'); }
body.bg-moody::before   { background-image: url('/assets/MoodyBottles.jpg'); }

/* --- Container --- */

.container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: 10vh auto 5vh;
  padding: 3rem 2.5rem;
  background-color: #f8f8ff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.container.hero {
  min-height: 80vh;
  justify-content: center;
  text-align: center;
}

.container.content {
  text-align: left;
}

/* --- Logo --- */

.logo {
  height: auto;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.hero .logo    { width: 480px; }
.content .logo { width: 220px; }

/* --- Divider --- */

.divider {
  width: 60px;
  height: 1px;
  background-color: #333333;
  opacity: 0.4;
  margin: 0 auto 2rem;
}

/* --- Headings --- */

h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #333333;
  letter-spacing: -0.01em;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333333;
  margin: 2rem 0 1rem;
  width: 100%;
}

/* --- Body copy --- */

p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333333;
  font-weight: 300;
  margin-bottom: 1.5rem;
  width: 100%;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0.9;
  width: auto;
}

/* --- Lists --- */

ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  width: 100%;
}

li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 300;
}

li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #C1742E;
  font-size: 1.2rem;
  top: -1px;
}

/* --- Links --- */

a {
  color: #C1742E;
  text-decoration: none;
  font-weight: 400;
}

a:hover { text-decoration: underline; }

/* --- Button (hero) --- */

.button {
  display: inline-block;
  border: 1px solid rgba(51, 51, 51, 0.3);
  color: #333333;
  text-decoration: none;
  padding: 0.9rem 2.5rem;
  border-radius: 6px;
  font-weight: 400;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}

.button:hover {
  background-color: rgba(255, 255, 255, 0.7);
  border-color: rgba(51, 51, 51, 0.5);
  transform: translateY(-1px);
  text-decoration: none;
}

/* --- Footer --- */

footer {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 0.85rem;
  margin: 1rem auto 2rem;
  max-width: 800px;
  width: 100%;
}

footer p {
  color: rgba(248, 248, 255, 0.9);
  margin-bottom: 0.5rem;
  text-align: center;
  font-weight: 300;
  width: auto;
}

footer a {
  color: rgba(248, 248, 255, 0.9);
  font-weight: 400;
}

footer a:hover { text-decoration: underline; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 900px) {
  .container { max-width: 90%; padding: 2.5rem 1.5rem; margin: 8vh auto 4vh; }
  h1 { font-size: 2.1rem; }
  .hero h1 { font-size: 2.5rem; }
  h3 { font-size: 1.1rem; }
  p, li { font-size: 0.95rem; }
  .hero .logo { width: 360px; }
  .content .logo { width: 180px; }
  footer { max-width: 90%; }
}

@media (max-width: 600px) {
  .container { margin: 6vh auto; padding: 2rem 1.25rem; border-radius: 16px; box-shadow: 0 6px 18px rgba(0,0,0,0.3); }
  h1 { font-size: 1.8rem; }
  .hero h1 { font-size: 1.9rem; }
  h3 { font-size: 1.1rem; margin-top: 1.5rem; }
  li { padding-left: 1rem; }
  .hero .logo { width: 260px; margin-bottom: 1.5rem; }
  .content .logo { width: 160px; }
  footer { font-size: 0.8rem; max-width: 90%; }
}

@media (min-width: 1600px) {
  .container { max-width: 1000px; padding: 4rem 3rem; }
  .hero .logo { width: 540px; }
  .content .logo { width: 260px; }
  h1 { font-size: 3rem; }
  .hero h1 { font-size: 3.4rem; }
  p, li { font-size: 1.1rem; }
  footer { max-width: 1000px; }
}
