/* Resetting default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: adelle-sans, sans-serif;
  background-color: #033a2a;
  color: #303030;
}

.inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background: transparent;
  position: absolute;
  z-index: 10;
  width: 100%;
}

.logo-container {
  padding-top: 20px;
  padding-left: 60px;
}

.logo {
  width: 200px;
  height: auto;
}

/* Hero Section */
.hero-section {
  background-image: linear-gradient(
      to right,
      white 20%,
      rgba(255, 255, 255, 0) 100%
    ),
    url("/images/hero_bkg2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 750px;
  position: relative;
}

.mobile-hero {
  display: none;
}

.hero-cutout {
  position: relative;

  width: 100%;
  height: 100%;
}

.hero-cutout img {
  width: 700px;
  height: auto;
  object-fit: cover;
  max-height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.3s ease;
}

.hero-left {
  width: 50%;
  position: absolute;
  top: 26%;
  left: 8%;
  max-width: 500px;
  z-index: 50;
  transition: all 0.3s ease;
}

.hero-text h1 {
  color: #006848;
  font-family: "Albert Sans";
  font-size: 66px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

/* Donation Form */

.donation-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.donate-btn {
  border: 2px solid #343434;
  padding: 8px 15px;
  color: #343434;
  text-decoration: none;
  text-align: center;
  width: 48%;
  color: #303030;
  font-family: "Albert Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 161.8%; /* 25.888px */
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.donate-btn:hover {
  background-color: #033a2a;
  color: #ffcd04;
}

.donate-btn.contribute {
  background-color: #ffcd04;
  text-transform: uppercase;
  color: #303030;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  transition: 0.3s ease;
}

.donate-btn.contribute:hover {
  background-color: #033a2a;
  color: #ffcd04;
}

.donate-disclaimer {
  color: #303030;
  padding-top: 14px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.42px;
}

/* NGP */

.signup-section .inner {
  background: #fff;
  box-shadow: -16px -16px 0 0 #006848 !important;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 20px;
}

.signup-header-mobile {
  display: none;
}

header.at-title,
.signup-header-mobile h2 {
  color: #006848 !important;
  font-family: "Albert Sans" !important;
  font-size: 34px !important;
  font-style: normal !important;
  font-weight: 800 !important;
  line-height: 1 !important; /* 76.046px */
  letter-spacing: -0.94px !important;
  background: transparent !important;
  padding: 0px !important;
  text-align: left !important;
  margin-bottom: 15px !important;
}

.at .at-check {
  margin: 0 auto;
}

.ngp-form {
  background: var(--Background-White, #fff) !important;
  width: 100% !important;
  max-width: unset !important;
}

.ngp-form .at-form .at-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.ngp-form .at-form .at-inner .at-inner-left {
  width: 50% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.at-inner-right form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px; /* Adjust spacing as needed */
}

/* Each row takes up 48% width for two per row, with a little gap */
.at-inner-right .at-row {
  flex: 1 1 48%;
  box-sizing: border-box;
  min-width: 200px; /* Prevents fields from getting too small on mobile */
}

/* Make the last row (input + button) share the row */
.at-inner-right .at-row:last-child {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  flex: 1 1 100%;
}

.at-fields input[type="submit"],
.at-fields button[type="submit"] {
  grid-column: 3; /* Place in the third column */
  width: 100% !important;
}

/* Make the input and button inside the last row share the space */
.at-inner-right .at-row:last-child input,
.at-inner-right .at-row:last-child button,
.at-inner-right .at-row:last-child [type="submit"] {
  flex: 1 1 auto;
  margin: 0;
}
.at-inner-right .at-row:last-child button,
.at-inner-right .at-row:last-child [type="submit"] {
  flex: 0 0 auto;
}

.at-fields {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 10px;
}

/* Make all .at-row and label elements span 1 column by default */
.at-fields .at-row,
.at-fields .at-row > label.at-text {
  grid-column: auto;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: block;
}

/* Remove flex from .at-row so grid works */
.at-fields .at-row {
  display: contents !important;
}

.signup-section {
  background: none;
  position: relative;
  z-index: 20;
  margin-top: -60px;
}

.signup-section input[type="submit"] {
  width: 95%;
  padding: 14px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  float: unset !important;
  font-size: 1.2rem;
  cursor: pointer;
  margin-top: 30px;
  background-color: #ffcd04 !important;
  color: #303030 !important;
  cursor: pointer;
  transition: 0.3s ease;
  border-radius: 0px !important;
  margin: 0px !important;
}

.signup-section input[type="submit"]:hover {
  background-color: #081714 !important;
  color: #fff !important;
}

.ngp-form input {
  background: #f1f6ef !important;
  border-radius: 0px !important;
  font-size: 16px;
  font-style: normal;
  padding-left: 10px !important;
  color: #303030 !important;
  line-height: 120%;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  text-indent: 10px !important;
  border: none !important;
}

.at input[type="checkbox"] {
  background: #fff !important;
}

.at input[type="checkbox"] + span:before {
  border: 1px solid #303030 !important;
}

.at input[type="checkbox"] + span,
.at-legal {
  color: #303030 !important;
  font-size: 12px !important;
  line-height: 1.75 !important;
}

.at-legal {
  padding-bottom: 8px;
}
.at fieldset legend {
  display: none !important;
}

.at-inner,
.at-fields,
.at-fieldset {
  background: transparent !important;
}

.at .smsLegalDisclaimer,
.at-legal {
  display: none !important;
}

.signup-disclaimer {
  font-size: 12px !important;
  color: #303030 !important;
  text-align: center;
  width: 90%;
}

input::placeholder {
  font-size: 16px;
  color: #303030 !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 120%;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.at-fields input {
  height: 50px !important;
}

.at .at-check input + span {
  margin-bottom: 0px !important;
}

.at label.at-text input[type="email"] {
  margin-bottom: 10px !important;
}

.at-indented {
  padding-left: 0px !important;
  margin-top: 7px !important;
}

input[type="checkbox"]:checked + span:before {
  background-color: #ffffff !important;
  border-color: #303030 !important;
}

.at input[type="checkbox"]:checked + span:after {
  background-color: transparent !important;
  color: #303030 !important;
}

/* Image Section */
.images {
  margin: 50px 0;
}

.image-container {
  display: flex;
  justify-content: space-between;

  flex-wrap: wrap;
}

.image {
  width: 32%;
  height: auto;
  object-fit: cover;
}

/* Footer Styles */
footer {
  background-color: #f1f6ef;
  padding: 50px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

footer .logo {
  padding-bottom: 30px;
}

.disclaimer {
  border: 1px solid #303030;
  padding: 10px;
  text-align: center;
  margin-bottom: 10px;
  font-size: 14px;
}

.disclaimer p {
  font-size: 14px;
}

footer p {
  color: #303030;
  font-family: "Albert Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 161.8%;
  text-align: center;
}

.footer-content a {
  color: #033a2a;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-content a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.social-links .social-icon:hover {
  filter: brightness(0) saturate(100%) invert(77%) sepia(90%) saturate(1000%)
    hue-rotate(2deg) brightness(90%) contrast(110%);
  transition: filter 0.2s;
}

.social-links::before,
.social-links::after {
  content: "";
  flex: 1 1 0;
  height: 2px;
  background: #ffcd04;
  display: block;
  border-radius: 2px;
  align-self: center;
  min-width: 30px;
}

/* Privacy */
.privacy-header {
  background-color: #f1f6ef;
  color: #303030;
  padding-top: 130px;
  padding-bottom: 50px;
  text-align: center;
}

.privacy-header h1 {
  color: #006848;
  font-family: "Albert Sans";
  font-size: 50px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.privacy-content {
  color: #fff;
  font-family: "adelle-sans", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  padding: 50px 0;
}

.privacy-content p,
.privacy-content ol,
.privacy-content ul {
  padding: 10px 0;
}

.privacy-content ol,
.privacy-content ul {
  margin-left: 15px;
}

.privacy-content h2 {
  padding: 20px 0;
}

.privacy-content a {
  color: #ffcd04;
  text-decoration: none;
  transition: all 0.3s ease;
}

.privacy-content a:hover {
  text-decoration: underline;
}
