@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700&display=swap');

body {
  font-family: 'Satoshi', 'Inter', Arial, sans-serif;
  background: #fff;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
}

.hero-gradient {
  background: linear-gradient(110deg, #fff9e6 70%, #ffe4e1 100%);
  padding-bottom: 64px;
}

/* =========================
   HOMEPAGE MARKETING NAV (SCOPED)
   ========================= */
.home-marketing {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(31,41,55,0.06);
  position: sticky;
  top: 0;
  z-index: 1001;
  padding: 0;
  min-height: 74px;
  border-bottom: 1px solid #f0f0f0;
}

.home-marketing .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  position: relative;
}
.home-marketing .logo img {
  height: 54px;
  margin-right: 54px;
}
.home-marketing a {
  display: flex-end;
  align-items: right;
  white-space: nowrap;
  line-height: 1;
  color: #18181b;
  text-decoration: none;
  margin: 0 18px;
  font-weight: 500;
  font-size: 1.02rem;
  transition: color 0.13s;
}
.home-marketing a:hover,
.home-marketing .signup-btn:hover { color: #ff7a1c; }
.home-marketing .signup-btn {
  background: #ff7a1c;
  color: #fff !important;
  border-radius: 24px;
  padding: 12px 32px;
  font-weight: 600;
  box-shadow: 0 2px 18px 0 rgba(255,122,28,0.10);
  margin-left: 22px;
  transition: background 0.14s, box-shadow 0.13s;
}
.home-marketing .signup-btn:hover {
  background: #ff8600;
  box-shadow: 0 4px 20px 0 rgba(255,122,28,0.12);
}

/* Hamburger */
.home-marketing .hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 18px;
  z-index: 1101;
  position: relative;
}
.home-marketing .hamburger span {
  height: 3px;
  width: 28px;
  background: #18181b;
  border-radius: 3px;
  margin: 5px 0;
  display: block;
  transition: 0.2s;
}

/* Responsive menu */
@media (max-width: 900px) {
  .home-marketing .nav-inner {
    flex-wrap: wrap;
    padding: 0 10px;
  }
  .home-marketing .nav-links {
    display: flex;
    position: absolute;
    right: 14px;
    align-items: right;
    top: 70px;
    background: #fff;
    box-shadow: 0 4px 32px 0 rgba(31,41,55,0.11);
    border-radius: 16px;
    padding: 26px 20px 18px 20px;
    flex-direction: column;
    gap: 28px;
    min-width: 175px;
    z-index: 1002;
    animation: fadeInNav 0.18s;
  }
  .home-marketing .nav-links.open { display: flex; }
  .home-marketing .hamburger { display: flex; }

  /* Stack auth buttons on mobile */
  .home-marketing .nav-links .login-link,
  .home-marketing .nav-links .signup-btn {
    margin-left: 0;
    margin-bottom: 8px;
    width: 100%;
    text-align: center;
  }
}

@keyframes fadeInNav {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0);   }
}

/* Auth button */
.home-marketing .login-link {
  color: #ff7a1c;
  background: transparent;
  border: 2px solid #ff7a1c;
  border-radius: 24px;
  padding: 10px 26px;
  font-weight: 500;
  margin-left: 10px;
  margin-right: 0;
  transition: background 0.14s, color 0.14s, border-color 0.14s;
  text-decoration: none;
  display: inline-block;
}
.home-marketing .login-link:hover {
  background: #fff5ea;
  color: #ff8600;
  border-color: #ff8600;
}

/* =========================
   HOMEPAGE SECTIONS
   ========================= */
