/* ============================================================
   SheArose Summit — Main Stylesheet
   Brand: Orange #FF6B00 | Purple #6B21A8 | White | Lavender #f5f0ff
   ============================================================ */

:root {
  --orange:      #FF6B00;
  --orange-dark: #d95a00;
  --purple:      #6B21A8;
  --purple-dark: #4c1878;
  --purple-light:#9b4dca;
  --lavender:    #f5f0ff;
  --white:       #ffffff;
  --dark:        #1a1a2e;
  --gray:        #6c757d;
  --light-gray:  #f8f9fa;
  --font-display: 'Playfair Display', serif;
  --font-body:    'Poppins', sans-serif;
  --radius:       12px;
  --shadow:       0 4px 24px rgba(107,33,168,.12);
  --shadow-lg:    0 8px 40px rgba(107,33,168,.18);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: #fff;
  line-height: 1.7;
}
body.mobile-menu-open { overflow: hidden; }

/* ---- Top Bar ---- */
.top-bar {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  font-size: 12px;
  z-index: 1100;
}
.social-icons-top a {
  color: rgba(255,255,255,.7);
  margin-left: 10px;
  font-size: 13px;
  transition: color .2s;
}
.social-icons-top a:hover { color: var(--orange); }

/* ---- Navbar ---- */
#mainNav {
  background: rgba(26,26,46,.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--orange);
  z-index: 1000;
  padding: 10px 0;
  transition: all .3s;
}
#mainNav.scrolled {
  background: rgba(26,26,46,1);
  padding: 6px 0;
}
.navbar-brand .brand-she    { color: var(--orange); font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; }
.navbar-brand .brand-arose  { color: var(--purple-light); font-family: var(--font-body); font-size: 1.4rem; font-weight: 700; letter-spacing: 2px; }
.navbar-brand .brand-summit { color: rgba(255,255,255,.6); font-size: .65rem; letter-spacing: 4px; text-transform: uppercase; }
.nav-link {
  color: rgba(255,255,255,.85) !important;
  font-size: .9rem;
  font-weight: 500;
  padding: 6px 12px !important;
  border-radius: 6px;
  transition: all .2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--orange) !important;
  background: rgba(255,107,0,.08);
}
.btn-register {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff !important;
  border: none;
  border-radius: 25px;
  padding: 8px 22px !important;
  font-weight: 600;
  font-size: .88rem;
  box-shadow: 0 2px 12px rgba(255,107,0,.35);
  transition: all .2s;
}
.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255,107,0,.45);
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
}

@media (max-width: 991.98px) {
  #mainNav {
    z-index: 1200;
  }

  #mainNav .navbar-brand,
  #mainNav .navbar-toggler {
    position: relative;
    z-index: 1220;
  }

  #mainNav .navbar-toggler {
    border-color: rgba(255,255,255,.35);
    box-shadow: none;
  }

  #navbarMain {
    position: fixed;
    inset: 0;
    z-index: 1210;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    padding: 96px 24px 40px;
    background:
      radial-gradient(ellipse at 70% 22%, rgba(255,107,0,.2), transparent 45%),
      linear-gradient(135deg, rgba(26,26,46,.98), rgba(76,24,120,.98));
    overflow-y: auto;
  }

  #navbarMain.collapse:not(.show) {
    display: none;
  }

  #navbarMain.collapsing,
  #navbarMain.show {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #navbarMain.collapsing {
    height: 100dvh !important;
    transition: none;
  }

  #navbarMain .navbar-nav {
    width: 100%;
    min-height: 0 !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center;
  }

  #navbarMain .nav-link {
    display: inline-flex;
    justify-content: center;
    min-width: 190px;
    padding: 7px 20px !important;
    font-size: 1rem;
    border-radius: 8px;
  }

  #navbarMain .btn-register {
    margin-top: 4px;
    padding: 8px 26px !important;
  }
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, #1a1a2e 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/banners/hero-bg.jpg') center/cover no-repeat; /* File: assets/images/banners/hero-bg.jpg */
  opacity: .18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,107,0,.18) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  background: rgba(255,107,0,.15);
  border: 1px solid rgba(255,107,0,.4);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.hero-title .highlight { color: var(--orange); }
