/* ════════════════════════════════════════════════════════════
   SOFTICKETS — components.css
   Shared structural chrome: top navigation, mobile menu,
   and both footer variants (full footer on index.html,
   condensed footer-mini on secondary pages).
   Loaded on every page, after styles.css.
   ════════════════════════════════════════════════════════════ */

/* ── NAV ──────────────────────────────────────── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  background:rgba(11,26,51,0.97);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,0.06);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 5%;height:68px;transition:border-color .3s,box-shadow .3s;
}
nav.scrolled{box-shadow:0 4px 20px rgba(0,0,0,.2);border-bottom-color:rgba(255,255,255,.1);}
.nav-logo{display:flex;align-items:center;gap:10px;text-decoration:none;}
.nav-logo-icon{width:36px;height:36px;background:var(--red);border-radius:8px;display:flex;align-items:center;justify-content:center;transition:transform .2s;overflow:hidden;}
.nav-logo-icon:hover{transform:scale(1.05);}
.nav-logo-icon svg{width:22px;height:22px;fill:white;}
.nav-logo-text{font-family:var(--font-display);font-weight:700;font-size:1.2rem;color:var(--white);letter-spacing:-0.01em;}
.nav-links{display:flex;align-items:center;gap:2rem;list-style:none;}
.nav-links a{color:rgba(255,255,255,0.7);text-decoration:none;font-size:.875rem;font-weight:500;transition:color .2s;}
.nav-links a:hover{color:var(--white);}
.nav-cta{background:var(--red)!important;color:var(--white)!important;padding:.45rem 1.1rem;border-radius:6px;font-weight:600!important;transition:background .2s!important;}
.nav-cta:hover{background:var(--red-dark)!important;}

.nav-hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none;padding:4px;position:relative;z-index:201;}
.nav-hamburger span{display:block;width:24px;height:2px;background:var(--white);border-radius:2px;transition:transform .3s,opacity .3s;transform-origin:center;pointer-events:none;}
.nav-hamburger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px);}
.nav-hamburger.active span:nth-child(2){opacity:0;transform:scaleX(0);}
.nav-hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px);}

/* ── MOBILE MENU ──────────────────────────────── */
.mobile-menu{
  display:none;position:fixed;top:68px;left:0;right:0;
  background:rgba(11,26,51,.98);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  padding:1.5rem 5%;z-index:199;border-bottom:1px solid rgba(255,255,255,.08);
  max-height:calc(100vh - 68px);overflow-y:auto;
}
.mobile-menu.open{display:block;}
.mobile-menu ul{list-style:none;display:flex;flex-direction:column;gap:1rem;}
.mobile-menu ul a{color:rgba(255,255,255,.8);text-decoration:none;font-size:1rem;font-weight:500;display:block;padding:.4rem 0;}
.mobile-menu ul a:hover{color:#fff;}

/* ── FOOTER (full — index.html) ───────────────── */
footer{background:var(--charcoal);color:rgba(255,255,255,.5);padding:4rem 5% 2rem;}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;max-width:1100px;margin:0 auto 3rem;}
.footer-brand p{font-size:.875rem;line-height:1.7;margin:1rem 0 1.5rem;max-width:280px;}
.footer-contact{display:flex;flex-direction:column;gap:6px;}
.footer-contact a{color:rgba(255,255,255,.5);text-decoration:none;font-size:.82rem;transition:color .2s;}
.footer-contact a:hover{color:var(--white);}
.footer-col h4{font-family:var(--font-display);font-size:.8rem;font-weight:700;color:var(--white);text-transform:uppercase;letter-spacing:.06em;margin-bottom:1rem;}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:.55rem;}
.footer-col ul a{color:rgba(255,255,255,.45);text-decoration:none;font-size:.875rem;transition:color .2s;}
.footer-col ul a:hover{color:var(--white);}
.footer-bottom{border-top:1px solid rgba(255,255,255,.07);padding-top:2rem;display:flex;justify-content:space-between;align-items:center;gap:1rem;flex-wrap:wrap;max-width:1100px;margin:0 auto;}
.footer-bottom p{font-size:.8rem;}
.footer-bottom-links{display:flex;gap:1.5rem;flex-wrap:wrap;}
.footer-bottom-links a{color:rgba(255,255,255,.4);text-decoration:none;font-size:.8rem;transition:color .2s;}
.footer-bottom-links a:hover{color:var(--white);}
.footer-logo{display:flex;align-items:center;gap:8px;text-decoration:none;margin-bottom:.5rem;}
.footer-logo-icon{width:32px;height:32px;background:var(--red);border-radius:7px;display:flex;align-items:center;justify-content:center;overflow:hidden;}
.footer-logo-icon svg{width:18px;height:18px;fill:white;}
.footer-logo-text{font-family:var(--font-display);font-weight:700;font-size:1.1rem;color:var(--white);}
.reg-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(212,167,44,.08);border:1px solid rgba(212,167,44,.25);border-radius:6px;padding:4px 10px;font-size:.72rem;color:rgba(240,201,74,.85);margin-top:.75rem;}
.footer-social{display:flex;gap:.75rem;margin-top:1rem;}
.footer-social a{width:36px;height:36px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.1);border-radius:8px;display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.55);text-decoration:none;transition:all .2s;cursor:pointer;}
.footer-social a:hover{background:var(--red);border-color:var(--red);color:var(--white);transform:translateY(-2px);}
.footer-social a svg{width:16px;height:16px;flex-shrink:0;}

/* ── FOOTER (condensed — secondary pages) ─────── */
.footer-mini{max-width:1100px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1.5rem;}
.footer-links{display:flex;gap:1.6rem;flex-wrap:wrap;list-style:none;}
.footer-links a{color:rgba(255,255,255,.5);text-decoration:none;font-size:.85rem;transition:color .2s;}
.footer-links a:hover{color:#fff;}
.footer-bottom-mini{max-width:1100px;margin:2rem auto 0;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,.07);font-size:.78rem;text-align:center;}
