/* Theme Tokens */
:root {
  --bg: #E0F7FA; /* Pastel Blue */
  --text-primary: #212121; /* Dark Charcoal */
  --text-secondary: #616161; /* Gray */
  --button-bg: #FF4081; /* Bright Pink */
  --button-hover-bg: #F50057; /* Darker Pink */
  --white: #FFFFFF;
  --card-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  --footer-bg: #B2DFDB; /* Light Mint Green */
}

/* Base */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--bg); color: var(--text-primary); font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Typography mapping */
.hero-title, .section-title, .card-title { font-family: 'Inter', sans-serif; letter-spacing: 0.2px; }
.hero-subtitle, .section-subtitle, .card-text, .footer-text { font-family: 'Inter', sans-serif; font-weight: 900; color: var(--text-secondary); }

/* Header */
.site-header { background: var(--white); position: sticky; top: 0; z-index: 10; box-shadow: 0 1px 0 rgba(0,0,0,0.04); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 120px; }
.logo-image { height: 100px; width: auto; display: block; }
.nav { display: flex; gap: 20px; }
.nav-link { color: var(--text-primary); text-decoration: none; font-family: 'Inter', sans-serif; font-weight: 900; padding: 8px 12px; border-radius: 8px; }
.nav-link.cta { background: var(--button-bg); color: var(--white); }
.nav-link:hover { opacity: 0.85; }
.nav-link.cta:hover { background: var(--button-hover-bg); }

/* Hero */
.hero { padding: 80px 0; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 40px; }
.hero-title { font-size: 56px; line-height: 1.05; margin: 0 0 16px; }
.hero-subtitle { font-size: 18px; line-height: 1.6; margin: 0 0 28px; }
.hero-actions { display: flex; gap: 14px; }
.button { display: inline-block; background: var(--button-bg); color: var(--white); text-decoration: none; padding: 12px 20px; border-radius: 12px; font-family: 'Inter', sans-serif; font-weight: 900; transition: background 0.2s ease, transform 0.05s ease; }
.button:hover { background: var(--button-hover-bg); }
.button.secondary { background: transparent; color: var(--text-primary); border: 2px solid var(--text-primary); }
.button.secondary:hover { background: rgba(33,33,33,0.06); }
.button.small { padding: 10px 14px; font-size: 14px; }
.hero-image { width: 100%; height: auto; border-radius: 16px; box-shadow: var(--card-shadow); background: var(--white); }
.figurines-frame { position: relative; border: none; border-radius: 12px; padding: 24px; display: flex; align-items: flex-end; justify-content: center; gap: 24px; background: rgba(255,255,255,0.4); }
.figurine { height: 420px; width: auto; filter: drop-shadow(0px 8px 24px rgba(0,0,0,0.15)); }
.figurine.hero-pair { height: 480px; }

/* Cards Section */
.cards-section { padding: 60px 0 80px; }
.section-title { font-size: 36px; margin: 0 0 8px; }
.section-subtitle { margin: 0 0 28px; font-size: 16px; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: var(--white); border-radius: 16px; box-shadow: var(--card-shadow); overflow: hidden; display: flex; flex-direction: column; }
.card-image { width: 100%; height: 200px; object-fit: cover; display: block; }
.card-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.card-title {
  font-size: 22px;
  margin: 0;
  color: var(--text-primary);
  letter-spacing: 0.5px; /* Adjust the value as needed */
}

.card-text { margin: 0; font-size: 14px; }

/* News section */
#news { padding: 60px 0 80px; }
#news .section-title { font-size: 32px; }
#news .section-subtitle { font-style: italic; color: var(--text-secondary); }
#news .cards-grid { gap: 32px; }
#news .card { box-shadow: 0 6px 18px rgba(0,0,0,0.12); border-radius: 18px; }
#news .card-body { padding: 20px; }
#news .card-title { font-size: 24px; }
#news .card-text { line-height: 1.5; }
.card-thumb { width: 52px; height: 52px; object-fit: contain; display: block; margin: 16px 16px 0; }

/* Buttons */
.button { border-radius: 14px; }
.button.small { border-radius: 12px; }
.button:hover { transform: translateY(-1px); }

/* Panels / Updates */
.panel { background: #9FA8DA; /* light indigo similar to mock */ border-radius: 28px; box-shadow: var(--card-shadow); }
.updates-section { padding: 40px 0 80px; }
.updates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; }
.update-card { padding: 40px 28px 32px; text-align: center; }
.update-media { height: 140px; display: flex; align-items: center; justify-content: center; }
.update-icon { height: 120px; width: auto; }
.update-title { font-family: Anton, sans-serif; font-size: 28px; margin: 10px 0; color: var(--text-primary); }
.update-text { font-family: 'Inter', sans-serif; font-weight: 900; color: var(--text-secondary); line-height: 1.6; }