.hero-theme {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,.8);
  font-style: italic;
  margin: 16px 0 28px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-size: .92rem;
}
.hero-meta-item i { color: var(--orange); font-size: 1.1rem; }
.btn-hero-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 36px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(255,107,0,.4);
  transition: all .25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,0,.5);
  color: #fff;
}
.btn-hero-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 30px;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 1rem;
  transition: all .25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-hero-secondary.btn-on-light {
  color: var(--purple);
  border-color: rgba(107,33,168,.45);
  background: rgba(107,33,168,.03);
}
.btn-hero-secondary.btn-on-light:hover {
  color: #fff;
  border-color: var(--purple);
  background: var(--purple);
  box-shadow: 0 6px 20px rgba(107,33,168,.22);
}

/* Countdown */
.countdown-wrap { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.countdown-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
  min-width: 72px;
  backdrop-filter: blur(4px);
}
.countdown-box .num { font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; }
.countdown-box .lbl { font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 4px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-10px)} }
.scroll-indicator i { color: rgba(255,255,255,.5); font-size: 1.5rem; }

/* ---- Section Styles ---- */
.section-eyebrow {
  display: inline-block;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.section-title .accent { color: var(--purple); }
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--purple));
  border-radius: 2px;
  margin: 12px 0 20px;
}
.section-divider.mx-auto { margin-left: auto; margin-right: auto; }
.summit-description > :last-child { margin-bottom: 0; }
.summit-description ul,
.summit-description ol { padding-left: 1.35rem; }

/* ---- Stats Section ---- */
.stats-section {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  padding: 60px 0;
}
.stat-card { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat-label { color: rgba(255,255,255,.75); font-size: .9rem; margin-top: 4px; }

/* ---- About / Feature Cards ---- */
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-bottom: 3px solid transparent;
  transition: all .3s;
  height: 100%;
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--orange);
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255,107,0,.12), rgba(107,33,168,.12));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.feature-icon i { font-size: 1.5rem; color: var(--orange); }

