/* ===========================================
   TUNE KARAOKE — venue page
   requests.colartdigitalmarketingagency.com/tunekaraoke
   Own black + gold brand, independent of Colart's main site
   and of other venues' stylesheets.
=========================================== */
:root {
  --gold:       #d9ab4e;
  --gold-light: #f5e2a8;
  --gold-dark:  #a9772a;
  --black:      #0a0806;
  --bg-soft:    #15110c;
  --card:       #1b1611;
  --line:       rgba(217, 171, 78, .22);
  --ink:        #f6efe1;
  --muted:      rgba(246, 239, 225, .68);
  --whatsapp:   #25d366;

  --font-display: 'Lato', system-ui, sans-serif;
  --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(--gold); color: #000; }

.gold-text {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===========================================
   HEADER
=========================================== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 36px;
  background: rgba(10, 8, 6, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; }
.logo img { height: 42px; width: auto; border-radius: 10px; }
.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(--gold); }
.header-nav a.header-cta {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  padding: 10px 20px;
  border-radius: 999px;
}
.header-nav a.header-cta:hover { filter: brightness(1.08); }
@media (max-width: 700px) {
  header { padding: 12px 18px; }
  .logo img { height: 34px; }
  .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: 150px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
/* Hero background photo — assets/hero-bg.jpg (swap the file to change it,
   same filename). Dark overlay below keeps text legible over it. */
.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;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Dark wash so text stays legible over the photo, plus the original gold glow accents */
  background:
    linear-gradient(180deg, rgba(10, 8, 6, .58) 0%, rgba(10, 8, 6, .78) 55%, rgba(10, 8, 6, .94) 100%),
    radial-gradient(circle at 50% 18%, rgba(217, 171, 78, .16) 0%, transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(217, 171, 78, .08) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(217, 171, 78, .08) 0%, transparent 40%);
}
.hero-logo {
  width: 132px;
  margin: 0 auto 30px;
  filter: drop-shadow(0 10px 40px rgba(217, 171, 78, .35));
}
.hero-logo img { border-radius: 22px; }

.hero-title {
  font-weight: 900;
  font-size: clamp(38px, 6.4vw, 74px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.hero-tagline {
  font-style: italic;
  font-weight: 500;
  font-size: clamp(16px, 1.8vw, 21px);
  color: var(--gold);
  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;
  margin-bottom: 36px;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #1a1207;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 10px 30px rgba(217, 171, 78, .28);
  transition: transform .3s, box-shadow .3s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(217, 171, 78, .4); }
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--line);
  color: var(--ink);
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: border-color .3s, background .3s, transform .3s;
}
.btn-outline-gold:hover { border-color: var(--gold); background: rgba(217, 171, 78, .08); transform: translateY(-2px); }

.hero-socials {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.social-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 19px;
  color: var(--ink);
  border: 1.5px solid var(--line);
  background: rgba(255, 255, 255, .02);
  transition: transform .3s, background .3s, border-color .3s, color .3s;
}
.social-btn:hover { transform: translateY(-3px); }
.social-btn.instagram:hover { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4); border-color: transparent; }
.social-btn.facebook:hover { background: #1877f2; border-color: transparent; }
.social-btn.tiktok:hover { background: #010101; border-color: var(--gold); color: var(--gold); }
.social-btn.whatsapp:hover { background: var(--whatsapp); border-color: transparent; }

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

/* ===========================================
   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-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 7px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.section-head h2 {
  font-weight: 900;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.section-head .kicker {
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  color: var(--gold);
  margin-bottom: 18px;
}

/* ===========================================
   ABOUT
=========================================== */
.about-body {
  max-width: 720px;
  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-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

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

/* Guest details — name + venue are mandatory, table/seat is optional */
.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(--gold);
  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: 12px;
  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(246, 239, 225, .35); }
.field input:focus { border-color: var(--gold); background: rgba(217, 171, 78, .06); }
.field input.field-error { border-color: #e0574d; }

.request-table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  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(--gold);
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(217, 171, 78, .06);
}
.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(217, 171, 78, .04); }
.row-num {
  text-align: center;
  font-weight: 800;
  color: var(--gold);
  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: 10px;
  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(246, 239, 225, .35); }
.request-table input:focus { border-color: var(--gold); background: rgba(217, 171, 78, .06); }
.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: 999px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .3s, color .3s;
}
.btn-clear:hover { border-color: var(--gold); color: var(--gold); }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  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; }

.request-note {
  margin-top: 18px;
  font-size: 12.5px;
  color: rgba(246, 239, 225, .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%; }
}

/* ===========================================
   "THANK YOU" CONFIRMATION MODAL
=========================================== */
.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(6, 5, 4, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.request-modal-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  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-emoji { font-size: 46px; margin-bottom: 18px; line-height: 1; }
.request-modal-card h3 {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 26px;
}
.request-modal-card h3 .gold-text { font-weight: 900; }
.request-modal-actions { display: flex; flex-direction: column; gap: 10px; }
.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(--gold); border-color: var(--gold); }

/* ===========================================
   FOOTER
=========================================== */
footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 46px 24px 26px;
  text-align: center;
}
.foot-logo img { height: 36px; margin: 0 auto 14px; border-radius: 9px; }
.foot-tagline { font-weight: 800; font-size: 15px; margin-bottom: 18px; }
.foot-socials { display: flex; justify-content: center; gap: 12px; margin-bottom: 22px; }
.foot-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--muted);
  transition: color .3s, border-color .3s;
}
.foot-socials a:hover { color: var(--gold); border-color: var(--gold); }
.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(--gold); }
.foot-credits .sep { color: var(--line); }
.foot-bottom { font-size: 12px; color: rgba(246, 239, 225, .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(--gold); outline-offset: 3px; }
