/*  -----> MAIN CSS */
:root {
  --mBlue: #0066b7;
  --mGrey: #8d8c8c;
  --lightGrey: #f3f3f3;
  --lightBlue: #f1f7fb;
  --green: #557b09;
  --blue: #1e628f;
  --addRed: #e75036;
  --lightOrange: #fff8f1;
  --lightPurple: #fbf1f8;
  --purple: #8f1e7c;
}

html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 18px;
}

.hidden {
    display: none;
}

#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

h1 {
  margin-top: 0;
  padding: 20vh 0;
  color: white;
  text-align: center;
  font-size: 2.8rem;
  text-shadow: 3px 2px 12px #002954;
}
h2 {
  color: black;
  font-size: 2.2rem;
}
h3 {
  text-transform: uppercase;
  font-size: 1.1rem;
}
p {
  line-height: 150%;
}
.btn-outline {
    border: 1px solid black;
    padding: 10px 25px;
    font-size: 18px;
    background: transparent;
    border-radius: 4px;
    cursor: pointer;
    color: black;
    transition: all .1s;
}
.btn-outline:hover {
    border: 1px solid black;
    padding: 10px 25px;
    font-size: 18px;
    background: black;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.top {
  background-color: #5a84f7;
  background-image: url(images/san_andres_baptizm.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: calc(100vh - 50px);
  margin-bottom: 0;
  box-sizing: border-box;
}
.container {
  padding: 0 7vw;
}

/* -----> MOBILE NAVBAR */

.mobile-navigation {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
}

#menu-button {
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border-style: none;
  outline: none;
  filter: contrast(0) brightness(2);
}

.sticky-mobile-menu {
  display: none;
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom-left-radius: 100%;
  float: right;
  width: 75px;
  height: 70px;
  margin: 0;
  text-align: center;
  z-index: 1;
  box-shadow: 5px 3px 5px #030235;
}

.sticky-mobile-button {
  padding-top: 10px;
  padding-left: 18px;
  background: transparent;
  border-style: none;
  outline: none;
}

.img-nav-menu {
  height: 40px;
  width: 40px;
}

.slide-menu {
  transform: translatex(250px);
  transition: transform 0.4s;
}

.slide-menu.show-mobile-menu {
  transform: translatex(0);
}

#menu-close-button {
  z-index: 1;
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border-style: none;
  outline: none;
  filter: contrast(0) brightness(2);
}

.mobile-menu {
  height: 100vh;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0px;
  list-style-type: none;
  background-color: var(--mBlue);
}

.mobile-menu a {
  white-space: nowrap;
  display: block;
  padding: 20px 50px;
  text-decoration: none;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  text-shadow: 2px 1px 10px #7ea3ca;
}
.mobile-menu li:first-child {
  margin-top: 70px;
}

.mobile-menu a:active {
  text-shadow: 2px 2px 10px #d2dde9, -2px 2px 10px #d2dde9,
    2px -2px 10px #d2dde9, -2px -2px 10px #d2dde9;
}

.site-static {
  height: 100vh;
  overflow: hidden;
}

/* -----> SITE NAVBAR */
.site-navigation {
  z-index: 2;
  background-color: var(--mBlue);
  box-shadow: 0 3px 20px 1px #818181;
  position: sticky;
  top: 0px;
}

