/* Franko's Prime — Strict Mirror Mockup Stylesheet */
/* Self-hosted, no external CDN CSS */

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

:root {
  --gold: #b8975a;
  --dark: #1a1a1a;
  --darker: #111;
  --light: #f5f0e8;
  --white: #fff;
  --text: #333;
  --border: rgba(184,151,90,0.3);
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: Arial, Helvetica, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.85; }

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

/* ─── PROMO BAR ─── */
.prom-bar {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* ─── NAVBAR ─── */
.navbar {
  background: var(--darker);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 70px;
}

.navbar-logo {
  flex-shrink: 0;
}

.navbar-logo img {
  height: 50px;
  width: auto;
}

.navbar-logo-placeholder {
  width: 140px;
  height: 50px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 2px;
  border: 1px solid var(--gold);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.nav-links li a {
  display: block;
  padding: 24px 16px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-links li a:hover { color: var(--gold); }

.navbar-toggle {
  display: none;
  background: none;
  border: 1px solid var(--white);
  color: var(--white);
  padding: 6px 10px;
  cursor: pointer;
  font-size: 18px;
}

/* ─── PLACEHOLDERS ─── */
.img-placeholder {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
}

.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,151,90,0.05) 0%, transparent 60%);
}

/* ─── HERO / SLIDESHOW ─── */
.hero {
  position: relative;
  background: var(--dark);
}

.hero-slides {
  position: relative;
  width: 100%;
}

.hero-slide {
  width: 100%;
  height: 620px;
  background: #1a1a1a;
}

.hero-slide.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: rgba(255,255,255,0.2);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.hero-overlay h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: normal;
  letter-spacing: 2px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  background: transparent;
}

.btn:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-gold {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ─── MENU PREVIEW CAROUSEL ─── */
.menu-preview {
  padding: 60px 20px;
  background: var(--white);
  text-align: center;
}

.menu-preview-grid {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
}

.menu-preview-item {
  flex: 0 0 220px;
  text-align: center;
}

.menu-preview-item .img-placeholder {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  margin: 0 auto 12px;
  font-size: 10px;
}

.menu-preview-item .item-name {
  font-size: 14px;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 4px;
}

.menu-preview-item .item-price {
  font-size: 14px;
  color: var(--gold);
}

/* ─── ABOUT SECTION ─── */
.about-section {
  display: flex;
  min-height: 500px;
  background: var(--white);
}

.about-bg {
  flex: 1;
  background: var(--dark);
  min-height: 400px;
}

.about-text-wrap {
  flex: 1;
  padding: 80px 60px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.section-kicker {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: normal;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-body {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ─── RESERVATION SECTION ─── */
.reserve-section {
  display: flex;
  min-height: 500px;
  background: var(--darker);
}

.reserve-bg {
  flex: 1;
  background: #0d0d0d;
  min-height: 400px;
}

.reserve-text-wrap {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--darker);
  color: var(--white);
}

.reserve-text-wrap .section-kicker { color: var(--gold); }
.reserve-text-wrap .section-heading { color: var(--white); }
.reserve-text-wrap .section-body { color: rgba(255,255,255,0.75); }

/* ─── GALLERY SECTION ─── */
.gallery-section {
  padding: 60px 20px;
  background: var(--darker);
  text-align: center;
}

.gallery-section h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: normal;
  color: var(--white);
  margin-bottom: 32px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  aspect-ratio: 1;
  background: #222;
  overflow: hidden;
}

.gallery-item .img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  font-size: 9px;
}

/* ─── CONTACT / HOURS / LOCATION ─── */
.info-section {
  background: var(--dark);
  color: var(--white);
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.info-block h2 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: normal;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.info-block p,
.info-block a {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  display: block;
}

.info-block a:hover { color: var(--gold); }

.social-icons { display: flex; gap: 12px; margin-top: 8px; }

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--white);
  transition: border-color 0.2s, color 0.2s;
}

