/* ============================================
   MISTER WOLF — Nightlife Venue
   Palette: #0a0a0a (base), #f5f0eb (foreground),
            #d4a853 (gold accent)
   Type: Playfair Display (display) + Inter (body)
   ============================================ */

/* --- Reset & Variables --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --black: #0a0a0a;
  --warm-white: #f5f0eb;
  --gold: #d4a853;
  --gold-dim: #b8923e;
  --muted-text: #a0988a;
  --card-bg: #141210;
  --border-subtle: #2a2620;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 48px;
  --space-2xl: 96px;

  --max-width: 1200px;
}

body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: var(--warm-white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-underline-offset: 0.15em;
  transition: color 0.2s;
}
a:hover { color: #e8c46a; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* --- Utility --- */
.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--space-lg);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--warm-white);
  border-color: var(--warm-white);
}
.btn-outline:hover {
  background: var(--warm-white);
  color: var(--black);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* --- Fixed Call FAB (mobile) --- */
.call-fab {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  background: var(--gold);
  color: var(--black);
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  gap: 8px;
  align-items: center;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  line-height: 1;
}
.call-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 168, 83, 0.5);
  color: var(--black);
}
.call-fab svg { flex-shrink: 0; }

@media (max-width: 768px) {
  .call-fab { display: inline-flex; }
}

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

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.7) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-lg);
  max-width: 800px;
  animation: fadeUp 0.8s ease-out;
}

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

.hero-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--space-md);
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--gold);
  margin: 0 0 var(--space-md);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 30px rgba(10, 10, 10, 0.5);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--warm-white);
  opacity: 0.85;
  margin: 0 0 var(--space-xl);
  font-weight: 400;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Reviews --- */
.reviews {
  padding: var(--space-2xl) var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}

.reviews-header {
  display: flex;
  align-items: baseline;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 2px;
}
.star {
  color: var(--gold);
  font-size: 1.2rem;
}
.rating-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-left: var(--space-sm);
  font-weight: 600;
}

.reviews-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 900px) {
  .reviews-scroll {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s;
}
.review-card:hover {
  border-color: var(--gold-dim);
}

.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--warm-white);
  opacity: 0.88;
  margin: 0 0 var(--space-sm);
}

.review-author {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted-text);
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
}

.review-badge {
  color: var(--gold);
  font-weight: 600;
}

/* --- Gallery --- */
.gallery {
  padding: var(--space-2xl) var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-md);
}

.gallery-item--wide {
  grid-column: 1 / -1;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  min-height: 240px;
}
.gallery-item:hover img {
  transform: scale(1.03);
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--wide {
    grid-column: 1;
  }
}

/* --- Services --- */
.services {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--card-bg);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.25s;
}
.service-card:hover {
  border-color: var(--gold-dim);
}

.service-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: var(--space-md);
  line-height: 1;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 var(--space-sm);
  color: var(--warm-white);
}

.service-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted-text);
  margin: 0;
}

/* --- Info (Hours + Location) --- */
.info {
  padding: var(--space-2xl) var(--space-lg);
}

.info-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

@media (max-width: 700px) {
  .info-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

.info-block {
  padding: var(--space-lg);
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.hours-table td {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.hours-table tr:last-child td {
  border-bottom: none;
}
.hours-table td:first-child {
  font-weight: 500;
  color: var(--muted-text);
  width: 40%;
}
.closed {
  color: #665;
  font-style: italic;
}
.open {
  color: var(--gold);
  font-weight: 600;
}

.hours-note {
  font-size: 0.85rem;
  color: var(--muted-text);
  margin: var(--space-md) 0 0;
  font-style: italic;
}

.venue-address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.venue-address strong {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
}

.venue-phone {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 var(--space-lg);
}
.venue-phone a {
  color: var(--warm-white);
  text-decoration: none;
}
.venue-phone a:hover {
  color: var(--gold);
}

/* --- Contact --- */
.contact {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--card-bg);
  border-top: 1px solid var(--border-subtle);
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-intro {
  font-size: 1rem;
  color: var(--muted-text);
  margin: 0 0 var(--space-xl);
  line-height: 1.6;
}

.form-row {
  margin-bottom: var(--space-lg);
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--warm-white);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.02em;
}

.optional {
  color: var(--muted-text);
  font-weight: 400;
  font-size: 0.8rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--black);
  border: 1px solid var(--border-subtle);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.2s;
  border-radius: 0;
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  outline: none;
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #555;
}

.form-status {
  font-size: 0.9rem;
  color: var(--gold);
  margin: var(--space-md) 0 0;
  text-align: center;
}

/* --- Footer --- */
.site-footer {
  padding: var(--space-xl) var(--space-lg);
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}

.footer-address {
  font-size: 0.8rem;
  color: var(--muted-text);
}

.attribution {
  font-size: 0.75rem;
  margin: 0;
}
.attribution a {
  color: var(--muted-text);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.attribution a:hover {
  opacity: 1;
  color: var(--muted-text);
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
