/* OutOut — London's Going Out Out */
/* Navy + Gold + White */

:root {
  --navy: #0a0f1a;
  --navy-light: #131b2e;
  --navy-mid: #1a2340;
  --gold: #d4a843;
  --gold-light: #e8c46a;
  --gold-dim: #b8922e;
  --white: #f5f5f0;
  --grey: #8a8f9a;
  --grey-light: #c5c8ce;
  --text: #e8e8e4;
  --card-bg: #111827;
  --card-border: #1e293b;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Clash Display', 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === NAV === */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(10, 15, 26, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  padding: 16px 0;
}
nav .container {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em;
  color: var(--white);
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--grey-light); font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: 8px 20px; border-radius: 6px; font-weight: 600;
  font-size: 0.85rem !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.mobile-menu { display: none; cursor: pointer; color: var(--white); font-size: 1.5rem; }

/* === HERO === */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,168,67,0.08) 0%, transparent 60%);
}
.hero-badge {
  display: inline-block; padding: 6px 16px; border-radius: 20px;
  background: rgba(212,168,67,0.1); border: 1px solid rgba(212,168,67,0.2);
  color: var(--gold); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 800;
  line-height: 1.05; letter-spacing: -0.03em;
  color: var(--white); margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold); }
.hero .tagline {
  font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--grey);
  max-width: 600px; margin: 0 auto 40px; line-height: 1.5;
}
.hero-cta {
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 8px;
  font-weight: 600; font-size: 1rem; transition: all 0.2s;
  cursor: pointer; border: none;
}
.btn-gold {
  background: var(--gold); color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid var(--card-border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* === SECTIONS === */
section { padding: 80px 0; }
.section-header {
  text-align: center; margin-bottom: 48px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800;
  color: var(--white); letter-spacing: -0.02em; margin-bottom: 12px;
}
.section-header p {
  color: var(--grey); font-size: 1.1rem; max-width: 560px; margin: 0 auto;
}
.section-label {
  color: var(--gold); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px;
}

/* === CATEGORY GRID === */
.category-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.category-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 28px 20px; text-align: center;
  transition: all 0.25s; cursor: pointer; text-decoration: none;
}
.category-card:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212,168,67,0.08);
}
.category-card .emoji { font-size: 2rem; margin-bottom: 12px; display: block; }
.category-card h3 {
  color: var(--white); font-size: 0.95rem; font-weight: 600;
}
.category-card .count {
  color: var(--grey); font-size: 0.8rem; margin-top: 4px;
}

/* === VENUE CARDS === */
.venue-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.venue-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; overflow: hidden; transition: all 0.25s;
  text-decoration: none; display: block;
}
.venue-card:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.venue-card-img {
  height: 200px; background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--gold); opacity: 0.4;
  overflow: hidden; position: relative;
}
.venue-card-img[style*="background-image"] {
  opacity: 1;
  transition: transform 0.3s ease;
}
.venue-card:hover .venue-card-img[style*="background-image"] {
  transform: scale(1.05);
}
.venue-card-body { padding: 20px; }
.venue-card-body h3 { color: var(--white); font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.venue-card-meta {
  display: flex; gap: 12px; flex-wrap: wrap;
  color: var(--grey); font-size: 0.85rem; margin-bottom: 10px;
}
.venue-card-meta span { display: flex; align-items: center; gap: 4px; }
.venue-card-body p { color: var(--grey); font-size: 0.9rem; line-height: 1.5; }
.venue-tag {
  display: inline-block; padding: 3px 10px; border-radius: 4px;
  background: rgba(212,168,67,0.1); color: var(--gold);
  font-size: 0.75rem; font-weight: 600; margin-top: 12px;
}

/* === NIGHT PLAN CARDS === */
.nightplan-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}
.nightplan-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 32px; transition: all 0.25s;
  text-decoration: none; display: block; position: relative; overflow: hidden;
}
.nightplan-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.nightplan-card:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212,168,67,0.08);
}
.nightplan-card h3 { color: var(--white); font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.nightplan-card .duration { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; }
.nightplan-card p { color: var(--grey); font-size: 0.9rem; line-height: 1.5; margin-bottom: 16px; }
.nightplan-stops {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.nightplan-stop {
  padding: 4px 10px; border-radius: 4px; font-size: 0.8rem;
  background: rgba(212,168,67,0.08); color: var(--gold-light);
  border: 1px solid rgba(212,168,67,0.15);
}

/* === NIGHT PLAN DETAIL === */
.nightplan-hero {
  padding: 140px 0 60px;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,168,67,0.06) 0%, transparent 60%);
}
.nightplan-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.nightplan-hero .meta { color: var(--gold); font-size: 1rem; margin-bottom: 8px; }
.nightplan-hero .intro { color: var(--grey); font-size: 1.1rem; max-width: 700px; line-height: 1.6; }

