/* ============================================================
   American Highway Band — Static Site CSS
   Snapshot: 2026-04-07
   ============================================================ */

/* Custom Fonts */
@font-face { font-family: 'tiza'; src: url('https://americanhighway.net/media/fonts/tiza.ttf') format('truetype'); font-display: swap; }
@font-face { font-family: 'accid '; src: url('https://americanhighway.net/media/fonts/accid___.ttf') format('truetype'); font-display: swap; }

/* CSS Variables */
:root {
  --site-header-font-family: tiza, system-ui, Arial;
  --site-header-font-size:   1.1rem;
  --site-header-font-color:  #ffffff;
  --site-body-font-family:   'accid ', system-ui, Arial;
  --site-body-font-size:     1rem;
  --site-body-font-color:    #ffffff;
  --menu-font-family:        Inter, system-ui, sans-serif;
  --menu-font-size:          0.9375rem;
  --menu-font-weight:        500;
  --menu-font-style:         normal;
  --menu-font-color:         #ffffff;
  --menu-font-hover-color:   #60a5fa;
  --menu-bar-bg:             rgba(10,10,10,0);
  --menu-item-bg:            rgba(255,255,255,0.03);
  --menu-item-hover-bg:      rgba(59,130,246,0.2);
  --menu-current-bg:         rgba(255,255,255,0.1);
  --menu-current-font-color: #ffffff;
  --menu-alignment:          flex-end;
  --top-content-gap:         96px;
  --footer-bg:               transparent;
  --footer-text:             #ffffff;
  --footer-link-color:       rgba(255, 255, 255, 0.85);
  --footer-link-hover:       #ffd700;
}

/* Base Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--site-body-font-family);
  font-size: var(--site-body-font-size);
  color: var(--site-body-font-color);
  background: transparent;
  min-height: 100vh;
}
p { margin-bottom: 1.5rem; line-height: 1.8; color: rgba(255, 255, 255, 0.9); }
h1, h2, h3, h4 { font-family: var(--site-header-font-family); color: #fff; }
a { color: var(--footer-link-color); text-decoration: none; }
a:hover { color: var(--footer-link-hover); }
img { max-width: 100%; height: auto; }

/* Background */
#background-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -2;
  overflow: hidden;
  background-color: #000;
}
#background-video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
#background-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.7);
}

/* Header */
.header-shell {
  position: relative;
  z-index: 100;
  width: 100%;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 14px;
  flex-wrap: nowrap;
}
.brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo img {
  max-width: min(102px, 45vw);
  height: auto;
}
.brand-title {
  font-family: var(--site-header-font-family);
  font-size: var(--site-header-font-size);
  color: var(--site-header-font-color);
  font-weight: bold;
}
.brand-title a { color: inherit; text-decoration: none; }

/* Nav */
.nav-main { display: flex; align-items: center; }
.site-menu {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}
.site-menu li a {
  font-family: var(--menu-font-family);
  font-size: var(--menu-font-size);
  font-weight: var(--menu-font-weight);
  color: var(--menu-font-color);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  background: var(--menu-item-bg);
  display: block;
  transition: background 0.2s, color 0.2s;
}
.site-menu li a:hover { background: var(--menu-item-hover-bg); color: var(--menu-font-hover-color); }
.site-menu li.active a { background: var(--menu-current-bg); color: var(--menu-current-font-color); }

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s;
  position: relative;
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }

/* Layout */
.content-wrapper, .main-content-container { margin-top: var(--top-content-gap); }
.container { max-width: 1440px; margin: 0 auto; padding: 0 24px; margin-top: -30px !important; }
.main-content-container { padding-bottom: 40px; }

/* Page grid */
.pm-grid {
  display: grid;
  grid-template-columns: 62fr 38fr;
  gap: 18px;
  align-items: start;
}
.pm-col { min-width: 0; overflow: hidden; }