.editorial-hero {
  background: linear-gradient(105deg, #fdf6e7 60%, #fdf1ee 100%);
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px 0;
}
.hero-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
  position: relative;
}
.editorial-hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 18px; }
.tagline { font-size: 1.25rem; color: #493c20; margin-bottom: 40px; }
.search-form { display: flex; max-width: 460px; margin: 0 auto 26px; }
.search-form input[type="text"] { flex: 1; padding: 15px 22px; border: 1.5px solid #ececec; border-radius: 32px 0 0 32px; font-size: 1.08rem; }
.search-form input[type="text"]:focus { border-color: #ff7a1c; }
.search-form button { background: #ff7a1c; color: #fff; font-weight: 600; border: none; border-radius: 0 32px 32px 0; padding: 0 28px; font-size: 1.07rem; transition: background 0.13s; }
.search-form button:hover { background: #ff8600; }
.cta-btn { background: #ff7a1c; color: #fff; border-radius: 28px; padding: 14px 46px; font-weight: 600; text-decoration: none; font-size: 1.15rem; margin-top: 12px; display: inline-block; box-shadow: 0 2px 18px 0 rgba(255,122,28,0.11); transition: background 0.13s, box-shadow 0.13s; letter-spacing: 0.01em;}
.cta-btn:hover { background: #ff8600; box-shadow: 0 4px 20px 0 rgba(255,122,28,0.13);}
.cta-btn-outline { background: #fff; color: #ff7a1c; border: 2px solid #ff7a1c; box-shadow: none;}
.cta-btn-outline:hover { background: #fffaee; color: #ff8600; }

.why-timbuktu { background: #fff; padding: 60px 0 60px 0; }
.why-inner { max-width: 1020px; margin: 0 auto; display: flex; gap: 64px; }
.why-left { flex: 2; }
.why-left h2 { font-size: 2rem; margin-bottom: 10px; }
.why-left p { font-size: 1.13rem; color: #6a5c3a; }
.why-right { flex: 2; display: flex; flex-direction: column; gap: 19px; justify-content: center;}
.why-benefit { background: #fff8ec; padding: 16px 18px; border-radius: 18px; font-weight: 500; font-size: 1.07rem; color: #b17624; display: flex; align-items: center; box-shadow: 0 3px 18px #ffe3bc2e;}
.why-benefit span { font-size: 1.45rem; margin-right: 12px; }

@media (max-width:900px) {
  .why-inner { flex-direction: column; gap: 34px; }
}

.how-steps { background: #f9f6f2; padding: 58px 0; }
.how-steps h2 { text-align: center; margin-bottom: 34px; }
.steps-timeline { display: flex; justify-content: center; gap: 34px; max-width: 1100px; margin: 0 auto; }
.step { background: #fff; border-radius: 20px; box-shadow: 0 4px 18px #f6d6ad28; padding: 22px 32px 18px 26px; text-align: center; width: 220px; position: relative;}
.step-num { position: absolute; left: 10px; top: 12px; background: #ffefe0; color: #ff8600; width: 33px; height: 33px; border-radius: 50%; font-weight: bold; display: flex; align-items: center; justify-content: center;}
.step-icon { font-size: 2.1rem; margin-bottom: 8px; margin-top: 10px; }
.step-content h4 { font-size: 1.11rem; font-weight: bold; margin-bottom: 5px;}
.step-content p { font-size: 0.97rem; color: #937047;}
@media (max-width: 900px) { .steps-timeline { flex-direction: column; gap: 22px; align-items: center;} .step { width: 100%; } }

.feature-block { padding: 80px 0 40px 0; }
.feature-block-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 48px; }
.artist-block { background: #fff8ed; }
.venue-block { background: #f1f5ff; }
.feature-img { width: 320px; min-width: 220px; min-height: 240px; border-radius: 38px; background: #fff7e8; box-shadow: 0 8px 32px 0 #ffdba5a4; }
.artist-img { background: url('https://images.unsplash.com/photo-1464983953574-0892a716854b?auto=format&fit=facearea&w=700&q=80') center/cover no-repeat; }
.venue-img { background: url('https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?auto=format&fit=facearea&w=700&q=80') center/cover no-repeat; }
.feature-text { flex: 2; }
.feature-text h2 { font-size: 2rem; margin-bottom: 6px; }
.feature-text h4 { font-size: 1.18rem; margin-bottom: 13px; color: #b17624;}
.feature-text ul { margin: 0 0 18px 0; padding: 0 0 0 22px;}
.feature-text li { margin-bottom: 9px; font-size: 1.03rem; color: #8b6a29; }
@media (max-width:950px) {
  .feature-block-inner { flex-direction: column; gap: 18px;}
  .feature-img { width: 100%; min-width: 0;}
}

.events-section { background: #f8fafd; padding: 65px 0 44px 0; }
.events-section h2 { text-align: center; margin-bottom: 34px;}
.event-card-grid { display: flex; justify-content: center; gap: 34px; flex-wrap: wrap; max-width: 1100px; margin: 0 auto 38px auto;}
.event-card { background: #fff; border-radius: 22px; box-shadow: 0 4px 24px #fde1c829; padding: 28px 22px 16px 22px; width: 270px; min-width: 220px; }
.event-badge { font-size: 0.97rem; font-weight: 600; border-radius: 16px; padding: 5px 18px; margin-bottom: 11px; display: inline-block; }
.event-badge.band { color: #ff8400; background: #fff3e1; }
.event-badge.comedy { color: #ffd000; background: #fffded;}
.event-badge.jazz { color: #7b5fff; background: #edeaff;}
.event-title { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px;}
.event-meta { font-size: 0.98rem; color: #61512e;}
.event-meta span { display: block; font-size: 0.97rem; color: #b7a07d;}
.center-btn { text-align: center; }

.trusted-section { background: #fff; padding: 58px 0 18px 0; text-align: center;}
.trusted-logos { display: flex; gap: 24px; justify-content: center; margin-bottom: 18px; flex-wrap: wrap;}
.trusted-logos span { background: #fff6ed; border-radius: 12px; padding: 12px 24px; font-weight: 600; font-size: 1rem; box-shadow: 0 2px 8px #fbe9dd;}
.trusted-stats { color: #7d6d50; font-size: 0.98rem; margin-bottom: 0;}

footer { background: #faf8f6; border-top: 2px solid #f5e9de; margin-top: 50px; padding: 44px 0 16px 0; text-align: center; font-size: 0.98rem; color: #937047; border-radius: 48px 48px 0 0; box-shadow: 0 -2px 24px 0 rgba(255,138,63,0.06);}
footer a { color: #ff7a1c; text-decoration: underline; margin: 0 10px;}
footer a:hover { color: #ff8600; }

@media (max-width: 800px) {
  .why-inner, .feature-block-inner, .event-card-grid, .trusted-logos { flex-direction: column; gap: 22px;}
  .feature-img, .event-card { width: 100%;}
}
@media (max-width: 480px) {
  .editorial-hero h1 { font-size: 1.2rem; }
  .tagline { font-size: 0.97rem; }
  .why-left h2, .feature-text h2, .how-steps h2, .events-section h2, .trusted-section h2 { font-size: 1rem;}
}
