/* ===========================================
   JOE'S BAR (BATROUN) — venue page
   requests.colartdigitalmarketingagency.com/joesbarbatroun
   Own vintage red + black brand, independent of Colart's main
   site and of other venues' stylesheets.
=========================================== */
:root {
  --red:       #d1352b;
  --red-dark:  #9c2620;
  --red-light: #e8574c;
  --black:     #0a0908;
  --bg-soft:   #161311;
  --card:      #1d1815;
  --line:      rgba(209, 53, 43, .28);
  --ink:       #f5f0e8;
  --muted:     rgba(245, 240, 232, .68);
  --whatsapp:  #25d366;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-script:  'Kaushan Script', cursive;
  --font-body:    'Lato', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { background: var(--black); color: var(--ink); overflow-x: hidden; }
body {
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
::selection { background: var(--red); color: #fff; }

.red-text { color: var(--red); }
.star { color: var(--red); }

/* ===========================================
   BRAND BADGE (logo mark, built from live web fonts)
=========================================== */
.brand-badge {
  --size: 64px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: #050403;
  border: 2px solid var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-badge .bb-star { color: var(--red); font-size: calc(var(--size) * .16); line-height: 1; margin-bottom: calc(var(--size) * .02); }
.brand-badge .bb-script { font-family: var(--font-script); color: var(--ink); font-size: calc(var(--size) * .32); line-height: 1; }
.brand-badge .bb-bar {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--red);
  font-size: calc(var(--size) * .12);
  margin-top: calc(var(--size) * .06);
}

/* ===========================================
   HEADER
=========================================== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 36px;
  background: rgba(10, 9, 8, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; }
.header-nav { display: flex; align-items: center; gap: 26px; }
.header-nav a {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--muted);
  transition: color .3s;
}
.header-nav a:hover { color: var(--red-light); }
.header-nav a.header-cta {
  color: #fff;
  background: var(--red);
  padding: 10px 20px;
  border-radius: 4px;
}
.header-nav a.header-cta:hover { background: var(--red-light); }
@media (max-width: 700px) {
  header { padding: 10px 18px; }
  .header-nav { gap: 14px; }
  .header-nav a:not(.header-cta) { display: none; }
  .header-nav a.header-cta { padding: 9px 16px; font-size: 12.5px; }
}

/* ===========================================
   HERO
=========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: var(--black);
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 9, 8, .55) 0%, rgba(10, 9, 8, .8) 55%, rgba(10, 9, 8, .95) 100%),
    linear-gradient(0deg, rgba(20, 8, 6, .5) 0%, transparent 40%);
}

.hero-badge { margin-bottom: 26px; filter: drop-shadow(0 12px 34px rgba(0, 0, 0, .5)); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -.01em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--red-light);
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 38px;
}

.hero-nav-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  padding: 16px 30px;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(209, 53, 43, .3);
  transition: transform .3s, background .3s, box-shadow .3s;
  border: none;
  cursor: pointer;
}
.btn-red:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 14px 38px rgba(209, 53, 43, .4); }
.btn-outline-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(245, 240, 232, .35);
  color: var(--ink);
  padding: 16px 30px;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: border-color .3s, background .3s, transform .3s;
}
.btn-outline-red:hover { border-color: var(--red); background: rgba(209, 53, 43, .1); transform: translateY(-2px); }

@media (max-width: 500px) {
  .hero { padding: 115px 18px 60px; }
}

/* ===========================================
   SHARED SECTION HEAD
=========================================== */
.section { padding: 100px 24px; }
@media (max-width: 700px) { .section { padding: 70px 18px; } }
.section-alt { background: var(--bg-soft); }

.section-head {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--red);
  margin-bottom: 18px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.1;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head .kicker {
  font-family: var(--font-script);
  font-size: 19px;
  color: var(--red-light);
  margin-bottom: 18px;
}

/* ===========================================
   ABOUT
=========================================== */
.about-body {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.about-body p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 20px;
}
.about-body p:last-of-type { margin-bottom: 0; }
.about-body strong { color: var(--ink); font-weight: 800; }
.about-tagline {
  font-family: var(--font-script);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--red);
  margin: 34px 0;
  line-height: 1.3;
}
.about-cta { margin-top: 36px; display: flex; justify-content: center; }

/* ===========================================
   REQUEST DETAILS + TABLE
=========================================== */
.request-wrap { max-width: 880px; margin: 0 auto; }

.request-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 700px) { .request-details { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--red);
  margin-bottom: 8px;
}
.field label .optional { color: var(--muted); font-weight: 600; text-transform: none; letter-spacing: 0; }
.field input[type="text"] {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color .25s, background .25s;
}
.field input::placeholder { color: rgba(245, 240, 232, .35); }
.field input:focus { border-color: var(--red); background: rgba(209, 53, 43, .06); }
.field input.field-error { border-color: var(--red-light); box-shadow: 0 0 0 3px rgba(209, 53, 43, .18); }

.request-table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}
table.request-table { width: 100%; min-width: 560px; border-collapse: collapse; }
.request-table thead th {
  text-align: left;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red);
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(209, 53, 43, .07);
}
.request-table thead th.col-num { width: 52px; text-align: center; }
.request-table thead th.col-transpose { width: 120px; }
.request-table tbody td { padding: 10px 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.request-table tbody tr:last-child td { border-bottom: none; }
.request-table tbody tr:hover { background: rgba(209, 53, 43, .05); }
.row-num { text-align: center; font-weight: 800; color: var(--red); font-size: 13.5px; }
.request-table input[type="text"],
.request-table input[type="number"] {
  width: 100%;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color .25s, background .25s;
}
.request-table input::placeholder { color: rgba(245, 240, 232, .35); }
.request-table input:focus { border-color: var(--red); background: rgba(209, 53, 43, .07); }
.request-table input[type="number"] { text-align: center; }
.td-transpose { width: 120px; }

.request-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.request-hint { font-size: 13px; color: var(--muted); }
.request-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-clear {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--muted);
  padding: 13px 22px;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .3s, color .3s;
}
.btn-clear:hover { border-color: var(--red); color: var(--red-light); }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  padding: 14px 26px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .3);
  transition: transform .3s, filter .3s;
}
.btn-whatsapp:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn-whatsapp i { font-size: 17px; }
.btn-whatsapp:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

