/* ── PATRIFF TIP JAR — styles.css ── */

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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --card: #181818;
  --border: #2a2a2a;
  --green: #4ade80;
  --green-dark: #16a34a;
  --white: #f5f5f0;
  --muted: #888;
  --venmo-blue: #008CFF;
  --cashapp-green: #00D632;
  --instagram-grad: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  --facebook-blue: #1877F2;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── HEADER & NAV ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 60px;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

/* Desktop nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-links a.nav-tip {
  color: var(--green);
  border: 1px solid rgba(74,222,128,0.3);
}

.nav-links a.nav-tip:hover {
  background: rgba(74,222,128,0.1);
  color: var(--green);
}

.venue-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-transform: uppercase;
}

.venue-badge svg { color: var(--green); flex-shrink: 0; }

.venue-info { line-height: 1.3; text-align: right; }
.venue-name { color: var(--white); font-weight: 600; font-size: 12px; }
.venue-time { color: var(--muted); font-size: 10px; }

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.hamburger:hover { background: rgba(255,255,255,0.06); }

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}

.hamburger span:nth-child(3) { width: 65%; }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { width: 100%; transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  z-index: 199;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px 20px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-radius: 10px;
  transition: color 0.15s ease, background 0.15s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.mobile-nav-links a.nav-tip {
  color: var(--green);
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  margin-bottom: 4px;
}

.mobile-venue {
  margin-top: 16px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-venue svg { color: var(--green); flex-shrink: 0; }
.mobile-venue-name { font-size: 12px; font-weight: 600; color: var(--white); }
.mobile-venue-time { font-size: 11px; color: var(--muted); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/patriff-hero.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  animation: slowzoom 20s ease-out forwards;
}

@keyframes slowzoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.1) 0%,
    rgba(10,10,10,0.2) 40%,
    rgba(10,10,10,0.85) 75%,
    rgba(10,10,10,1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 32px 56px;
  width: 100%;
  max-width: 600px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeup 0.6s 0.2s ease forwards;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 12vw, 88px);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeup 0.6s 0.35s ease forwards;
}

.hero-headline span { color: var(--green); }

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(245,245,240,0.7);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeup 0.6s 0.5s ease forwards;
}

.hero-sub svg { color: var(--green); }

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeup 0.6s 1s ease forwards;
}

.scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(4px); }
}

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

/* ── MAIN CONTENT ── */
.main {
  position: relative;
  z-index: 2;
  background: var(--black);
  padding: 0 16px 80px;
}

.container {
  max-width: 700px;
  margin: 0 auto;
}

/* ── SECTION HEADER ── */
.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-top: 48px;
}

.section-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(74,222,128,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-icon svg { color: var(--green); }

.section-label { line-height: 1.2; }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1.5px;
  color: var(--white);
}

.section-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}

/* ── TIP BUTTONS ── */
.tip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tip-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  position: relative;
  overflow: hidden;
}

.tip-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.tip-btn:hover { transform: translateY(-2px); }
.tip-btn:hover::before { opacity: 0.08; }
.tip-btn:active { transform: translateY(0) scale(0.98); }

.tip-btn.venmo {
  background: var(--venmo-blue);
  border-color: var(--venmo-blue);
  box-shadow: 0 4px 24px rgba(0,140,255,0.25);
}
.tip-btn.venmo:hover { box-shadow: 0 8px 32px rgba(0,140,255,0.4); }
.tip-btn.venmo::before { background: white; }

.tip-btn.cashapp {
  background: var(--cashapp-green);
  border-color: var(--cashapp-green);
  box-shadow: 0 4px 24px rgba(0,214,50,0.2);
}
.tip-btn.cashapp:hover { box-shadow: 0 8px 32px rgba(0,214,50,0.35); }
.tip-btn.cashapp::before { background: white; }

.btn-left { display: flex; align-items: center; gap: 12px; }

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}

.btn-text { line-height: 1.2; }
.btn-name { font-weight: 700; font-size: 17px; color: white; }
.btn-handle { font-size: 12px; color: rgba(255,255,255,0.75); }

.btn-arrow {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
}

