/* styles.css */
.navbar {
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border-bottom: 1px solid #e5e7eb;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
}
.navbar-container {
    max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar-brand {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  text-decoration: none;
}
.navbar-links {
  display: flex;
  gap: 1.5rem;
}
.navbar-link {
  color: #374151;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.navbar-link:hover {
  color: #111827;
}
@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
}

/* Hide links and show hamburger on mobile */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
    .navbar-links.active {
        display: flex;
    }
    .navbar-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }
    .navbar-toggle-icon {
        /*width: 30px;*/
        /*height: 3px;*/
        /*background: #333;*/
        /*display: block;*/
        /*margin: 6px 0;*/
        /*border-radius: 2px;*/
        /*box-shadow: 0 2px #333, 0 4px #333;*/
    }
}
@media (min-width: 769px) {
    .navbar-toggle {
        display: none;
    }
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #f8fafc;
  color: #1e293b;
}


.footer-section {
  background: #0f172a;
  color: #fff;
  padding: 3rem 0;
}
.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fde047;
  margin-bottom: 1rem;
}
.footer-desc {
  color: #cbd5e1;
  line-height: 1.7;
}
.footer-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-social-link {
  color: #cbd5e1;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-social-link:hover {
  color: #fde047;
}
.footer-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.footer-separator {
  height: 1px;
  background: #334155;
  margin-bottom: 2rem;
}
.footer-copyright {
  text-align: center;
  color: #94a3b8;
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}


.latin-section {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%);
}
.latin-container {
  max-width: 72rem;
  margin: 0 auto;
}
.latin-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: #3730a3;
  margin-bottom: 3rem;
}
.latin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .latin-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.latin-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(59,130,246,0.10);
  transition: box-shadow 0.2s;
  padding: 2rem 1.5rem;
}
.latin-card:hover {
  box-shadow: 0 12px 40px rgba(59,130,246,0.18);
}
.latin-card-header {
  text-align: center;
  margin-bottom: 1rem;
}
.latin-card-title {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}
.latin-card-title-red {
  color: #dc2626;
}
.latin-card-title-blue {
  color: #2563eb;
}
.latin-card-title-green {
  color: #16a34a;
}
.latin-card-content {
  text-align: center;
}
.latin-term {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}
.latin-desc {
  color: #64748b;
  line-height: 1.7;
  font-size: 1rem;
}

.initiative-section {
  padding: 4rem 1rem;
  background: #eef2ff;
}
.initiative-container {
  max-width: 72rem;
  margin: 0 auto;
}
.initiative-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(55, 48, 163, 0.10);
  overflow: hidden;
}
.initiative-card-header {
  padding: 2rem 2rem 0 2rem;
  text-align: center;
}
.initiative-title {
  font-size: 2rem;
  color: #3730a3;
  font-weight: bold;
  margin-bottom: 0;
}
.initiative-card-content {
  padding: 2rem;
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.7;
}
.initiative-paragraph {
  margin-bottom: 1.5rem;
  color: #374151;
}
.initiative-quote {
  background: #c7d2fe;
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-top: 2rem;
}
.initiative-quote p {
  color: #3730a3;
  font-style: italic;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.challenge-section {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #eff6ff 0%, #c7d2fe 100%);
}
.challenge-container {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}
.challenge-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(55, 48, 163, 0.10);
}
.challenge-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: #3730a3;
  margin-bottom: 1.5rem;
}
.challenge-desc {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.7;
}
.footer-location {
  text-align: center;
  color: #fde047;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #f8fafc;
  color: #1e293b;
}

.footer-extra {
  text-align: center;
  margin: 0.5rem 0;
}
.footer-extra a {
  color: #fde047;
  text-decoration: underline;
  font-weight: 500;
}


.library-pdf-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px;
}

.library-pdf-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 24px 32px;
    transition: box-shadow 0.2s;
}

.library-pdf-link:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
}

.library-pdf-image {
    width: 400px;
    height: auto;
    margin-bottom: 16px;
    border-radius: 8px;
}

.library-pdf-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
}


.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #0f766e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem 0 1rem;
}
.hero-container {
  max-width: 1120px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
  }
}
.hero-content {
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}
.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}
.hero-subtitle {
  font-size: 1.25rem;
  color: #fde047;
  font-weight: 500;
}
@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}
.hero-desc {
  font-size: 1.125rem;
  color: #bae6fd;
}
.hero-highlight {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 0.75rem;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
  color: #bae6fd;
  font-size: 1rem;
}
.hero-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(90deg, #fde047 0%, #fb923c 100%);
  color: #111;
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: 0.5rem;
  text-decoration: none;
  margin-top: 1rem;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.hero-btn:hover {
  background: linear-gradient(90deg, #facc15 0%, #f97316 100%);
  transform: scale(1.05);
}
.hero-image {
  display: flex;
  justify-content: center;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transition: transform 0.3s;
}
.hero-image img:hover {
  transform: scale(1.05);
}

.button-link {
    display: inline-block;
    background: linear-gradient(90deg, #2563eb 0%, #38bdf8 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,99,235,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    border: none;
    letter-spacing: 0.02em;
    margin-top: 24px;
    text-align: center;
}
.button-link:hover, .button-link:focus {
    background: linear-gradient(90deg, #1e40af 0%, #0ea5e9 100%);
    box-shadow: 0 8px 32px rgba(37,99,235,0.18);
    transform: translateY(-2px) scale(1.04);
    color: #fff;
    text-decoration: none;
    outline: none;
}

