/* ==============================================
   GLOBAL RESET & BASE STYLES
   ============================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: #ffd700;
  margin: 20px auto;
  border: none;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #555;
}

/* ==============================================
   HEADER & NAVIGATION
   ============================================== */
.site-header {
  background: #004080;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid white;
  object-fit: cover;
}

.brand-text {
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
}

.brand-title {
  font-size: 1.3rem;
  margin: 0;
  font-weight: bold;
}

.language-switcher {
  margin-left: auto;
  margin-right: 20px;
}

#languageSelect {
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  background: white;
  color: #004080;
  font-weight: bold;
  cursor: pointer;
}

.main-nav {
  transition: all 0.3s ease;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
  flex-wrap: wrap;
}

.nav-list a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
}

.nav-list a:hover {
  opacity: 0.8;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .header-inner {
    padding: 15px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-title {
    font-size: 1.1rem;
  }

  .brand-subtitle {
    font-size: 0.85rem;
  }

  .language-switcher {
    margin-right: 10px;
  }

  #languageSelect {
    padding: 6px 10px;
    font-size: 0.9rem;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #004080;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .main-nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
  }

  .nav-list a {
    display: block;
    padding: 15px;
    font-size: 1.4rem;
  }

  .nav-list a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-toggle {
    display: block;
  }
}

@media (min-width: 769px) {
  .main-nav {
    display: block !important;
  }

  .nav-toggle {
    display: none;
  }
}

/* ==============================================
   HERO SECTION – Swapped: large group on steps as background, green/yellow pillars group as foreground
   ============================================== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: white;
  background: linear-gradient(rgba(0, 64, 128, 0.85), rgba(0, 64, 128, 0.85)), url('group-photo-large.jpeg') center/cover no-repeat;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text {
  padding: 20px;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: 1.4rem;
  margin-bottom: 30px;
  font-style: italic;
}

.hero-verse blockquote {
  font-size: 1.3rem;
  font-style: italic;
  border-left: 4px solid #ffd700;
  padding-left: 20px;
  margin: 30px 0;
}

.hero-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 2rem;
  }
}

/* ==============================================
   VERSE BANNER
   ============================================== */
.verse-banner {
  background: #ffd700;
  color: #004080;
  padding: 20px 0;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
}

/* ==============================================
   RESOURCES SECTION
   ============================================== */
.resources-search-input {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  display: block;
  padding: 12px 20px;
  font-size: 1.1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
}

.resources-grid {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.resource-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.collapsible-header {
  background: #004080;
  color: white;
  padding: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
}

.collapsible-header h3 {
  margin: 0;
}

.collapse-icon {
  transition: transform 0.3s ease;
}

.collapsible.open .collapse-icon {
  transform: rotate(180deg);
}

.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.collapsible.open .collapsible-content {
  max-height: 1000px;
}

.collapsible-content ul {
  list-style: none;
  padding: 20px;
}

.collapsible-content li {
  padding: 8px 0;
}

.collapsible-content a {
  color: #004080;
  text-decoration: none;
}

.collapsible-content a:hover {
  text-decoration: underline;
}

/* ==============================================
   GALLERY - UNIFORM SIZE
   ============================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ==============================================
   CONTACT
   ============================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.contact-details {
  font-size: 1.1rem;
}

.contact-list {
  list-style: none;
  margin: 20px 0;
}

.contact-list li {
  padding: 12px 0;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-location {
  margin-top: 30px;
  font-size: 1.1rem;
}

.contact-form-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  background: #004080;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
}

.contact-form button:hover {
  background: #003060;
}

.contact-form button:disabled {
  background: #aaa;
  cursor: not-allowed;
}

/* WhatsApp Buttons */
.whatsapp-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
  align-self: flex-start;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-list li {
    align-items: flex-start;
  }
}

/* ==============================================
   FOOTER
   ============================================== */
.site-footer {
  background: #004080;
  color: white;
  text-align: center;
  padding: 40px 20px;
  margin-top: 60px;
}

.footer-subtext {
  margin-top: 10px;
  opacity: 0.9;
  font-style: italic;
}