/* ── SOCIAL GRID ── */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.social-btn:hover { transform: translateY(-2px); }
.social-btn:active { transform: scale(0.98); }

.social-btn.instagram:hover { border-color: #e6683c; }
.social-btn.facebook:hover { border-color: var(--facebook-blue); }

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.social-icon.ig { background: var(--instagram-grad); }
.social-icon.fb { background: var(--facebook-blue); }

.social-text { line-height: 1.2; }
.social-name { font-weight: 600; font-size: 15px; color: var(--white); }
.social-handle { font-size: 12px; color: var(--muted); }

/* ── EXPLORE GRID ── */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.explore-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease;
  text-align: center;
}

.explore-btn:hover { transform: translateY(-2px); border-color: var(--green); }
.explore-btn:active { transform: scale(0.98); }

.explore-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-icon svg { color: var(--green); }
.explore-label { font-size: 12px; font-weight: 600; color: var(--white); }

/* ── BOOKING ── */
.booking-card {
  margin-top: 48px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
}

.booking-img {
  background-image: url('../images/patriff-booking.jpg');
  background-size: cover;
  background-position: center top;
  min-height: 200px;
}

.booking-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.booking-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
}

.booking-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid var(--green);
  background: transparent;
  color: var(--green);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  align-self: flex-start;
}

.booking-btn:hover {
  background: var(--green);
  color: var(--black);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-thanks {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--muted);
}

.footer-thanks span { color: var(--green); }

.footer-socials { display: flex; gap: 16px; }

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.footer-social-link:hover {
  border-color: var(--green);
  background: rgba(74,222,128,0.1);
}

.footer-social-link svg { color: var(--muted); }
.footer-social-link:hover svg { color: var(--green); }

.footer-content {
  display: flex;
  justify-content: center;
}

.footer-copy {
  padding: 12px;
  background: var(--black);
  color: #333;
  font-size: 11px;
  text-align: center;
}

.build-credit {
  padding: 12px;
  background: var(--black);
  color: #dea107;
  font-size: 11px;
  text-decoration: none;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 24px 24px 0 0;
  padding: 28px 24px 48px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.open .modal { transform: translateY(0); }

.modal-handle {
  width: 40px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 auto 24px;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.modal-platform-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  color: white;
}

.modal-platform-icon.venmo { background: var(--venmo-blue); }
.modal-platform-icon.cashapp { background: var(--cashapp-green); }

.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
}

.modal-handle-text { font-size: 13px; color: var(--muted); }

.modal-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.modal-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.amount-btn {
  padding: 16px 8px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
}

.amount-btn:hover,
.amount-btn.selected {
  border-color: var(--green);
  background: rgba(74,222,128,0.1);
  color: var(--green);
}

.other-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.other-input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.15s ease;
}

.other-input::placeholder { color: #555; }
.other-input:focus { border-color: var(--green); }

.modal-note {
  font-size: 11px;
  color: #555;
  text-align: center;
  margin-bottom: 20px;
}

.modal-cta {
  width: 100%;
  padding: 18px;
  border-radius: 14px;
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.modal-cta:hover { transform: translateY(-1px); }
.modal-cta:active { transform: scale(0.98); }

.modal-cta.venmo {
  background: var(--venmo-blue);
  color: white;
  box-shadow: 0 4px 24px rgba(0,140,255,0.35);
}

.modal-cta.cashapp {
  background: var(--cashapp-green);
  color: black;
  box-shadow: 0 4px 24px rgba(0,214,50,0.3);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

/* ── RESPONSIVE ── */
@media (min-width: 640px) {
  .main { padding: 0 32px 80px; }
  .modal { border-radius: 24px; border-bottom: 1px solid var(--border); margin-bottom: 32px; }
  .modal-overlay { align-items: center; }
  .tip-grid { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: 1fr 1fr; }
}

/* Nav: collapse to hamburger below 720px */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .venue-badge { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
}

@media (min-width: 721px) {
  .mobile-nav { display: none !important; }
}

@media (max-width: 500px) {
  .booking-card { grid-template-columns: 1fr; }
  .booking-img { min-height: 180px; }
}

@media (max-width: 380px) {
  .hero-content { padding: 32px 20px 48px; }
  .tip-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
}