.site-menu {
  display: flex;
  list-style-type: none;
  margin: 0;
}
.site-menu a {
  display: inline-block;
  padding: 15px 20px;
  font-size: 1.1rem;
  color: whitesmoke;
  text-decoration: none;
  justify-content: flex-start;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-menu a:hover {
  color: white;
  background-color: #040344;
  text-shadow: 2px 1px 10px #7ea3ca;
}
a.current {
  color: white;
  background-color: var(--addRed);
  text-shadow: 2px 1px 10px #d0dff0;
}
.active {
  color: white;
  background-color: var(--addRed);
  text-shadow: 2px 1px 10px #d0dff0;
  padding: 0;
}
.scrolling {
  font-size: 1vw;
}

/*  -----> SECTIONS */

.site-section {
  margin: 0;
  padding: 70px 0;
}

.site-section.section-about {
  background-color: white;
}
.b-grey {
  background-color: var(--lightGrey) !important;
}
.b-blue {
  background-color: var(--lightBlue) !important;
}
.b-purple {
  background-color: var(--lightPurple) !important;
}
.b-green {
  background: var(--green) !important;
}
.b-orange {
  background: var(--lightOrange) !important;
}
.c-green {
  color: var(--green) !important;
}
.c-blue {
  color: var(--blue) !important;
}
.c-purple {
  color: var(--purple) !important;
}
.c-orange {
  color: var(--addRed) !important;
}
* {
  box-sizing: border-box;
}
h2.h-line {
  z-index: 0;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  text-align: center;
}
h2.h-line span {
  background: #fff;
  padding: 0 20px;
}
h2.h-line::after {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  content: "";
  height: 1px;
  background: var(--addRed);
  opacity: 0.5;
}
h2.h-line.h-line-green::after {
  background: var(--green);
}
h2.h-line.h-line-blue::after {
  background: var(--blue);
}
h2.h-line.h-line-purple::after {
  background: var(--purple);
}h2.h-line.h-line-orange::after {
  background: var(--addRed);
}
.subheading {
  color: var(--addRed);
  margin-bottom: 5px;
  box-sizing: border-box;
  text-align: center !important;
}
.section-about p {
  margin-top: 2rem;
}

.section-quote {
  background: #f3f3f3;
  font-size: 32px;
  font-family: "Dancing Script", serif;
  background: #fffdbc;
}
.section-about p {
  background: white;
}
.section-about-column1 {
  width: auto;
  padding-right: 0;
}
.section-about-column2 {
  width: auto;
}
@media (min-width: 1200px) {
  .section-about p:first-child {
    margin-top: 0;
  }
  .section-about-columns {
    display: flex;
  }
  .section-about-column1 {
    width: 50%;
    padding-right: 30px;
  }
  .section-about-column2 {
    width: 50%;
  }
}

.section-blog-column1 {
}
.section-blog-column2 {
  background: #bcd68a;
  color: #557b09;
  padding: 20px;
  font-size: 16px;
  white-space: nowrap;
  line-height: 160%;
  text-align: center;
  display: flex;
  align-items: center;
}
.section-reports .section-blog-column2 {
  background: #edcbb0;
}
.section-blog-column3 {
  background: #d5e0c0;
  padding: 40px;
}
.section-reports .section-blog-column3 {
    background: #f6e2d3;
}

.report-description {
  background: #f6e2d3;
  padding: 20px 40px;
}

.section-reports h3 {
  text-transform: none;
  line-height: 150%;
}

.section-blog-columns {
  display: grid;
  grid-template-columns: 0.8fr auto 1.2fr;
  margin-top: 30px;
}
.section-blog-columns:last-child {
  margin-top: 0;
}

.section-blog-column1,
.section-blog-column2,
.section-blog-column3 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .section-blog-columns {
    display: block;
  }
  .section-blog-column1 {
    height: 400px;
  }
  .section-blog-column2 {
    text-align: left;
  }
  .section-blog-columns img {
    width: 100%;
  }
}
@media (min-width: 1229px) {
  .section-blog-column1,
  .section-blog-column2,
  .section-blog-column3 {
    max-width: 100%;
  }
  .section-blog-column2 {
    padding: 40px;
  }
}

/* ----> CONTACT */

