/* ==========================================================================
   TAADA National Conclave 2026 — Custom styles layered on top of Tailwind.
   ========================================================================== */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, .font-heading {
  font-family: 'Poppins', sans-serif;
}

::selection {
  background: #C7A253;
  color: #0A1E3C;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ---------------------------------- Layout ---------------------------------- */
.container-x {
  max-width: 90rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .container-x { padding-inline: 2.5rem; }
}

.section {
  padding-block: 5rem;
}
@media (min-width: 768px) {
  .section { padding-block: 7rem; }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #C7A253;
  color: #0A1E3C;
  padding: 0.75rem 1.25rem;
  z-index: 100;
  font-weight: 600;
  border-radius: 0 0 0.5rem 0;
}
.skip-link:focus {
  left: 0;
}

/* ---------------------------------- Header ---------------------------------- */
#site-header {
  background: transparent;
}
#site-header.scrolled {
  background: rgba(6, 15, 31, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -15px rgba(0,0,0,0.4);
}
.nav-link {
  position: relative;
  transition: color .2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: #C7A253;
  transition: width .25s ease;
}
.nav-link:hover {
  color: #fff;
}
.nav-link:hover::after {
  width: 100%;
}
.mobile-nav-link:hover {
  color: #E7CE8E;
}

/* ---------------------------------- Hero ---------------------------------- */
.hero-bg {
  background: radial-gradient(ellipse at top right, #132A4D 0%, #0A1E3C 45%, #060F1F 100%);
}
.hero-pattern {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.14) 1px, transparent 0);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.15));
}
.hero-gradient {
  background: linear-gradient(180deg, rgba(6,15,31,0) 0%, rgba(6,15,31,0.5) 75%, #060F1F 100%);
}

.gold-gradient-text {
  background: linear-gradient(90deg, #E7CE8E, #C7A253 55%, #9C7B37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-card {
  display: inline-flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(199,162,83,0.14), rgba(255,255,255,0.04));
  border: 1px solid rgba(199,162,83,0.4);
  border-radius: 1.1rem;
  padding: 1.1rem 1.4rem;
}
.pricing-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0A1E3C;
  background: linear-gradient(90deg, #E7CE8E, #C7A253);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.pricing-row {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.price-old {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}
.price-new {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}
.price-gst {
  font-size: 0.8rem;
  font-weight: 500;
  color: #E7CE8E;
}
.pricing-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.info-pill {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1rem;
  padding: 0.75rem 1.1rem;
  backdrop-filter: blur(6px);
}

.countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(199,162,83,0.3);
  border-radius: 0.85rem;
  padding: 0.75rem 0.25rem;
}
.countdown-box span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
}
.countdown-box small {
  margin-top: 0.35rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.animate-bounce-slow {
  animation: bounceSlow 2.4s infinite;
}
@keyframes bounceSlow {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------------------------------- Ticker ---------------------------------- */
.ticker-track {
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------------------------------- Typography helpers ---------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9C7B37;
}
.section-title {
  margin-top: 0.6rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.85rem;
  line-height: 1.2;
  color: #0A1E3C;
}
@media (min-width: 768px) {
  .section-title { font-size: 2.5rem; }
}

/* ---------------------------------- About ---------------------------------- */
.stat-card {
  border: 1px solid #E7E4DC;
  border-radius: 1rem;
  padding: 1rem 0.75rem;
  text-align: center;
  background: #fff;
}
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  color: #0A1E3C;
}
.stat-label {
  margin-top: 0.25rem;
  font-size: 0.68rem;
  color: #5B6B84;
  line-height: 1.3;
}

.quote-card {
  background: linear-gradient(160deg, #132A4D, #0A1E3C);
  border: 1px solid rgba(199,162,83,0.3);
  border-radius: 1.5rem;
  padding: 2.25rem;
  box-shadow: 0 25px 65px -18px rgba(10,30,60,0.4);
}

/* ---------------------------------- Feature cards ---------------------------------- */
.feature-card {
  background: #fff;
  border: 1px solid #ECE9E1;
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px -20px rgba(10,30,60,0.25);
  border-color: rgba(199,162,83,0.4);
}
.feature-icon {
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, #0A1E3C, #132A4D);
  color: #C7A253;
  margin-bottom: 1.1rem;
}
.feature-icon svg { width: 1.6rem; height: 1.6rem; }
.feature-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #0A1E3C;
}
.feature-text {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #5B6B84;
  line-height: 1.55;
}

/* ---------------------------------- Timeline (Highlights) ---------------------------------- */
.timeline-line {
  position: absolute;
  left: 11px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, rgba(199,162,83,0.6), rgba(199,162,83,0.1));
}
@media (min-width: 768px) {
  .timeline-line { left: 15px; }
}
.timeline-item {
  position: relative;
  padding-left: 2.75rem;
}
.timeline-dot {
  position: absolute;
  left: 4px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 999px;
  background: #0A1E3C;
  border: 3px solid #7FB93A;
}
.timeline-dot-gold {
  border-color: #C7A253;
}
.timeline-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 1.1rem 1.3rem;
  transition: background .3s ease, border-color .3s ease;
}
.timeline-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(199,162,83,0.35);
}
.timeline-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A6D66C;
}

