/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #fff;
}

/* Logo link styles */
.logo-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

/* logo */
.logo-link .logo-text {
  color: #000;
}
.logo-link .logo-text-new {
  color: #ffffff;
}
.logo-link .logo-subtitle {
  color: #000;
}
.logo-link .logo-subtitle-new {
  color: #ffffff;
}


/* Header styles */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw; /* Full viewport width */
  padding: 19px 150px;
  background-color: #fff;
}
/* "new" For the Issues/Org Pages*/
.main-header-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw; /* Full viewport width */
  padding: 19px 150px;
  background-color: rgba(199, 116, 82, 1);
}
.logo-container {
  display: flex;
  flex-direction: column;
}
.logo-text {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #000;
  letter-spacing: 26.24px;
}
.logo-text-new {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #ffffff;
  letter-spacing: 26.24px;
}
.logo-subtitle {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
}
.logo-subtitle-new {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 24px;
}

/* Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-link {
  font-family: "ABC Monument Grotesk Mono", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  transition: all .5s ease-in-out;
}
.nav-link:hover {
  font-family: "ABC Monument Grotesk Mono", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: white;
  text-decoration: none;
}
.nav-link-new {
  font-family: "ABC Monument Grotesk Mono", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  transition: all .5s ease-in-out;
}
.nav-link-new:hover {
  font-family: "ABC Monument Grotesk Mono", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: black;
  text-decoration: none;
}

/* Language content display */
#content:not(.en) [data-lang="en"],
#content:not(.es) [data-lang="es"] {
  display: none;
}
#content.en [data-lang="en"],
#content.es [data-lang="es"] {
  display: block;
}

/* Desktop Language selector */
.language-selector {
  position: relative;
  z-index: 100;
}
.current-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  height: 32px;
  padding: 0 12px;
  font-family: "ABC Monument Grotesk Mono", sans-serif;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  text-transform: uppercase;
}
.arrow {
  display: inline-block;
  font-size: 10px;
  margin-left: 6px;
}
.lang-dropdown {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  display: none;
  overflow: hidden;
}
.language-selector.active .lang-dropdown {
  display: block;
}
.lang-bg {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 160px;
  height: 160px;
  background-color: #fff;
  border-radius: 50%;
  transform: scale(0.5);
  transition: transform 0.4s ease-out;
  z-index: 1;
}
.language-selector.active .lang-bg {
  transform: scale(3);
}
.lang-options {
  position: relative;
  list-style: none;
  padding: 45px 15px 15px;
  z-index: 2;
}
.lang-options li {
  font-family: "ABC Monument Grotesk Mono", sans-serif;
  font-size: 16px;
  padding: 8px 0;
  color: #000;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease-out;
  border-bottom: 1px solid #eee;
}
.lang-options li:last-child {
  border-bottom: none;
}
.lang-options li.selected {
  color: #c77452;
}
.language-selector.active .lang-options li {
  opacity: 1;
  transform: translateY(0);
}
.language-selector.active .lang-options li:nth-child(1) {
  transition-delay: 0.15s;
}
.language-selector.active .lang-options li:nth-child(2) {
  transition-delay: 0.2s;
}

/* Mobile language switcher */
.language-selector.mobile {
  margin-top: 20px;
}
.language-selector.mobile .current-lang {
  background-color: transparent;
  color: #000;  
  border: 1px solid #000;
}

/* Mobile menu styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  max-width: 300px;
  padding: 80px 30px;
  background-color: #fff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}
.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 24px;
}
.mobile-nav-link {
  font-family: "ABC Monument Grotesk Mono", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #000;
  cursor: pointer;
  text-decoration: none;
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Hero section styles */
.hero-section {
  display: flex;
  align-items: center;
  width: 100vw; /* Full viewport width */
  height: 622px;
  background-color: #c77452;
  justify-content: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #fff;
  width: 100%;
  max-width: 1440px;
  padding: 0 150px;
}
.hero-title {
  font-family: "ABC Monument Grotesk Mono", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 47.6px;
  width: 600px;
  align-self: flex-start;
  text-align: left;
}
.hero-subtitle {
  font-family: "ABC Monument Grotesk Mono", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  width: 500px;
  align-self: flex-start;
  text-align: left;
}