.contact-info {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.contact-info > div {
  padding: 50px 30px 50px 10px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.contact-info-data {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  padding-left: 10px;
}

.contact-info-data span:first-child {
  text-transform: uppercase;
  font-weight: 500;
}

.gallery-img {
  display: inline-block;
  width: 300px;
  height: 300px;
  text-align: center;
  background-color: #eee7;
  background-position: 50%; 
  background-size: cover;
  margin: 20px 20px 0 0;
  padding-top: 120px;
}

.newsletter-img {
  height: 300px !important;
}
.newsletter-label {
  color: var(--blue);
  text-align: center;
}
.newsletter-item {
  margin-right: 30px;
}

.donate-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #5a3c5d;
  line-height: 1.8;
}

.donate-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.donate-columns > .left,
.donate-columns > .right {
  flex: 1 1 300px;
}

.donate-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(143, 30, 124, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donate-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(143, 30, 124, 0.25);
}

.donate-image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
}

.donate-content-box {
  background: white;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 4px 16px rgba(143, 30, 124, 0.1);
}

.donate-heading {
  color: var(--purple);
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 20px;
  text-transform: none;
  border-bottom: 2px solid var(--purple);
  padding-bottom: 10px;
}

.donate-need-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #fef5fb 0%, #fcebf6 100%);
  border-radius: 8px;
  border-left: 4px solid var(--purple);
}

.donate-icon {
  width: 24px;
  height: 24px;
  color: var(--purple);
  flex-shrink: 0;
  margin-top: 2px;
}

.donate-link {
  color: var(--purple);
  text-decoration: none;
  font-size: 1.05rem;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.donate-link:hover {
  color: #a5238c;
  text-decoration: underline;
}

.donate-cta {
  text-align: center;
  margin: 35px 0;
}

.btn-donate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--purple) 0%, #a5238c 100%);
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(143, 30, 124, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(143, 30, 124, 0.4);
  background: linear-gradient(135deg, #a5238c 0%, var(--purple) 100%);
}

.btn-donate:active {
  transform: translateY(0);
}

.btn-icon {
  width: 22px;
  height: 22px;
  fill: white;
}

.donate-instructions {
  background: #f9f4f8;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #e8d6e5;
}

.instructions-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--purple);
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.info-icon {
  width: 22px;
  height: 22px;
  color: var(--purple);
  flex-shrink: 0;
}

.donate-instructions ol {
  margin: 10px 0 0;
  padding-left: 20px;
  line-height: 1.8;
}

.donate-instructions li {
  margin-bottom: 8px;
  color: #5a3c5d;
}

.donate-instructions strong {
  color: var(--purple);
}

.section-donate a {
  color: var(--purple);
  text-decoration: none;
}

.section-donate a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .donate-intro {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .donate-content-box {
    padding: 25px;
  }

  .donate-heading {
    font-size: 1.3rem;
  }

  .btn-donate {
    width: 100%;
    justify-content: center;
    padding: 14px 30px;
    font-size: 1rem;
  }

  .donate-need-item {
    padding: 15px;
  }
}

/*  -----> FOOTER */
footer {
  background: url(images/footer-bg.jpg) no-repeat, var(--mBlue);
}
.social-media {
  text-align: center;
  color: #fff;
}
.sm-icon {
  width: 48px;
  filter: contrast(0) brightness(2);
}
.social-media a {
  padding: 0 15px;
}

/* -----> MEDIA QUERRY */
@media (max-width: 1200px) {
  h1 {
    font-size: 40px;
  }
}

@media (max-width: 850px) {
  .top {
    height: 100vh;
  }

  .site-navigation {
    display: none;
  }
  .sticky-mobile-menu {
    display: block;
  }
  #menu-button {
    display: block;
  }
  .mobile-navigation {
    display: block;
    width: 250px;
  }
  .container {
    flex-direction: column;
    align-items: stretch;
  }
  .site-section {
    padding: 50px 0;
  }

  .site-section h2 {
    font-size: 2rem;
  }
  .section-quote {
    font-size: 25px;
  }
}
@media (max-width: 650px) {
  .container {
    align-items: center;
  }
  .site-section {
    padding: 30px 0;
  }
  .contact-info {
    flex-direction: column;
  }
  .contact-info div {
    padding: 20px;
  }
}