.social-icon:hover { border-color: var(--gold); color: var(--gold); }

/* ─── NEWSLETTER ─── */
.newsletter-section {
  background: #111;
  color: var(--white);
  padding: 48px 40px;
  text-align: center;
}

.newsletter-section h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: normal;
  color: var(--gold);
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  justify-content: center;
}

.newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--white);
  font-size: 14px;
  outline: none;
}

.newsletter-form input[type=email]::placeholder { color: rgba(255,255,255,0.4); }

/* ─── FOOTER ─── */
footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.4);
  padding: 20px 40px;
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

footer a { color: rgba(255,255,255,0.4); }
footer a:hover { color: var(--gold); }

.footer-nav { display: flex; gap: 20px; }

/* ─── MENU PAGE ─── */
.page-hero {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 80px 20px 60px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: normal;
  color: var(--white);
  letter-spacing: 2px;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.menu-tab {
  padding: 16px 32px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
}

.menu-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.menu-tab:hover { color: var(--white); }

.menu-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.menu-section {
  margin-bottom: 48px;
}

.menu-section-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: normal;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.menu-item:last-child { border-bottom: none; }

.menu-item-left { flex: 1; }

.menu-item-name {
  font-weight: bold;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 3px;
}

.menu-item-desc {
  font-size: 13px;
  color: #777;
  font-style: italic;
  line-height: 1.5;
}

.menu-item-price {
  font-size: 15px;
  color: var(--dark);
  white-space: nowrap;
  font-weight: bold;
  flex-shrink: 0;
}

.menu-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 40px;
}

.menu-photos .img-placeholder {
  aspect-ratio: 1;
  width: 100%;
  font-size: 9px;
}

.menu-addons {
  background: #f8f5f0;
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  margin: 12px 0 20px;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

.menu-addons strong { color: var(--dark); }

.menu-disclaimer {
  margin-top: 32px;
  padding: 20px;
  background: #f8f5f0;
  font-size: 13px;
  color: #666;
  font-style: italic;
  line-height: 1.7;
}

/* ─── DRINK MENU PHOTOS (none except logo) ─── */
/* ─── Drink menu has no food photos — logo × 4 only ─── */

/* ─── STEAK ADDONS ─── */
.steaks-note {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
  padding: 10px 16px;
  border-left: 3px solid var(--gold);
  background: #f8f5f0;
}

/* ─── SMOKED OLD FASHIONEDS ─── */
.sof-header {
  font-size: 13px;
  color: #555;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: #f8f5f0;
  border-left: 3px solid var(--gold);
  line-height: 1.7;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .info-section { grid-template-columns: repeat(2, 1fr); }
  .about-section, .reserve-section { flex-direction: column; }
  .about-text-wrap, .reserve-text-wrap { padding: 48px 32px; }
  .menu-photos { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .navbar-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--darker);
    padding: 10px 0;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .navbar { flex-wrap: wrap; padding: 0 16px; }

  .hero-slide { height: 400px; }
  .hero-overlay h1 { font-size: 28px; }

  .info-section { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .menu-preview-item { flex: 0 0 160px; }
  .menu-preview-item .img-placeholder { width: 160px; height: 160px; }

  .menu-photos { grid-template-columns: repeat(2, 1fr); }
  .menu-tabs { flex-wrap: wrap; }
  .menu-tab { padding: 12px 16px; font-size: 12px; }

  .newsletter-form { flex-direction: column; }
  .footer-nav { flex-direction: column; gap: 8px; }

  .about-bg { min-height: 260px; }
  .reserve-bg { min-height: 260px; }
  .section-heading { font-size: 24px; }
}

@media (max-width: 480px) {
  .hero-slide { height: 320px; }
  .hero-overlay h1 { font-size: 22px; }
  .info-section { padding: 40px 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-content { padding: 40px 16px; }
  .menu-item { flex-direction: column; gap: 4px; }
  .menu-item-price { align-self: flex-end; }
}