.purpose-card {
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow);
  height: 100%;
  text-align: center;
}
.purpose-icon { margin-left: auto; margin-right: auto; }
.purpose-image-wrap {
  height: 100%;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.purpose-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.purpose-card--objective {
  background: #fff5ed;
  border-top: 4px solid var(--orange);
}
.purpose-card--mission {
  background: #f5eefb;
  border-top: 4px solid var(--purple);
}

/* ---- Speaker Cards ---- */
.speaker-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .3s;
  height: 100%;
}
.speaker-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.speaker-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
}
.speaker-img-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--lavender), rgba(107,33,168,.15));
  display: flex;
  align-items: center;
  justify-content: center;
}
.speaker-img-placeholder i { font-size: 5rem; color: rgba(107,33,168,.3); }
.speaker-info { padding: 20px; }
.speaker-name { font-weight: 700; font-size: 1.05rem; color: var(--dark); margin-bottom: 2px; }
.speaker-title { font-size: .85rem; color: var(--gray); }
.speaker-org { font-size: .82rem; color: var(--purple); font-weight: 500; margin-top: 2px; }
.speaker-type-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.badge-keynote { background: rgba(255,107,0,.12); color: var(--orange); }
.badge-panelist { background: rgba(107,33,168,.12); color: var(--purple); }
.badge-workshop { background: rgba(0,150,100,.12); color: #009664; }

/* ---- Schedule ---- */
.schedule-day-card {
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.schedule-day-card:hover, .schedule-day-card.is-active {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.schedule-panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 32px 32px;
}

.schedule-tabs .nav-tabs {
  border-bottom: none;
  gap: 10px;
  padding: 20px 0 24px;
  flex-wrap: wrap;
}
.schedule-tabs .nav-link {
  color: var(--gray) !important;
  border: 1.5px solid rgba(107,33,168,.15);
  padding: 9px 22px !important;
  font-weight: 700;
  font-size: .88rem;
  border-radius: 30px;
  background: var(--white);
  transition: all .2s;
}
.schedule-tabs .nav-link:hover { border-color: var(--orange); color: var(--orange) !important; }
.schedule-tabs .nav-link.active {
  color: #fff !important;
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 4px 14px rgba(255,107,0,.35);
}
.schedule-tabs .nav-link.day-accent-1.active { background: linear-gradient(135deg, var(--purple), var(--purple-dark)); box-shadow: 0 4px 14px rgba(107,33,168,.35); }
.schedule-tabs .nav-link.day-accent-2.active { background: linear-gradient(135deg, #2a2a45, var(--dark)); box-shadow: 0 4px 14px rgba(26,26,46,.35); }

.session-row {
  display: flex;
  gap: 24px;
  padding: 18px 20px;
  margin-bottom: 10px;
  align-items: flex-start;
  background: var(--light-gray);
  border-radius: 10px;
  border-left: 4px solid #d8d8e0;
  transition: background .2s, transform .2s;
}
.session-row:hover { background: var(--lavender); transform: translateX(3px); }
.session-row:last-child { margin-bottom: 0; }

.type-row-keynote     { border-left-color: var(--orange); }
.type-row-workshop    { border-left-color: #009664; }
.type-row-panel       { border-left-color: var(--purple); }
.type-row-opening, .type-row-closing { border-left-color: var(--orange-dark); }
.type-row-networking  { border-left-color: #0078c8; }
.type-row-awards, .type-row-gala { border-left-color: #c89000; }
.type-row-break       { border-left-color: #bbb; }

.session-time {
  min-width: 92px;
  color: var(--dark);
  font-weight: 700;
  font-size: .92rem;
  padding-top: 2px;
  text-align: right;
  border-right: 1px solid rgba(107,33,168,.12);
  padding-right: 16px;
}
.session-time small { font-weight: 500; color: var(--gray); }
.session-content { flex: 1; }
.session-title { font-weight: 700; color: var(--dark); font-size: 1.02rem; margin-bottom: 4px; }
.session-type-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.type-keynote  { background: rgba(255,107,0,.12); color: var(--orange); }
.type-workshop { background: rgba(0,150,100,.1); color: #009664; }
.type-panel    { background: rgba(107,33,168,.1); color: var(--purple); }
.type-opening, .type-closing { background: rgba(255,107,0,.08); color: var(--orange-dark); }
.type-networking { background: rgba(0,120,200,.1); color: #0078c8; }
.type-awards, .type-gala { background: rgba(255,200,0,.15); color: #c89000; }
.type-break { background: #f0f0f0; color: #999; }

@media (max-width: 576px) {
  .schedule-panel { padding: 8px 16px 20px; }
  .session-row { flex-direction: column; gap: 8px; }
  .session-time { text-align: left; border-right: none; padding-right: 0; min-width: 0; }
}

/* ---- News Cards ---- */
.news-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.news-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--lavender), rgba(107,33,168,.12));
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-img-placeholder i { font-size: 3.5rem; color: rgba(107,33,168,.25); }
.news-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.news-category {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.news-title { font-weight: 700; color: var(--dark); margin-bottom: 8px; font-size: 1rem; }
.news-title a { text-decoration: none; color: inherit; }
.news-title a:hover { color: var(--purple); }
.news-excerpt { color: var(--gray); font-size: .88rem; flex: 1; }
.news-meta { margin-top: 12px; font-size: .78rem; color: #aaa; }

/* ---- Register form ---- */
.register-section { background: var(--lavender); }
.register-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.register-sidebar {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  padding: 40px 32px;
  height: 100%;
}
.register-sidebar h3 { font-family: var(--font-display); color: #fff; font-size: 1.8rem; }
.register-sidebar .info-item {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  color: rgba(255,255,255,.85);
}
.register-sidebar .info-item i { color: var(--orange); margin-top: 3px; }
.register-form-wrap { padding: 40px 36px; }
.form-label { font-weight: 600; font-size: .88rem; color: var(--dark); }
.form-control, .form-select {
  border: 1.5px solid rgba(107,33,168,.2);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .92rem;
  transition: border-color .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(107,33,168,.1);
}

/* ---- Buttons ---- */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-weight: 600;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary-custom:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,107,0,.35); color: #fff; }
.btn-purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-weight: 600;
  transition: all .2s;
  text-decoration: none;
}
.btn-purple:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(107,33,168,.35); color: #fff; }
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 600;
  transition: all .2s;
  text-decoration: none;
}
.btn-outline-orange:hover { background: var(--orange); color: #fff; }

/* ---- Gallery ---- */
.gallery-grid { columns: 3; gap: 12px; }
.gallery-grid img {
  width: 100%;
  margin-bottom: 12px;
  border-radius: 8px;
  transition: transform .3s;
  cursor: pointer;
  break-inside: avoid;
}
.gallery-grid img:hover { transform: scale(1.02); }
.gallery-grid img:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}
body.gallery-lightbox-open { overflow: hidden; }
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 64px 90px;
  background: rgba(12,8,22,.95);
  backdrop-filter: blur(5px);
}
.gallery-lightbox.is-open { display: flex; }
.gallery-lightbox-image {
  max-width: 100%;
  max-height: calc(100vh - 128px);
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 18px 70px rgba(0,0,0,.5);
}
.gallery-lightbox-nav,
.gallery-lightbox-close {
  position: absolute;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.1);
  font-size: 1.15rem;
  transition: background .2s, border-color .2s, transform .2s;
}
.gallery-lightbox-nav:hover,
.gallery-lightbox-close:hover {
  border-color: var(--orange);
  background: var(--orange);
  transform: scale(1.06);
}
.gallery-lightbox-nav:focus-visible,
.gallery-lightbox-close:focus-visible { outline: 3px solid rgba(255,107,0,.45); outline-offset: 3px; }
.gallery-lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.gallery-lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.gallery-lightbox-prev:hover { transform: translateY(-50%) scale(1.06); }
.gallery-lightbox-next:hover { transform: translateY(-50%) scale(1.06); }
.gallery-lightbox-close { top: 20px; right: 24px; }
.gallery-lightbox-counter {
  position: absolute;
  top: 26px;
  left: 50%;
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1px;
  transform: translateX(-50%);
}
.gallery-lightbox-caption {
  position: absolute;
  right: 90px;
  bottom: 22px;
  left: 90px;
  color: rgba(255,255,255,.8);
  text-align: center;
  font-size: .88rem;
}

/* ---- Past Summits ---- */
.past-summit-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
  transition: all .3s;
}
.past-summit-card:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }
.btn-past-details {
  padding: 5px 16px;
  border: 2px solid var(--purple);
  border-radius: 8px;
  color: var(--purple);
  background: transparent;
  font-size: .82rem;
  font-weight: 600;
  transition: all .2s;
}
.btn-past-details:hover {
  color: #fff;
  background: var(--purple);
}
.btn-current-summit {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 18px 8px 9px;
  border: 2px solid var(--purple);
  border-radius: 10px;
  color: var(--purple);
  background: #fff;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 5px 18px rgba(107,33,168,.12);
  transition: color .22s, background .22s, transform .22s, box-shadow .22s;
}
.btn-current-summit-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
}
.btn-current-summit-arrow { font-size: .78rem; transition: transform .22s; }
.btn-current-summit:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 9px 25px rgba(107,33,168,.25);
  transform: translateY(-2px);
}
.btn-current-summit:hover .btn-current-summit-icon { color: var(--purple); background: #fff; }
.btn-current-summit:hover .btn-current-summit-arrow { transform: translateX(4px); }
.past-summit-modal {
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(22,15,42,.28);
}
.past-summit-modal .modal-header {
  padding: 22px 26px;
  border-bottom: 1px solid rgba(107,33,168,.1);
  background: linear-gradient(135deg, #fff8f2, #f7f1fc);
}
.past-summit-modal .modal-title { color: var(--dark); font-weight: 800; }
.past-summit-modal .modal-body { padding: 26px; }
.past-summit-modal .modal-footer { padding: 16px 26px 22px; border-top-color: rgba(107,33,168,.1); }
.summit-year-badge-sm { width: 58px; height: 58px; font-size: 1.15rem; }
.past-summit-modal-image {
  width: 100%;
  height: auto;
  margin-bottom: 22px;
  border-radius: 14px;
  display: block;
}
.past-summit-theme {
  margin-bottom: 22px;
  padding: 15px 18px;
  border-left: 4px solid var(--orange);
  border-radius: 0 10px 10px 0;
  color: var(--purple);
  background: #fff7f0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 700;
}
.past-summit-meta { margin-bottom: 24px; }
.past-summit-meta-item {
  display: flex;
  height: 100%;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 10px;
  background: var(--light-gray);
}
.past-summit-meta-item > i { color: var(--orange); font-size: 1.1rem; }
.past-summit-meta-item small { display: block; color: var(--gray); font-size: .7rem; text-transform: uppercase; letter-spacing: .6px; }
.past-summit-meta-item strong { display: block; color: var(--dark); font-size: .86rem; }
.past-summit-description h6 { margin-bottom: 12px; color: var(--dark); font-weight: 800; }
.past-summit-description { color: var(--gray); font-size: .92rem; }
.past-summit-description > div > :last-child { margin-bottom: 0; }
.summit-year-badge {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 10px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---- Newsletter ---- */
.newsletter-section {
  background: linear-gradient(135deg, var(--purple), var(--orange));
}
.newsletter-form .form-control {
  border: none;
  border-radius: 25px 0 0 25px;
  padding: 12px 20px;
}
.newsletter-form .btn-light {
  border-radius: 0 25px 25px 0;
  color: var(--purple);
}

/* ---- Footer ---- */
.site-footer { background: var(--dark); }
.footer-brand .brand-she-ft   { color: var(--orange); font-family: var(--font-display); font-size: 2rem; font-weight: 900; }
.footer-brand .brand-arose-ft { color: var(--purple-light); font-size: 2rem; font-weight: 700; letter-spacing: 2px; }
.footer-brand .brand-summit-ft{ display: block; color: rgba(255,255,255,.4); font-size: .7rem; letter-spacing: 5px; text-transform: uppercase; }
.footer-tagline { color: var(--orange); font-size: .85rem; font-style: italic; margin-top: 4px; }
.footer-text { color: rgba(255,255,255,.55); font-size: .88rem; }
.footer-heading { color: #fff; font-weight: 700; font-size: .9rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-event-card { background: rgba(255,255,255,.05); border-radius: 10px; padding: 16px; }
.text-orange { color: var(--orange) !important; }
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  color: rgba(255,255,255,.6);
  margin-right: 6px;
  font-size: .9rem;
  transition: all .2s;
  text-decoration: none;
}
.social-icons a:hover { background: var(--orange); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: url('/shearosesummit/assets/images/banners/banner.jpg') center center / cover no-repeat;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(76,24,120,.88) 0%, rgba(107,33,168,.78) 60%, rgba(45,27,94,.85) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--font-display); color: #fff; font-size: clamp(2rem,4vw,3rem); font-weight: 900; }
.page-hero p { color: rgba(255,255,255,.75); }
.breadcrumb { background: transparent; padding: 0; }
.breadcrumb-item a { color: var(--orange); text-decoration: none; }
.breadcrumb-item.active { color: rgba(255,255,255,.6); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ---- Founder modal bio typography ---- */
.founder-bio-full p   { margin-bottom: 1rem; }
.founder-bio-full ul,
.founder-bio-full ol  { padding-left: 1.4rem; margin-bottom: 1rem; }
.founder-bio-full li  { margin-bottom: .35rem; }
.founder-bio-full strong { color: var(--dark); }
.founder-bio-full blockquote {
  border-left: 4px solid var(--orange);
  margin: 1rem 0;
  padding: .5rem 1rem;
  background: rgba(255,107,0,.05);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--purple);
}

/* ---- Alert / Flash ---- */
.alert-success { background: rgba(0,150,80,.1); border-color: rgba(0,150,80,.3); color: #00613a; }
.alert-danger   { background: rgba(220,50,50,.1); border-color: rgba(220,50,50,.3); color: #8b1010; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .gallery-grid { columns: 2; }
  .gallery-lightbox { padding: 70px 18px; }
  .gallery-lightbox-image { max-height: calc(100vh - 140px); }
  .gallery-lightbox-nav { width: 44px; height: 44px; background: rgba(20,12,34,.7); }
  .gallery-lightbox-prev { left: 12px; }
  .gallery-lightbox-next { right: 12px; }
  .gallery-lightbox-close { top: 14px; right: 14px; }
  .gallery-lightbox-caption { right: 18px; bottom: 18px; left: 18px; }
  .register-form-wrap { padding: 24px 20px; }
  .register-sidebar { padding: 28px 20px; }
  .hero-meta { gap: 12px; }
}

/* ---- Hero — Mobile ---- */
@media (max-width: 767px) {
  /* Remove the giant min-vh-100 + py-5 vertical bloat on mobile */
  .hero .row.min-vh-100.py-5 {
    min-height: 0 !important;
    padding-top: 2rem !important;
    padding-bottom: 2.5rem !important;
  }

  /* Centre all hero text / inline elements */
  .hero .col-lg-7 {
    text-align: center;
  }

  .hero-eyebrow {
    font-size: .68rem;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .hero-theme {
    font-size: .88rem;
    margin: 10px 0 18px;
  }

  /* Centre the icon+text meta items */
  .hero-meta {
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
  }

  .hero-meta-item {
    font-size: .82rem;
  }

  /* Buttons — side by side, equal width, touch-friendly */
  .hero .d-flex.flex-wrap.gap-3 {
    flex-wrap: nowrap !important;
    justify-content: center;
    gap: .65rem !important;
  }

  .hero .d-flex.flex-wrap.gap-3 .btn-hero-primary,
  .hero .d-flex.flex-wrap.gap-3 .btn-hero-secondary {
    flex: 1;
    min-width: 0;
    justify-content: center;
    padding: 12px 10px;
    font-size: .85rem;
    gap: 6px;
  }

  /* Countdown — 4-column grid so boxes never wrap */
  .countdown-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 20px;
    flex-wrap: unset; /* override any inline flex-wrap */
  }

  .countdown-box {
    min-width: 0;
    padding: 11px 6px;
  }

  .countdown-box .num {
    font-size: 1.45rem;
  }

  .countdown-box .lbl {
    font-size: .55rem;
    letter-spacing: 1px;
    margin-top: 4px;
  }

  /* Hide the decorative right-column badge — saves ~280px of scroll */
  .hero .col-lg-5 {
    display: none !important;
  }

  .scroll-indicator { bottom: 14px; }
}

@media (max-width: 420px) {
  .hero .row.min-vh-100.py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 2rem !important;
  }

  .hero-title { font-size: clamp(1.75rem, 9.5vw, 2.1rem); }

  .hero-theme { font-size: .83rem; }

  .hero .d-flex.flex-wrap.gap-3 .btn-hero-primary,
  .hero .d-flex.flex-wrap.gap-3 .btn-hero-secondary {
    padding: 11px 8px;
    font-size: .82rem;
  }

  .countdown-box { padding: 9px 4px; }
  .countdown-box .num { font-size: 1.25rem; }
  .countdown-box .lbl { font-size: .5rem; }
}

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

/* ---- Back to Top ---- */
#backToTop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(255,107,0,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s, visibility .25s, background .2s;
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTop:hover { background: linear-gradient(135deg, var(--orange-dark), var(--orange)); }
@media (max-width: 576px) {
  #backToTop { right: 16px; bottom: 16px; width: 42px; height: 42px; font-size: 1rem; }
}