/* Donate Buttons */
.donate-button {
  width: 217px;
  height: 55px;
  color: #000;
  font-family: "ABC Monument Grotesk Mono", sans-serif;
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
  background-color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.donate-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Index/Home Info section styles */
.info-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 75px 185px;
}
.info-intro {
  font-family: "ABC Monument Grotesk Mono", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  margin-bottom: 40px;
  align-self: flex-start;
}
.info-cards {
  display: flex;
  gap: 20px;
}
.info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 270px;
  opacity: 1;
  transition: all .5s ease-in-out;
  text-decoration: none;
}
.info-card:hover {
  opacity: .3;
}
.info-image {
  width: 254px;
  height: 253px;
}
.info-title {
  font-family: "ABC Monument Grotesk Mono", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  text-align: center;
  margin-top: 22px;
}

/* Signup section */
.signup-section {
  display: flex;
  align-items: center;
  width: 100vw;
  height: 611px;
  justify-content: center;
  position: relative;
  background-color: #81a2a5;
  overflow: hidden;
}
.signup-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #81a2a5;
  z-index: -1;
}
.signup-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #000;
  width: 100%;
  max-width: 1440px;
  padding: 113px 150px;
  position: relative;
}
.signup-title {
  font-family: "ABC Monument Grotesk Mono", sans-serif;
  font-weight: 700;
  font-size: 40px;
}
.signup-subtitle {
  font-family: "ABC Monument Grotesk Mono", sans-serif;
  font-weight: 400;
  font-size: 16px;
}
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: flex;
  gap: 20px;
}
.form-input {
  width: 219px;
  height: 74px;
  border: 1px solid #000;
  font-family: "ABC Monument Grotesk Mono", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  padding-left: 11px;
  background-color: #fff;
}
.form-input.full-width {
  width: 458px;
}
.submit-button {
  width: 219px;
  height: 74px;
  color: #fff;
  font-family: "ABC Monument Grotesk Mono", sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  background-color: #000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.signup-image {
  height: 611px;
  width: 500px;
  object-fit: cover;
  top: 0;
  right: 0;
  position: absolute;
}

/* Footer styles */
.footer-logo-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.main-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  padding: 49px 150px;
  background-color: #fff;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 17px;
}
.footer-logo-text {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  letter-spacing: 11.48px;
}
.footer-text {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
}
.copyright {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  text-align: right;
}


/* ISSUES HTML */

/* Main Title */
.main-title {
  color: rgba(0, 0, 0, 1);
  font-size: 40px;
  font-family:
    ABC Monument Grotesk Mono Unlicensed Trial,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.8px;
  text-align: center;
  align-self: center;
  margin-top: 73px;
}

/* Content sections */
.content-section {
  margin-top: 248px;
  margin-bottom: 248px;
  width: 100%;
  max-width: 1114px;
}
.section-container {
  gap: 20px;
  display: flex;
}
.image-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 24%;
  margin-left: 0px;
}
.section-image {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 254px;
  flex-shrink: 0;
  max-width: 100%;
  flex-grow: 1;
}
.text-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 76%;
  margin-left: 20px;
}
.text-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  font-family:
    "ABC Monument Grotesk Mono Unlicensed Trial",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 16px;
  color: rgba(0, 0, 0, 1);
  font-weight: 700;
  letter-spacing: 0.16px;
}
.section-title {
  line-height: 1;
  align-self: start;
}
.section-description {
  line-height: 21px;
  margin-top: 72px;
}


/* ORGANIZATIONS HTML */

