/* Outreach Page Styles */

body {
  font-family: 'Helvetica', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fdf8f9;
  line-height: 1.6;
}

body {
  font-family: 'Helvetica', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #fdf8f9, #eaf4ff);
  color: white;
  overflow-x: hidden;
  line-height: 1.6;
}


#hamburger {
  font-size: 2rem;
  cursor: pointer;
  color: white;
}


#hamburger {
  display: none;
}

#nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #022242;
  padding: 0.5rem 2rem;
  /* Use fixed padding instead of percentage */
  position: fixed;
  width: 100%;
  /* Ensures it takes up the full viewport width */
  max-width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  min-height: 7rem;
  box-sizing: border-box;
}


#nav-brand {

  display: flex;
  align-items: center;
  gap: 2rem;
  /* Space between logo and text */
}

/* Smaller Logo */
#nav-brand img {
  width: 4rem;
  /* Adjusted to fit better */
  height: auto;
}

/* Church Name Styling */
#nav-text {
  font-size: 2rem;
  /* Adjusted to fit navbar */

  font-family: 'Futura', sans-serif;


  white-space: nowrap;
  /* Prevents text from breaking */
  display: flex;
  align-items: center;


}

/* Nav Links */
#nav-list {
  font-family: 'Helvetica ', sans-serif;
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

#nav-list li a {
  /* color: rgb(211, 151, 0); */
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  font-family: 'Futura', sans-serif;
  /* font-weight: bold; */
  transition: color 0.3s ease;
  /* text-shadow: 1px 1px 18px #fefefe; */

}

#nav-list li a:hover,
#nav-list li a:focus {
  color: #871d38;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #871d38;
  padding: 1rem;
  list-style: none;
  top: 100%;
  left: 0;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
  display: block;

}

.dropdown-menu li {
  margin-bottom: 0.5rem;
}

.dropdown-menu li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  display: block;
}

.dropdown-menu li a:hover {
  color: white;
}

.stewardship-hero {
  background-color: #022242;
  height: 40rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.stewardship-hero h1 {
  font-size: 5rem;
  margin: 0;
  font-weight: bold;
}

.stewardship-hero p {
  font-size: 3.4rem;
  margin-top: 1rem;
  font-weight: 300;
}

/* Main Content */
/* main.content {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

main.content h2 {
  font-size: 2rem;
  color: #022242;
  margin-bottom: 1rem;
}

main.content p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #444;
} */

.stewardship-intro {
  background-color: #fff;
  padding: 4rem 10%;
  display: flex;
  justify-content: center;
}

.stewardship-box {
  background-color: #871d38;
  color: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  max-width: 960px;
  font-size: 1.5rem;
  line-height: 1.8;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

.pledge-section {
  background-color: #f3f6fb;
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 4rem auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Helvetica', sans-serif;
  color: #022242;
  text-align: left;
}

.pledge-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pledge-section p {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #444;
}

.pledge-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pledge-form label {
  font-weight: bold;
}

.pledge-form input,
.pledge-form textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Helvetica', sans-serif;
}

.pledge-form button {
  background-color: #022242;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.pledge-form button:hover {
  background-color: #871d38;
}
.pledge-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}

.pledge-image img {
  max-width: 100%;
  height: auto;
  width: 400px;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.pledge-form {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}


.download-alt {
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.download-alt a {
  color: #022242;
  font-weight: bold;
  text-decoration: underline;
}

.download-alt a:hover {
  color: #871d38;
}


/* Footer */
#footer {
  background-color: #022242;
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  font-family: 'Futura', sans-serif;
}

.footer-brand img {
  width: 3rem;
  height: auto;
}



.footer-links a:hover {
  color: white;
}

.footer-contact p {
  margin: 0.25rem 0;
  font-size:1.2rem;
}

.footer-contact a {
  color: goldenrod;
  text-decoration: underline;
}

.footer-contact a:hover {
  color: white;
}

.footer-copy {
  font-size: 1rem;
  color: #aaa;
  margin-top: 1rem;
}





/* mobile */
@media (prefers-reduced-motion: no-preference) {
  section {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {

  #hamburger {

    display: block;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    padding: 0.5rem 1rem;
    margin-left: auto;

  }

  #nav-list {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 7rem;
    /* match navbar height */
    left: 0;
    width: 100%;
    background-color: #161414d1;
    /* or any color you want */
    padding: 1rem 0;
    z-index: 999;
  }


  #nav-list.show {
    display: flex;
  }

  #nav-list.hidden {
    display: none;
  }

  /*  NAVBAR */
  #nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }


  #nav-brand {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }

  #nav-brand img {
    width: 3rem;
  }

  #nav-text {
    font-size: 1.2rem;
    text-align: center;
  }


  .dropdown-menu {
    position: static;
    max-height: 40vh;
    overflow-y: auto;
    width: 100%;
    background-color: #871d38;
    text-align: center;
    padding: 0.5rem 0;
  }

  .stewardship-hero {
    padding-top: 9rem;
    /* shifts the text down on mobile */
  }


  /* HERO */
  .stewardship-hero {
    height: auto;
    padding: 8rem 1rem 3rem;
  }

  .stewardship-hero h1 {
    font-size: 2.4rem;
  }

  .stewardship-hero p {
    font-size: 1.4rem;
  }

  /* INTRO BOX */
  .stewardship-intro {
    padding: 2rem 1rem;
  }

  .stewardship-box {
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 2rem 1.2rem;
    text-align: center;
  }

  /* stewardship SECTION STACK */
  .stewardship-section {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .stewardship-section.reverse {
    flex-direction: column;
    /* don't reverse on mobile */
  }

  .stewardship-section .content,
  .stewardship-section .image {
    max-width: 100%;
    padding: 0;
  }

  .stewardship-section h2 {
    font-size: 2rem;
    text-align: center;
  }

  .stewardship-section p {
    font-size: 1rem;
    text-align: center;
  }

  .stewardship-section .image img {
    max-height: 24rem;
    border-radius: 1rem;
  }

  /* FOOTER */
  .footer-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-brand {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }
}

@media (max-width: 600px) {

  /* NAV TWEAK */
  #nav-text {
    font-size: 1rem;
  }

  #nav-brand img {
    width: 2.5rem;
  }

  #nav-list {
    gap: 0.8rem;
  }

  .stewardship-hero h1 {
    font-size: 2rem;
  }

  .stewardship-hero p {
    font-size: 1.2rem;
  }

  .stewardship-box {
    font-size: 1rem;
  }

  .stewardship-section h2 {
    font-size: 1.6rem;
  }

  .stewardship-section p {
    font-size: 0.95rem;
  }

  .footer-brand img {
    width: 2.5rem;
  }

  .footer-contact p {
    font-size: 0.95rem;
  }

  .footer-copy {
    font-size: 0.85rem;
  }
}