/* ===================================
   Party Time Liquor — Custom Styles
   =================================== */

:root {
  --crimson: #e94560;
  --violet: #7b2ff7;
  --amber: #f7b731;
  --bg-dark: #0f0f1a;
  --bg-card: #1a1a2e;
  --text-light: #f0f0f0;
  --text-muted: #9a9ab0;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,0.35);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- NAV ---- */
.navbar {
  background: rgba(15,15,26,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(233,69,96,0.2);
  padding: 14px 0;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff !important;
  text-decoration: none;
}
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.phone-btn { font-weight: 600; font-size: 0.85rem; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(123,47,247,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 70%, rgba(233,69,96,0.15) 0%, transparent 55%),
    linear-gradient(160deg, #0f0f1a 0%, #1a1a2e 50%, #0f0f1a 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 16px;
}
.hero-title span {
  color: var(--crimson);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--crimson);
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  font-size: 1rem;
}
.btn-primary:hover {
  background: #d63850;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233,69,96,0.4);
}
.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  font-size: 1rem;
}
.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transform: translateY(-2px);
}

/* ---- INFO BAR ---- */
.info-bar {
  background: var(--bg-card);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  color: var(--text-muted);
}
.info-item svg { color: var(--crimson); flex-shrink: 0; }
.info-item div { display: flex; flex-direction: column; }
.info-item strong { font-size: 0.85rem; color: #fff; font-weight: 700; }
.info-item span { font-size: 0.8rem; }

/* ---- SECTIONS ---- */
.section { padding: 90px 0; }
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
}

/* ---- CATEGORIES ---- */
.categories-section { background: var(--bg-dark); }
.category-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233,69,96,0.3);
  box-shadow: var(--shadow);
}
.cat-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.category-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.category-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- WHY US ---- */
.why-section { background: var(--bg-card); }
.why-card {
  padding: 28px 24px;
  border-left: 3px solid var(--crimson);
  background: rgba(255,255,255,0.02);
  border-radius: 0 var(--radius) var(--radius) 0;
  height: 100%;
  transition: background 0.2s, transform 0.2s;
}
.why-card:hover {
  background: rgba(233,69,96,0.06);
  transform: translateX(4px);
}
.why-num {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  color: rgba(233,69,96,0.3);
  display: block;
  margin-bottom: 8px;
}
.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.why-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ---- HOURS ---- */
.hours-section { background: var(--bg-dark); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.hours-table {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.92rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { font-weight: 600; color: #fff; }
.hours-row span:last-child { color: var(--text-muted); }
.hours-row:nth-child(5) span:last-child,
.hours-row:nth-child(6) span:last-child { color: var(--amber); }

/* ---- LOCATION ---- */
.location-section { background: var(--bg-card); }
.location-details { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.location-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.location-item svg { flex-shrink: 0; margin-top: 2px; }
.location-item div { display: flex; flex-direction: column; }
.location-item strong { font-size: 0.95rem; color: #fff; font-weight: 700; }
.location-item span { font-size: 0.85rem; color: var(--text-muted); }
.map-placeholder {
  background: linear-gradient(135deg, #1a1a2e, #252542);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-inner {
  text-align: center;
  padding: 40px;
}
.map-inner svg { margin-bottom: 16px; opacity: 0.7; }
.map-inner p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.5; margin-bottom: 4px; }

/* ---- FOOTER ---- */
footer {
  background: #0a0a14;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px 0 32px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand strong { font-size: 1.1rem; color: #fff; }
.footer-address { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 10px; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.75rem; max-width: 480px; margin: 0 auto; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero { min-height: 85vh; padding: 100px 0 60px; }
  .hero-title { font-size: 3.2rem; }
  .info-bar .row { gap: 20px; }
  .hours-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-outline-light { width: 100%; justify-content: center; }
}
