/* 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;
    }
}

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


/* 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: 10px;*/
        /*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;
    }
}


.footer-location {
    text-align: center;
    color: #fde047;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.navbar-icon-close {
    display: none;
}

.navbar-toggle.active .navbar-icon-open {
    display: none;
}

.navbar-toggle.active .navbar-icon-close {
    display: inline;
}

.footer-extra {
    text-align: center;
    margin: 0.5rem 0;
}

.footer-extra a {
    color: #fde047;
    text-decoration: underline;
    font-weight: 500;
}


.hero-section {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background: linear-gradient(to bottom right, #eff6ff, #c7d2fe);
}
.container {
  max-width: 72rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.text-center {
  text-align: center;
}
.mb-12 {
  margin-bottom: 3rem;
}
.hero-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}
.highlight {
  color: #2563eb;
}
.max-width {
  max-width: 56rem;
  margin: 0 auto;
}
.hero-text {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .hero-text {
    font-size: 1.25rem;
  }
}
.hero-text:last-child {
  margin-bottom: 0;
}


.freedom-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #fff;
}
.freedom-container {
  max-width: 72rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.freedom-card {
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08), 0 1.5px 4px rgba(0,0,0,0.03);
  border-radius: 0.5rem;
  background: #fff;
}
.freedom-card-content {
  padding: 2rem;
}
@media (min-width: 768px) {
  .freedom-card-content {
    padding: 3rem;
  }
}
.freedom-text-center {
  text-align: center;
}
.freedom-mb-12 {
  margin-bottom: 3rem;
}
.freedom-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .freedom-title {
    font-size: 2.25rem;
  }
}
.freedom-desc {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.75;
  max-width: 56rem;
  margin: 0 auto;
}
.freedom-highlight-box {
  background: #eff6ff;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
}
.freedom-highlight-text {
  font-size: 1.125rem;
  color: #1f2937;
  line-height: 1.75;
  text-align: center;
}
.freedom-invite {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 1rem;
}
.freedom-stand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
}


.principles-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #f9fafb;
}
.principles-container {
  max-width: 72rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.principles-text-center {
  text-align: center;
}
.principles-mb-12 {
  margin-bottom: 3rem;
}
.principles-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .principles-title {
    font-size: 2.25rem;
  }
}
.principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .principles-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.principle-card {
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08), 0 1.5px 4px rgba(0,0,0,0.03);
  border-radius: 0.5rem;
  background: #fff;
  transition: box-shadow 0.2s;
}
.principle-card:hover {
  box-shadow: 0 16px 32px rgba(0,0,0,0.12), 0 3px 8px rgba(0,0,0,0.06);
}
.principle-card-content {
  padding: 2rem;
}
@media (min-width: 768px) {
  .principle-card-content {
    padding: 2rem;
  }
}
.principle-flex {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.principle-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
    margin-top: 15px;
}
.principle-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}
.principle-desc {
  color: #374151;
  font-size: 1rem;
  line-height: 1.75;
}

.civility-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #fff;
}
.civility-container {
  max-width: 72rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.civility-text-center {
  text-align: center;
}
.civility-mb-12 {
  margin-bottom: 3rem;
}
.civility-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .civility-title {
    font-size: 2.25rem;
  }
}
.civility-highlight {
  font-size: 1.25rem;
  color: #2563eb;
  font-weight: 600;
}
.civility-card {
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08), 0 1.5px 4px rgba(0,0,0,0.03);
  border-radius: 0.5rem;
  background: #fff;
}
.civility-card-content {
  padding: 2rem;
}
@media (min-width: 768px) {
  .civility-card-content {
    padding: 3rem;
  }
}
.civility-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.75;
}
.civility-center {
  text-align: center;
}
.civility-strong {
  font-weight: 600;
  color: #111827;
  font-size: 1.25rem;
}


.closing-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: linear-gradient(to bottom right, #eff6ff, #c7d2fe);
}
.closing-container {
  max-width: 72rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.closing-card {
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08), 0 1.5px 4px rgba(0,0,0,0.03);
  border-radius: 0.5rem;
  background: #fff;
}
.closing-card-content {
  padding: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .closing-card-content {
    padding: 3rem;
  }
}
.closing-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .closing-title {
    font-size: 2.25rem;
  }
}
.closing-content {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.closing-desc {
  font-size: 1.25rem;
  color: #374151;
  line-height: 1.75;
}
.closing-cta {
  padding-top: 2rem;
}
.closing-cta-blue {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2563eb;
  margin-bottom: 1rem;
}
.closing-cta-black {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
}



.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;
    }
}