.request-note { margin-top: 18px; font-size: 12.5px; color: rgba(245, 240, 232, .4); text-align: center; }

@media (max-width: 560px) {
  .request-actions { flex-direction: column; align-items: stretch; }
  .request-buttons { justify-content: stretch; }
  .btn-clear, .btn-whatsapp { justify-content: center; width: 100%; }
}

/* ===========================================
   REQUEST MODAL — step 1 (choose host) + step 2 (thank you)
=========================================== */
.request-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .35s ease, visibility .35s;
}
.request-modal.is-open { visibility: visible; opacity: 1; }
.request-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 3, .84);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.request-modal-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 40px 32px 32px;
  text-align: center;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
  transform: translateY(16px) scale(.97);
  transition: transform .4s cubic-bezier(.2, .7, .2, 1);
}
.request-modal.is-open .request-modal-card { transform: translateY(0) scale(1); }
.request-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 15px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: color .3s, border-color .3s;
}
.request-modal-close:hover { color: var(--red-light); border-color: var(--red); }

.modal-step { display: none; }
.modal-step.is-active { display: block; }

.modal-step-eyebrow {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--red);
  margin-bottom: 10px;
}
.modal-step h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 22px;
}

.host-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; text-align: left; }
.host-option { display: block; cursor: pointer; }
.host-option input { position: absolute; opacity: 0; pointer-events: none; }
.host-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color .25s, background .25s;
}
.host-option input:checked + .host-card {
  border-color: var(--red);
  background: rgba(209, 53, 43, .1);
}
.host-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--black);
  border: 1.5px solid var(--red);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--red);
  font-size: 15px;
  flex-shrink: 0;
}
.host-name { font-weight: 800; font-size: 15px; color: var(--ink); }
.host-radio-dot {
  margin-left: auto;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  flex-shrink: 0;
  position: relative;
}
.host-option input:checked + .host-card .host-radio-dot { border-color: var(--red); }
.host-option input:checked + .host-card .host-radio-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--red);
}

.request-modal-emoji { font-size: 44px; margin-bottom: 16px; line-height: 1; }
.modal-actions { display: flex; flex-direction: column; gap: 10px; }
.modal-back-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
}
.modal-back-link:hover { color: var(--red-light); }

/* ===========================================
   FOOTER
=========================================== */
footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 46px 24px 26px;
  text-align: center;
}
.foot-badge { display: flex; justify-content: center; margin-bottom: 16px; }
.foot-tagline { font-family: var(--font-script); color: var(--red-light); font-size: 19px; margin-bottom: 22px; }
.foot-credits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  padding-bottom: 20px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.foot-credits a { color: var(--muted); transition: color .3s; }
.foot-credits a:hover { color: var(--red-light); }
.foot-credits .sep { color: var(--line); }
.foot-bottom { font-size: 12px; color: rgba(245, 240, 232, .4); }

/* ===========================================
   ACCESSIBILITY
=========================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