.organizations-grid {
  margin-top: 272px;
  width: 100%;
}
.organizations-container {
  display: flex;
}
.organization-card {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 33%;
  font-family:
    ABC Monument Grotesk Mono Unlicensed Trial,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  color: rgba(0, 0, 0, 1);
  font-weight: 700;
  text-align: center;
}
.organization-card--orange {
  background-color: rgba(255, 144, 56, 1);
  padding: 265px 61px 12px;
}
.organization-card--pink {
  background-color: rgba(244, 99, 172, 1);
  padding: 250px 61px 162px;
}
.organization-card--blue {
  background-color: rgba(110, 159, 255, 1);
  padding: 250px 61px 162px;
}
.organization-logo {
  object-fit: contain;
  object-position: center;
  width: 100%;
}
.organization-card--orange .organization-logo {
  aspect-ratio: 3;
  padding-bottom: 40px;
}
.organization-card--pink .organization-logo {
  aspect-ratio: 2.71;
  align-self: stretch;
}
.organization-card--blue .organization-logo {
  aspect-ratio: 2.71;
}
.donate-button {
  background-color: rgba(255, 255, 255, 1);
  font-family: inherit;
  font-weight: inherit;
  border: none;
  cursor: pointer;
  width: 217px;
  max-width: 100%;
  padding: 20px 25px;
  font-size: 20px;
  white-space: nowrap;
  letter-spacing: 0.2px;
  line-height: 1;
  transition: all .5s ease-in-out;
}
.donate-button:hover {
  background-color: #000;
  font-family: inherit;
  font-weight: inherit;
  border: none;
  cursor: pointer;
  width: 217px;
  max-width: 100%;
  padding: 20px 25px;
  font-size: 20px;
  white-space: nowrap;
  letter-spacing: 0.2px;
  line-height: 1;
  color: white;
}
.organization-card--orange .donate-button {
  align-self: center;
  margin-top: 116px;
}
.organization-card--pink .donate-button {
  align-self: center;
  margin-top: 116px;
}
.organization-card--blue .donate-button {
  align-self: center;
  margin-top: 116px;
}


/* Media queries */
@media (max-width: 991px) {
  .header {
    max-width: 100%;
    padding: 20px;
  }

  .header-content {
    max-width: 100%;
  }

  .main-title {
    max-width: 100%;
    margin-top: 40px;
  }

  .content-section {
    max-width: 100%;
    margin-top: 40px;
  }

  .section-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0px;
  }

  .image-column {
    width: 100%;
  }

  .section-image {
    margin-top: 40px;
  }

  .text-column {
    width: 100%;
  }

  .text-content {
    max-width: 100%;
    margin-top: 40px;
  }

  .section-description {
    max-width: 100%;
    margin-top: 40px;
  }

  .footer {
    max-width: 100%;
    margin-top: 40px;
    padding: 48px 20px;
  }

  .footer-content {
    max-width: 100%;
  }
  .main-header {
    padding: 19px 50px;
  }

  .menu-toggle {
    display: block;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-content {
    padding: 0 50px;
  }

  .hero-title {
    width: 100%;
    max-width: 600px;
  }

  .hero-subtitle {
    width: 100%;
    max-width: 500px;
  }

  .info-section {
    padding: 76px 50px;
  }

  .info-cards {
    flex-wrap: wrap;
    justify-content: center;
  }

  .signup-content {
    padding: 113px 50px;
  }

  .main-footer {
    padding: 49px 50px;
  }
}
@media (max-width: 640px) {
  .main-header {
    padding: 19px 30px;
  }
  .logo-text {
    font-size: 24px;
    letter-spacing: 16px;
  }
  .logo-subtitle {
    font-size: 12px;
  }
  .hero-content {
    padding: 0 30px;
  }
  .hero-title {
    font-size: 28px;
    line-height: 34px;
    width: 100%;
  }
  .hero-subtitle {
    font-size: 14px;
    width: 100%;
  }
  .info-section {
    padding: 76px 30px;
  }
  .info-cards {
    flex-direction: column;
    align-items: center;
  }
  .info-card {
    width: 100%;
    max-width: 269px;
  }
  .signup-section {
    height: auto;
  }
  .signup-content {
    padding: 60px 30px;
  }
  .signup-content {
    max-width: 100%;
    text-align: left;
    align-items: flex-start;
  }
  .form-row {
    flex-direction: column;
    width: 100%;
  }
  .form-input {
    width: 475px;
  }
  .form-input.full-width {
    width: 100%;
  }
  .submit-button {
    width: 100%;
  }
  .signup-image {
    display: none;
  }
  .main-footer {
    padding: 49px 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* ISSUES HTML */
  header-content {
    margin-right: -3px;
  }
  .nav-container {
    margin-right: -2px;
  }
  .language-selector {
    display: none;
  }
  .main-title {
    padding-left: 26px;
  }
  .content-section {
    padding-left: 30px;
  }
  .content-section:nth-child(3) {
    padding-left: 33px;
  }
  .content-section:nth-child(4) {
    padding-left: 42px;
  }
  .content-section:nth-child(5) {
    padding-left: 33px;
  }

  /* ORGANIZATIONS HTML */
  .organizations-container {
  flex-direction: column;
  }
  .organization-card {
  width: 100%;
  }
  .organization-card--orange {
    padding-bottom: 150px;
  }



}
  