.itinerary { padding: 60px 0; }
.stop {
  display: flex; gap: 32px; margin-bottom: 48px; position: relative;
  padding-left: 40px;
}
.stop::before {
  content: ''; position: absolute; left: 15px; top: 40px; bottom: -48px;
  width: 2px; background: var(--card-border);
}
.stop:last-child::before { display: none; }
.stop-number {
  position: absolute; left: 0; top: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem;
}
.stop-content { flex: 1; }
.stop-time { color: var(--gold); font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.stop-content h3 { color: var(--white); font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.stop-content p { color: var(--grey); font-size: 0.95rem; line-height: 1.6; }
.stop-tip {
  margin-top: 12px; padding: 12px 16px; border-radius: 8px;
  background: rgba(212,168,67,0.06); border-left: 3px solid var(--gold);
  color: var(--gold-light); font-size: 0.85rem;
}

/* === VENUE DETAIL === */
.venue-hero {
  padding: 140px 0 40px;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,168,67,0.06) 0%, transparent 60%);
}
.venue-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 8px; }
.venue-hero .venue-category { color: var(--gold); font-weight: 600; margin-bottom: 16px; }
.venue-details-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px; margin: 24px 0;
}
.venue-detail-item {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 8px; padding: 16px; text-align: center;
}
.venue-detail-item .label { color: var(--grey); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.venue-detail-item .value { color: var(--white); font-weight: 700; font-size: 1.1rem; margin-top: 4px; }
.venue-description { 
  padding: 40px 0; max-width: 720px;
}
.venue-description p { color: var(--text); font-size: 1.05rem; line-height: 1.7; margin-bottom: 16px; }
.venue-description h2 { color: var(--white); font-size: 1.4rem; margin: 32px 0 12px; }

/* === NEWSLETTER === */
.newsletter {
  background: var(--navy-light); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 60px 40px; text-align: center;
  margin: 40px 0;
}
.newsletter h2 { color: var(--white); font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.newsletter p { color: var(--grey); margin-bottom: 24px; }
.newsletter-form {
  display: flex; gap: 12px; max-width: 480px; margin: 0 auto;
}
.newsletter-form input {
  flex: 1; padding: 14px 18px; border-radius: 8px; border: 1px solid var(--card-border);
  background: var(--navy); color: var(--white); font-size: 1rem;
  outline: none;
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  padding: 14px 28px; border-radius: 8px; background: var(--gold);
  color: var(--navy); font-weight: 700; font-size: 1rem;
  border: none; cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-light); }
.newsletter .note { color: var(--grey); font-size: 0.8rem; margin-top: 12px; }
.newsletter .success { color: var(--gold); font-weight: 600; display: none; margin-top: 16px; }

/* === FOOTER === */
footer {
  border-top: 1px solid var(--card-border); padding: 40px 0;
  margin-top: 60px;
}
.footer-content {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo { font-size: 1.2rem; font-weight: 800; color: var(--white); }
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--grey); font-size: 0.85rem; }
.footer-links a:hover { color: var(--gold); }
.footer-powered { color: var(--grey); font-size: 0.8rem; }
.footer-powered a { color: var(--gold); }

/* === CATEGORY PAGE === */
.category-hero {
  padding: 140px 0 40px;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,168,67,0.06) 0%, transparent 60%);
}
.category-hero .emoji { font-size: 3rem; margin-bottom: 16px; }
.category-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.category-hero p { color: var(--grey); font-size: 1.1rem; max-width: 600px; }

/* === ABOUT === */
.about-content { max-width: 720px; margin: 0 auto; }
.about-content p { font-size: 1.05rem; line-height: 1.7; color: var(--text); margin-bottom: 20px; }
.about-content h2 { color: var(--white); font-size: 1.5rem; margin: 40px 0 16px; }

/* === SHARE BAR === */
.share-bar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid var(--card-border);
}
.share-label {
  color: var(--grey); font-size: 0.85rem; font-weight: 500;
}
.share-btn {
  display: inline-block; padding: 8px 18px; border-radius: 6px;
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  border: 1px solid var(--card-border); background: var(--card-bg);
  color: var(--white); text-decoration: none; transition: all 0.2s;
  font-family: var(--font);
}
.share-btn:hover { border-color: var(--gold); color: var(--gold); }
.share-btn.whatsapp { border-color: #25D366; color: #25D366; }
.share-btn.whatsapp:hover { background: rgba(37,211,102,0.1); }

/* === RANKED LISTS === */
.ranked-item {
  display: flex; gap: 24px; margin-bottom: 36px;
  padding: 28px; background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; transition: border-color 0.25s;
}
.ranked-item:hover { border-color: var(--gold); }
.ranked-number {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--navy); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.2rem;
}
.ranked-content { flex: 1; }
.ranked-content h3 { color: var(--white); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.ranked-content h3 a { color: var(--white); }
.ranked-content h3 a:hover { color: var(--gold); }
.ranked-content p { color: var(--grey); font-size: 0.95rem; line-height: 1.6; }
.ranked-book {
  display: inline-block; margin-top: 12px; padding: 6px 16px;
  background: rgba(212,168,67,0.1); border: 1px solid rgba(212,168,67,0.3);
  border-radius: 6px; color: var(--gold); font-size: 0.85rem; font-weight: 600;
}
.ranked-book:hover { background: rgba(212,168,67,0.2); color: var(--gold-light); }

/* === MOBILE === */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy); border-bottom: 1px solid var(--card-border);
    padding: 20px 24px; gap: 16px;
  }
  .hero { padding: 120px 0 60px; }
  .venue-grid { grid-template-columns: 1fr; }
  .nightplan-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter { padding: 40px 24px; }
  .newsletter-form { flex-direction: column; }
  .footer-content { flex-direction: column; text-align: center; }
  .stop { padding-left: 32px; gap: 16px; }
}

@media (max-width: 480px) {
  .category-grid { grid-template-columns: 1fr; }
}