/* ---------------------------------- Speakers ---------------------------------- */
.speaker-card {
  background: #fff;
  border: 1px solid #ECE9E1;
  border-radius: 1.25rem;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.speaker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px -20px rgba(10,30,60,0.25);
}
.speaker-photo {
  width: 5.5rem; height: 5.5rem;
  margin: 0 auto 1.1rem;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(135deg, #0A1E3C, #7FB93A);
  border: 3px solid #E7CE8E;
}
.speaker-photo-tba {
  background: linear-gradient(135deg, #4C6892, #132A4D);
  color: #E7CE8E;
}
.speaker-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #0A1E3C;
}
.speaker-role {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: #5B6B84;
}

/* ---------------------------------- Schedule ---------------------------------- */
.schedule-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border: 1px solid #ECE9E1;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.schedule-row:hover {
  box-shadow: 0 15px 35px -18px rgba(10,30,60,0.25);
  border-color: rgba(199,162,83,0.35);
}
.schedule-row-highlight {
  background: linear-gradient(90deg, #FBF7EE, #FFFFFF);
  border-color: rgba(199,162,83,0.5);
}
.schedule-time {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: #0A1E3C;
}
.schedule-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: #0A1E3C;
}
.schedule-desc {
  margin-top: 0.15rem;
  font-size: 0.82rem;
  color: #5B6B84;
}
.schedule-duration {
  font-size: 0.72rem;
  font-weight: 600;
  color: #5B6B84;
  background: #F1EFE8;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .schedule-row { grid-template-columns: 1fr; }
  .schedule-duration { justify-self: start; }
}

/* ---------------------------------- Partners ---------------------------------- */
.partner-group-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9C7B37;
  margin-bottom: 1.25rem;
}
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 72px;
  padding: 0 1.5rem;
  border: 1px solid #ECE9E1;
  border-radius: 0.85rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0A1E3C;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.logo-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -16px rgba(10,30,60,0.3);
}
.logo-chip-placeholder {
  color: #9AA6B8;
  border-style: dashed;
  font-weight: 500;
  font-size: 0.8rem;
}

/* ---------------------------------- Sponsors ---------------------------------- */
.sponsor-tile {
  height: 90px;
  border: 1px dashed rgba(199,162,83,0.4);
  border-radius: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255,255,255,0.03);
  transition: border-color .25s ease, background .25s ease;
}
.sponsor-tile:hover {
  border-color: rgba(199,162,83,0.8);
  background: rgba(255,255,255,0.06);
}
.sponsor-tile-lg {
  height: 120px;
  font-size: 1rem;
}
.sponsor-tile-sm {
  height: 70px;
  font-size: 0.7rem;
}

/* ---------------------------------- Gallery ---------------------------------- */
.gallery-masonry {
  columns: 1;
  gap: 1rem;
}
@media (min-width: 640px) { .gallery-masonry { columns: 2; } }
@media (min-width: 1024px) { .gallery-masonry { columns: 3; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: linear-gradient(155deg, #0A1E3C, #7FB93A 130%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  transition: transform .35s ease;
}
.gallery-item::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.18) 1px, transparent 0);
  background-size: 18px 18px;
}
.gallery-item:hover {
  transform: scale(1.02);
}
.gallery-item span {
  position: relative;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  background: rgba(6,15,31,0.45);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* ---------------------------------- FAQ ---------------------------------- */
.faq-item {
  border: 1px solid #ECE9E1;
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0A1E3C;
  background: transparent;
  border: none;
  cursor: pointer;
}
.faq-icon {
  width: 1.15rem; height: 1.15rem;
  flex-shrink: 0;
  color: #9C7B37;
  transition: transform .3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.4rem;
}
.faq-item.open .faq-answer {
  max-height: 320px;
  padding: 0 1.4rem 1.25rem;
}
.faq-answer p {
  font-size: 0.9rem;
  color: #5B6B84;
  line-height: 1.6;
}

/* ---------------------------------- Contact ---------------------------------- */
.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.1rem;
  padding: 1.5rem;
  text-align: center;
  transition: background .25s ease, border-color .25s ease;
}
.contact-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(199,162,83,0.4);
}
.contact-icon {
  width: 1.8rem; height: 1.8rem;
  margin: 0 auto 0.85rem;
  color: #C7A253;
}

/* ---------------------------------- Footer ---------------------------------- */
.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-link {
  color: rgba(255,255,255,0.6);
  transition: color .2s ease;
}
.footer-link:hover {
  color: #E7CE8E;
}
.social-icon {
  width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.social-icon svg { width: 1.05rem; height: 1.05rem; }
.social-icon:hover {
  background: #C7A253;
  color: #0A1E3C;
  transform: translateY(-2px);
}

/* ---------------------------------- Floating elements ---------------------------------- */
.fab {
  position: fixed;
  z-index: 40;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px -12px rgba(0,0,0,0.4);
  transition: transform .25s ease, opacity .25s ease;
}
.fab svg { width: 1.5rem; height: 1.5rem; }

.fab-whatsapp {
  left: 1.25rem;
  bottom: 1.25rem;
  background: #25D366;
  color: #fff;
}
.fab-whatsapp:hover {
  transform: scale(1.08);
}

.fab-top {
  right: 1.25rem;
  bottom: 1.25rem;
  background: #0A1E3C;
  color: #E7CE8E;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.fab-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.fab-top:hover {
  transform: scale(1.08);
}

.sticky-register {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 45;
  padding: 0.75rem 1rem;
  background: rgba(6,15,31,0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(199,162,83,0.3);
  transform: translateY(100%);
  transition: transform .3s ease;
}
.sticky-register.visible {
  transform: translateY(0);
}
@media (min-width: 1024px) {
  .sticky-register { display: none; }
}

/* ---------------------------------- Scroll reveal ---------------------------------- */
.reveal {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal[data-reveal="up"] { transform: translateY(28px); }
.reveal[data-reveal="left"] { transform: translateX(-28px); }
.reveal.reveal-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ---------------------------------- Scrollbar ---------------------------------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #F8F7F3; }
::-webkit-scrollbar-thumb { background: #C7A253; border-radius: 999px; }
