/* Shared styles for Eventravlog site */
:root {
  --orange: #FF5A1F;
  --ink: #0E0E0E;
  --text: #1F1F1F;
  --muted: #6B6B6B;
  --line: #ECECEC;
  --peach: #FFF6EE;
  --container: 1200px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Figtree', system-ui, -apple-system, sans-serif;
  font-size: 16px; color: var(--text);
  background: #fff; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 12px 22px; border-radius: 10px;
  font-weight: 600; font-size: 14px;
  transition: transform .15s, background .2s, box-shadow .2s, color .2s;
  white-space: nowrap;
}
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: #ff4a0a; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255,90,31,.35); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* Header */
.site-header { background: var(--ink); color: #fff; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 18px;
}
.logo {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--orange); font-weight: 800;
}
.logo-text { color: #fff; font-size: 15px; letter-spacing: 2px; }
.primary-nav { display: flex; gap: 28px; }
.primary-nav a {
  color: #E9E9E9; font-size: 14px; font-weight: 500;
  position: relative; transition: color .2s;
}
.primary-nav a:hover, .primary-nav a.active { color: var(--orange); }
.primary-nav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--orange);
}
.header-cta { padding: 10px 18px; font-size: 13px; }

/* Section bases */
.section { padding: 90px 0; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head--light h2 { color: #fff; }
.eyebrow {
  display: inline-block; color: var(--orange);
  font-weight: 700; letter-spacing: 2.5px; font-size: 12px;
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800; letter-spacing: -.5px;
}
.underline-accent {
  display: inline-block; width: 56px; height: 3px;
  background: var(--orange); margin-top: 16px; border-radius: 2px;
}

/* Pill */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--orange);
  padding: 8px 14px; border-radius: 999px;
  font-size: 11px; letter-spacing: 1.4px; font-weight: 700;
  margin-bottom: 24px;
}

/* Check icon */
.check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--orange); color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}

/* Footer */
.site-footer { background: var(--ink); color: #C9C9C9; padding: 60px 0 30px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: 36px;
}
.foot-brand p { margin: 18px 0; font-size: 13px; line-height: 1.6; color: #A8A8A8; max-width: 280px; }
.foot-col h5 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.foot-col a { display: block; font-size: 13px; color: #B5B5B5; margin-bottom: 10px; transition: color .2s; }
.foot-col a:hover, .foot-col a.active { color: var(--orange); }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 32px; height: 32px; border-radius: 50%;
  background: #1F1F1F;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; transition: background .2s;
}
.socials a:hover { background: var(--orange); }
.foot-form {
  display: flex; gap: 8px;
  background: #1A1A1A; padding: 6px;
  border-radius: 10px;
}
.foot-form input {
  flex: 1; background: transparent; border: none; outline: none;
  color: #fff; padding: 10px 12px; font-size: 13px; font-family: inherit;
}
.foot-form input::placeholder { color: #777; }
.foot-form button {
  background: var(--orange); color: #fff;
  width: 40px; height: 40px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
}
.copy { font-size: 12px; color: #888; margin-top: 18px; }

/* Toast */
.toast {
  position: fixed; bottom: 26px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff;
  padding: 12px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 500;
  opacity: 0; pointer-events: none;
  transition: all .25s ease;
  z-index: 200;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .header-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}