/* AHW Custom Styles */
.ahw-hero {
  text-align: center;
  padding: 20px 0 10px;
}
.ahw-hero img {
  max-width: 260px;
  margin: 0 auto 16px;
  display: block;
}
.ahw-tagline {
  font-family: var(--site-header-font-family);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 6px;
  font-weight: bold;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.ahw-location {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
}
.ahw-section { margin-bottom: 28px; }
.ahw-section-title {
  font-family: var(--site-header-font-family);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.ahw-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px 20px;
}
.ahw-social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.ahw-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
  font-size: 0.95rem;
}
.ahw-social-btn:hover { opacity: 0.85; }
.ahw-fb { background: rgba(24,119,242,0.25); border: 1px solid rgba(24,119,242,0.5); color: #fff; }
.ahw-booking-text { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-bottom: 0; }

/* Right-column content stack */
.ri-stack { display: flex; flex-direction: column; gap: 16px; }
.ri-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  font-size: 0.95rem;
}
.ri-card img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
.ri-card h2 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fff;
}
.ri-card p { margin-bottom: 0.8rem; }
.ri-card p:last-child { margin-bottom: 0; }
.ri-card video {
  width: 100%;
  border-radius: 8px;
  background: #000;
}

/* Band video */
.band-video-wrap { border-radius: 10px; overflow: hidden; background: #000; }
.band-video-wrap video { width: 100%; display: block; }

/* Photo gallery */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.photo-grid img {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.photo-grid img:hover { transform: scale(1.02); opacity: 0.9; }
.photo-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Page headings */
.page-heading {
  font-family: var(--site-header-font-family);
  font-size: 2rem;
  color: #fff;
  margin: 0 0 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 12, 16, 0.92);
  backdrop-filter: blur(6px);
  z-index: 9999;
}
#lightbox.active { display: flex; }
#lightbox img { max-width: 95vw; max-height: 92vh; border-radius: 8px; object-fit: contain; }
#lightbox-close {
  position: absolute;
  top: 14px; right: 16px;
  width: 42px; height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
}
#lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* Footer */
.site-footer {
  color: var(--footer-text);
  padding: 20px 0 12px;
  background: rgba(0,0,0,0.52);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 10;
}
.footer-container { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.footer-content { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.footer-social { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px; padding: 6px 0; }
.footer-social a {
  color: var(--footer-link-color);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  transition: all 0.2s;
}
.footer-social a:hover { color: var(--footer-link-hover); border-color: var(--footer-link-hover); background: rgba(255,215,0,0.08); }
.footer-credits { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 6px; }

/* Contact form */
.ab-form-wrap { margin-top: 16px; }
.ab-form-title { font-family: var(--site-header-font-family); font-size: 1rem; color: #fff; margin-bottom: 12px; letter-spacing: 1px; }
.ab-field { margin-bottom: 10px; }
.ab-field input, .ab-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 10px 14px;
  color: #fff;
  font-family: var(--site-body-font-family);
  font-size: 0.9rem;
}
.ab-field input::placeholder, .ab-field textarea::placeholder { color: rgba(255,255,255,0.4); }
.ab-field input:focus, .ab-field textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
}
.ab-submit-btn {
  background: rgba(59,130,246,0.3);
  border: 1px solid rgba(59,130,246,0.5);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: var(--site-body-font-family);
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}
.ab-submit-btn:hover { background: rgba(59,130,246,0.5); }
.form-notice { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 8px; }

/* Responsive */
@media (max-width: 1024px) {
  .pm-grid { grid-template-columns: 1fr; }
  .photo-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .menu-toggle { display: block; }
  .nav-main { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(0,0,0,0.92); padding: 12px; }
  .nav-main.open { display: block; }
  .site-menu { flex-direction: column; }
  .site-menu li { width: 100%; }
  .site-menu li a { padding: 10px 16px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid-3 { grid-template-columns: 1fr 1fr; }
  .page-heading { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .photo-grid, .photo-grid-3 { grid-template-columns: 1fr; }
  .ahw-tagline { font-size: 1.2rem; }
}
