@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,400;1,700&display=swap');

/* ============================================
   CSS CUSTOM PROPERTIES
============================================ */
:root {
  --navy:      #0d3b5c;
  --teal:      #1e7a94;
  --light-teal:#7dc4d4;
  --mint:      #8ed4a8;
  --amber:     #f5a623;
  --white:     #ffffff;
  --light-bg:  #eef8fb;
  --text-dark: #0d2d45;
  --text-mid:  #2d5a73;
  --shadow:    0 4px 20px rgba(13, 59, 92, 0.15);
  --radius:    12px;
  --transition:all 0.3s ease;
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; }

a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

a:hover { color: var(--amber); }

/* ============================================
   NAVIGATION
============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

.nav-title {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-title .stake {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--light-teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-title .conference {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--white);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(125, 196, 212, 0.18);
}

.nav-links a.active {
  color: var(--amber);
  background: rgba(245, 166, 35, 0.1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(125, 196, 212, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}

/* ============================================
   HERO — FULL HEIGHT
============================================ */
.hero {
  background: linear-gradient(145deg, #8ed4a8 0%, #2a9db8 30%, #1e7a94 55%, #0d3b5c 100%);
  padding: 1.5rem 1.5rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 72% 18%, rgba(245, 166, 35, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.section-alt .hero::after { background: var(--light-bg); }

.hero-logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
    margin-bottom: 1.5rem;
	margin-top: 1.5rem;
    animation: floatIn 0.7s ease-out both;
}

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

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.5rem;
  animation: fadeUp 0.7s 0.15s ease-out both;
}

.hero-title {
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  animation: fadeUp 0.7s 0.25s ease-out both;
}

.hero-theme {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--amber);
  font-style: italic;
  margin-bottom: 0.5rem;
  animation: fadeUp 0.7s 0.35s ease-out both;
}

.hero-scripture {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  font-style: italic;
  margin-bottom: 2.25rem;
  animation: fadeUp 0.7s 0.45s ease-out both;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  animation: fadeUp 0.7s 0.55s ease-out both;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Mini hero for interior pages */
.hero-mini {
  background: linear-gradient(145deg, #8ed4a8 0%, #2a9db8 30%, #1e7a94 55%, #0d3b5c 100%);
  padding: 3.5rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-mini::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 72% 18%, rgba(245, 166, 35, 0.14) 0%, transparent 55%);
  pointer-events: none;
}

.hero-mini .hero-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin-bottom: 0;
  animation: none;
}

.hero-mini .hero-eyebrow {
  animation: none;
}

/* ============================================
   SECTIONS & LAYOUT
============================================ */
.section {
  padding: 4.5rem 1.5rem;
}

.section-alt {
  background: var(--light-bg);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.section-header p {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--teal));
  border-radius: 2px;
  margin: 0.7rem auto 1rem;
}

/* ============================================
   REGISTRATION FORM CARD
============================================ */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-top: 5px solid var(--amber);
}

.form-card-header {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  padding: 1.5rem 2rem;
  color: var(--white);
}

.form-card-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.form-card-header p {
  font-size: 0.9rem;
  opacity: 0.82;
}

.form-iframe-wrap iframe {
  display: block;
  width: 100%;
  height: 1050px;
  border: none;
}

/* ============================================
   INFO BANNER
============================================ */
.info-banner {
  background: linear-gradient(135deg, rgba(142, 212, 168, 0.12), rgba(125, 196, 212, 0.12));
  border: 1px solid rgba(30, 122, 148, 0.2);
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.info-banner strong { color: var(--navy); }

/* ============================================
   CARDS
============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(13, 59, 92, 0.2);
}

.card-body { padding: 1.5rem; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* ============================================
   SCHEDULE TIMELINE
============================================ */
.schedule-day { margin-bottom: 3rem; }

.schedule-day-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.day-badge {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  text-align: center;
  min-width: 82px;
  flex-shrink: 0;
}

.day-badge .day-num {
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  color: var(--amber);
}

.day-badge .day-name {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.75;
}

.day-info h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
}

.day-info p {
  color: var(--text-mid);
  font-size: 0.9rem;
}

.timeline {
  border-left: 3px solid var(--light-teal);
  margin-left: 1.25rem;
  padding-left: 2rem;
}

.timeline-item {
  position: relative;
  padding-bottom: 1.25rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.6rem;
  top: 0.38rem;
  width: 12px;
  height: 12px;
  background: var(--amber);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}

.timeline-time {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.1rem;
}

.timeline-event {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.1rem;
}

.timeline-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
}

/* ============================================
   PACKING LIST
============================================ */
.packing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .packing-grid { grid-template-columns: 1fr; }
}

.packing-category {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.packing-category h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--light-teal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.packing-category h3 .icon {
  font-size: 1.2rem;
}

.packing-list-items { list-style: none; }

.packing-list-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.93rem;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(125, 196, 212, 0.18);
}

.packing-list-items li:last-child { border-bottom: none; }

.packing-list-items li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.do-not-bring {
  background: rgba(13, 59, 92, 0.04);
  border: 1px solid rgba(13, 59, 92, 0.12);
  border-left: 4px solid #e74c3c;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
}

.do-not-bring h3 {
  color: #c0392b;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.do-not-bring ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.4rem;
}

.do-not-bring ul li {
  font-size: 0.9rem;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.do-not-bring ul li::before {
  content: '✗';
  color: #e74c3c;
  font-weight: 700;
  flex-shrink: 0;
}

/* FAQs Accordion */
.faq-list { margin-top: 0.5rem; }

.faq-item {
  border: 1px solid rgba(125, 196, 212, 0.3);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  text-align: left;
  padding: 1.1rem 1.25rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--light-bg);
  color: var(--teal);
}

.faq-icon {
  width: 22px;
  height: 22px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  transition: var(--transition);
  font-style: normal;
}

.faq-item.open .faq-icon {
  background: var(--amber);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0.75rem 1.25rem 1.25rem;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid rgba(125, 196, 212, 0.2);
}

.faq-item.open .faq-answer { display: block; }

/* ============================================
   CONTACT / LEADERS
============================================ */
.leader-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(13, 59, 92, 0.2);
}

.leader-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--light-teal));
  margin: 0 auto 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  border: 3px solid var(--white);
  box-shadow: 0 4px 16px rgba(13, 59, 92, 0.15);
}

.leader-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.leader-role {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.leader-contact {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.leader-contact a {
  color: var(--teal);
  font-weight: 600;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.contact-info-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.contact-info-card p {
  opacity: 0.85;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-block;
  padding: 0.8rem 1.75rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--amber);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.3);
}

.btn-primary:hover {
  background: #e8960f;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: var(--white);
}

/* ============================================
   FOOTER
============================================ */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer-theme {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--amber);
  font-style: italic;
  margin-bottom: 0.35rem;
}

.footer-scripture {
  font-size: 0.85rem;
  color: var(--light-teal);
  margin-bottom: 1.5rem;
}

.footer-info {
  font-size: 0.88rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--light-teal);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--amber); }

.footer-divider {
  width: 50px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  margin: 1.5rem auto;
}

.footer-copy {
  font-size: 0.76rem;
  opacity: 0.45;
}

/* ============================================
   UTILITIES
============================================ */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