/* Provide */
.provide-section { padding: 30px 0 80px; }
.provide-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: center; }
.provide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 16px; }
.feature-card { padding: 22px; }
.feature-title { font-family: Anton, sans-serif; font-size: 24px; margin: 0 0 8px; color: var(--text-primary); }
.feature-text { font-family: 'Inter', sans-serif; font-weight: 900; color: var(--text-secondary); margin: 0; }
.provide-image { width: 100%; height: auto; border-radius: 16px; box-shadow: var(--card-shadow); background: var(--white); }

/* Join */
.join-section { padding: 40px 0 80px; }
.join-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; }
.join-image { width: 100%; height: auto; border-radius: 16px; box-shadow: var(--card-shadow); background: var(--white); }
.join-text { font-family: 'Inter', sans-serif; font-weight: 900; color: var(--text-primary); margin: 10px 0 24px; line-height: 1.7; }

/* Contact */
.contact-section { padding: 30px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 40px; max-width: 900px; margin: 0 auto; }
.contact-label { font-family: Anton, sans-serif; font-size: 22px; color: var(--text-primary); }
.contact-value { font-family: 'Inter', sans-serif; font-weight: 900; color: var(--text-secondary); }

/* Mission page */
.page-hero { padding: 60px 0 30px; }
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: center; }
.two-col .copy .hero-subtitle { line-height: 1.7; }
.checklist { margin: 12px 0 0; padding-left: 18px; }
.checklist li { margin: 6px 0; font-family: 'Inter', sans-serif; font-weight: 900; color: var(--text-primary); }
.cta-block { background:   #E0F7FA; padding: 40px 0 60px; margin-top: 10px; }
/* Mandate page */
.principles { list-style: none; padding-left: 0; margin: 8px 0 0; }
.principles li { display: flex; align-items: flex-start; gap: 8px; margin: 8px 0; line-height: 1.6; font-family: 'Inter', sans-serif; font-weight: 900; color: var(--text-primary); }
.icon-dot { width: 10px; height: 10px; border-radius: 50%; background: #6A4DFF; margin-top: 8px; display: inline-block; }
.accordion { margin-top: 10px; }
.accordion > summary { cursor: pointer; font-family: Anton, sans-serif; color: var(--text-primary); padding: 6px 0; }
.accordion > p, .accordion .checklist { margin-left: 12px; }

/* Gallery */
.gallery-section { padding: 40px 0 80px; }
.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.gallery-image { width: 100%; height: 140px; object-fit: cover; border-radius: 12px; box-shadow: var(--card-shadow); background: var(--white); }

/* Footer */
.site-footer { background: var(--footer-bg); padding: 28px 0; margin-top: 40px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-logo { height: 120px; width: auto; display: block; margin-bottom: 16px; }
.footer-links { display: flex; gap: 16px; }
.footer-links a { color: var(--text-primary); text-decoration: none; font-family: 'Inter', sans-serif; font-weight: 900; }
.footer-links a:hover { text-decoration: underline; }

/* Social icons */
.social-icons { display: flex; align-items: center; gap: 12px; }
.social-icons a { display: inline-flex; width: 28px; height: 28px; color: #000; }
.social-icons svg { width: 100%; height: 100%; fill: #000; }

/* Timeline */
.timeline-section { padding: 40px 0 80px; }
.timeline { position: relative; padding: 40px 0 40px 200px; }

.timeline-item { position: relative; margin-bottom: 60px; display: flex; }
.timeline-date { font-family: 'Anton', sans-serif; font-size: 28px; color: var(--button-bg); padding: 8px 20px; background: rgba(255, 64, 129, 0.1); border-radius: 12px; position: absolute; left: -200px; top: 0; }

.timeline-content { position: relative; width: 100%; }
.timeline-event { position: relative; padding-left: 40px; margin-bottom: 32px; transition: transform 0.3s ease; }
.timeline-event:hover { transform: translateX(10px); }
.timeline-event::before { content: ''; position: absolute; width: 16px; height: 16px; background: var(--button-bg); border-radius: 50%; left: 0; top: 50%; transform: translateY(-50%); border: 3px solid var(--bg); box-shadow: 0 0 0 3px rgba(255, 64, 129, 0.2); }

.timeline-event-date { font-family: 'Inter', sans-serif; font-size: 16px; color: var(--text-secondary); font-style: italic; margin-bottom: 12px; display: block; }
.timeline-event h3 { font-family: 'Anton', sans-serif; font-size: 24px; color: var(--text-primary); margin: 0 0 16px; display: flex; align-items: center; gap: 12px; }
.timeline-event h3 i { font-size: 24px; color: var(--button-bg); }
.timeline-event p { font-family: 'Inter', sans-serif; font-weight: 900; color: var(--text-secondary); margin: 0; line-height: 1.8; font-size: 16px; }

.timeline-item.future .timeline-date { color: var(--text-secondary); background: rgba(97, 97, 97, 0.1); }
.timeline-item.future .timeline-event::before { background: var(--text-secondary); }

@media (max-width: 768px) {
    .timeline { padding-left: 100px; }
    .timeline-date { left: -100px; font-size: 20px; padding: 6px 12px; }
    .timeline-event { padding-left: 30px; margin-bottom: 24px; }
    .timeline-event::before { width: 12px; height: 12px; }
    .timeline-event h3 { font-size: 20px; }
    .timeline-event-date { font-size: 14px; }
    .timeline-event p { font-size: 14px; line-height: 1.6; }
    .timeline-item { margin-bottom: 40px; }
}

@media (max-width: 480px) {
    .timeline { padding-left: 80px; }
    .timeline-date { left: -80px; font-size: 18px; padding: 4px 8px; }
    .timeline-event { padding-left: 25px; }
    .timeline-event::before { width: 10px; height: 10px; }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: 44px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .updates-grid { grid-template-columns: 1fr 1fr; }
  .provide-inner { grid-template-columns: 1fr; }
  .join-inner { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .header-inner { height: auto; padding: 12px 0; flex-direction: column; align-items: flex-start; gap: 12px; }
  .nav { flex-wrap: wrap; }
  .hero { padding: 48px 0; }
  .hero-title { font-size: 36px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr; }
  .updates-grid { grid-template-columns: 1fr; }
  .provide-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* --- Mobile-first improvements for all elements --- */
@media (max-width: 480px) {
  html, body { font-size: 15px; }
  .container { padding: 0 8px; }
  .site-header { height: auto; min-height: 60px; }
  .header-inner { flex-direction: column; align-items: flex-start; height: auto; padding: 10px 0; gap: 8px; }
  .logo-image { height: 60px; }
  .nav { flex-wrap: wrap; gap: 8px; }
  .nav-link { padding: 6px 8px; font-size: 15px; }
  .hero { padding: 32px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 16px; }
  .hero-title { font-size: 26px; }
  .hero-subtitle { font-size: 15px; margin-bottom: 16px; }
  .hero-actions { flex-direction: column; gap: 8px; }
  .figurines-frame { padding: 8px; gap: 8px; }
  .figurine, .figurine.hero-pair { height: 120px; }
  .cards-section, .updates-section, .provide-section, .gallery-section, .join-section, .contact-section, .timeline-section { padding: 24px 0 40px; }
  .section-title { font-size: 20px; }
  .section-subtitle { font-size: 13px; margin-bottom: 12px; }
  .cards-grid, .updates-grid, .provide-grid, .gallery-grid, .contact-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .card-image, .gallery-image, .update-icon, .provide-image, .join-image { height: 100px !important; border-radius: 8px; }
  .card-body, .update-card, .feature-card { padding: 10px; }
  .card-title, .update-title, .feature-title { font-size: 16px; }
  .card-text, .update-text, .feature-text, .join-text, .hero-subtitle, .timeline-event p { font-size: 13px; }
  .panel { border-radius: 10px; }
  .timeline { padding-left: 24px; }
  .timeline-date { left: -24px; font-size: 13px; padding: 2px 4px; }
  .timeline-event { padding-left: 12px; margin-bottom: 12px; }
  .timeline-event::before { width: 7px; height: 7px; }
  .timeline-event h3 { font-size: 14px; }
  .timeline-event-date { font-size: 11px; }
  .cta-block { padding: 16px 0 24px; }
  .site-footer { padding: 16px 0; }
  .footer-inner { flex-direction: column; gap: 8px; }
  .footer-logo { height: 60px; margin-bottom: 8px; }
  .footer-tagline { font-size: 12px; }
  .footer-center { flex-direction: column; gap: 6px; }
  .footer-links { flex-direction: column; gap: 6px; }
  .footer-links a { font-size: 13px; }
  .footer-contact { font-size: 12px; max-width: 100%; }
  .social-icons { gap: 6px; }
  .social-icons a { width: 20px; height: 20px; }

  /* Hide images on home page and all pages for mobile */
  .hero-image, .hero-illustration, .figurines-frame, .figurine, .provide-image, .join-image, .gallery-image, .card-image, .update-icon, .provide-illustration, .join-media, .update-media {
    display: none !important;
  }
  /* Stack all content vertically */
  .hero-inner,
  .provide-inner,
  .join-inner,
  .cards-grid,
  .updates-grid,
  .provide-grid,
  .gallery-grid,
  .contact-grid,
  .footer-inner,
  .timeline,
  .two-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    align-items: stretch !important;
  }
}


