/* ========================================================
   Pub Night Parties — Static Site CSS
   Aesthetic: Warm tavern / immersive pub atmosphere
   Fonts: Cinzel (display), Lora (body)
======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;900&family=Cinzel+Decorative:wght@700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --bg:          #0f0a04;
  --bg-panel:    #1c1208;
  --bg-card:     #231708;
  --gold:        #c9943a;
  --gold-light:  #e8c07a;
  --gold-dim:    #7a5a20;
  --cream:       #f2e8d0;
  --cream-dim:   #c4b48a;
  --red:         #8b1a1a;
  --text:        #e8d9b8;
  --text-dim:    #9a8a6a;
  --border:      rgba(201,148,58,0.25);
  --shadow:      0 4px 32px rgba(0,0,0,0.7);
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
  line-height: 1.75;
  /* Subtle wood-grain texture via layered gradients */
  background-image:
    repeating-linear-gradient(
      92deg,
      rgba(201,148,58,0.015) 0px,
      transparent 2px,
      transparent 60px
    ),
    repeating-linear-gradient(
      180deg,
      rgba(0,0,0,0.08) 0px,
      transparent 1px,
      transparent 40px
    );
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Cinzel', Georgia, serif;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--gold-light);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; color: var(--gold); }
p  { margin-bottom: 1.2em; color: var(--text); }

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

strong { color: var(--gold-light); font-weight: 600; }

/* ---- UTILITIES ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section--dark { background: var(--bg-panel); }
.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  margin: 3rem 0;
}

/* ---- HEADER / NAV ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 10, 4, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  line-height: 1;
  min-width: 0;
}
.site-logo-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid rgba(201,148,58,0.35);
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  flex-shrink: 0;
  background: rgba(15, 10, 4, 0.9);
  padding: 4px;
}
.site-logo-copy {
  display: flex;
  flex-direction: column;
}
.site-logo .logo-title {
  font-family: 'Cinzel Decorative', 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--gold-light);
  font-weight: 700;
  white-space: nowrap;
}
.site-logo .logo-tagline {
  font-size: 0.65rem;
  color: var(--gold-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
  font-family: 'Lora', serif;
  font-style: italic;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: flex-end;
}
.site-nav a {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  border: 1px solid transparent;
  border-radius: 2px;
  color: var(--cream-dim);
  transition: all 0.2s;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--gold-light);
  border-color: var(--border);
  background: rgba(201,148,58,0.07);
}
.site-nav a.nav-cta {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  font-weight: 600;
}
.site-nav a.nav-cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7) saturate(0.9);
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(15,10,4,0.1) 0%,
    rgba(15,10,4,0.0) 30%,
    rgba(15,10,4,0.2) 70%,
    rgba(15,10,4,0.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  max-width: 800px;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  margin-bottom: 1rem;
  display: block;
}
.hero h1 {
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.hero p {
  font-size: 1.15rem;
  color: var(--cream-dim);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-style: italic;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,148,58,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(242,232,208,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,148,58,0.05);
}

/* ---- PUB CARDS ---- */
.pub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.pub-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.pub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,148,58,0.3);
}
.pub-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: filter 0.3s;
}
.pub-card:hover img { filter: brightness(1.05) saturate(1.1); }
.pub-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pub-card-body h3 { margin-bottom: 0.5rem; }
.pub-card-body p  { flex: 1; font-size: 0.95rem; }
.pub-card-body a  { margin-top: 1rem; align-self: flex-start; }

/* ---- GALLERY GRID ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
  cursor: pointer;
}
.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(0,0,0,0.8);
  filter: brightness(1.1);
  z-index: 2;
  position: relative;
}

/* ---- LIGHTBOX ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 2rem;
  color: var(--cream);
  cursor: pointer;
  font-family: sans-serif;
  line-height: 1;
}
.lightbox-close:hover { color: var(--gold); }

/* ---- FEATURES LIST ---- */
.features-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.features-list li {
  padding: 0.6rem 0 0.6rem 1.6rem;
  position: relative;
  border-bottom: 1px solid rgba(201,148,58,0.1);
  font-size: 0.97rem;
}
.features-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 0.85rem;
}

/* ---- TESTIMONIAL ---- */
.testimonial {
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
  border-radius: 0 4px 4px 0;
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--gold-dim);
  position: absolute;
  top: -1rem;
  left: 1rem;
  line-height: 1;
  opacity: 0.5;
}
.testimonial p { font-style: italic; margin-bottom: 0.5rem; }
.testimonial cite {
  font-size: 0.85rem;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-style: normal;
  letter-spacing: 0.06em;
}

/* ---- 2-COL LAYOUT ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.two-col img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }

/* ---- SECTION LABEL ---- */
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* ---- ORNAMENT ---- */
.ornament {
  text-align: center;
  color: var(--gold-dim);
  letter-spacing: 0.4em;
  font-size: 1.1rem;
  margin: 0.5rem 0 1.5rem;
}

/* ---- CONTACT FORM ---- */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  max-width: 680px;
  margin: 0 auto;
}
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(201,148,58,0.05);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,148,58,0.08);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--bg-panel); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

/* pub picker */
.pub-picker { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0.75rem; margin-top: 0.5rem; }
.pub-picker label { cursor: pointer; }
.pub-picker input[type=radio] { display: none; }
.pub-picker-card {
  border: 2px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.pub-picker input:checked + .pub-picker-card {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,148,58,0.3);
}
.pub-picker-card img { width: 100%; height: 100px; object-fit: cover; display: block; }
.pub-picker-card span {
  display: block;
  padding: 0.4rem 0.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--cream-dim);
  background: var(--bg-card);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  margin-top: 5rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand .logo-title {
  font-family: 'Cinzel Decorative', 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--gold-light);
}
.footer-brand p { font-size: 0.88rem; color: var(--text-dim); margin-top: 0.5rem; font-style: italic; }
.footer-nav h4, .footer-contact h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: 'Cinzel', serif;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 0.5rem; }
.footer-nav a { color: var(--text-dim); font-size: 0.9rem; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-contact p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.9; }
.footer-contact a { color: var(--gold); }
.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; flex-wrap: wrap; }
.social-links a {
  display: inline-block;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  transition: all 0.2s;
  text-decoration: none;
}
.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,148,58,0.1);
}
.footer-bottom {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); margin: 0; }

/* ---- BENEFITS GRID ---- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.benefit-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}
.benefit-card .icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.benefit-card h4 { margin-bottom: 0.5rem; }
.benefit-card p  { font-size: 0.9rem; color: var(--text-dim); margin: 0; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7) saturate(0.85);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,10,4,0.15), rgba(15,10,4,0.38));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  animation: fadeUp 0.8s ease both;
}
.page-hero-content h1 { margin-bottom: 0.5rem; }
.page-hero-content p  { font-style: italic; color: var(--cream-dim); margin: 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .header-inner { flex-direction: column; gap: 0.5rem; }
  .site-logo { justify-content: center; }
  .site-nav { justify-content: center; }
  .site-nav a { font-size: 0.65rem; padding: 0.35rem 0.6rem; }
}
@media (max-width: 500px) {
  .hero { min-height: 70vh; }
}

/* ---- SUCCESS MESSAGE ---- */
.form-success {
  display: none;
  background: rgba(201,148,58,0.1);
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
  margin-top: 1rem;
}
.form-success h3 { color: var(--gold-light); margin-bottom: 0.5rem; }
.form-success p   { margin: 0; color: var(--cream-dim); }
