html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}
main {
  overflow: hidden;
  position: relative;
}

section {
  scroll-margin-top: 200px;
  opacity: 0;
  position: absolute;
  inset: 0;
  min-height: 100vh;
  z-index: 1;
  transition: all 0.5s ease;
}

p {
  font-size: 18px;
  line-height: 2;
  text-align: center;
  font-family: "Lora", sans-serif;
  color: #374151;

  font-weight: 350;
}
@media screen and (max-width: 600px) {
  p {
    font-size: 14px;
  }
}
ul {
  text-align: center;
  list-style: none;
  padding-left: 0px;
  font-size: 16px;
  line-height: 1.625;
}

h2 {
  font-family: "Great Vibes", cursive;
}

h3 {
  font-family: "Allura", cursive;
  text-align: center;
}
span {
  unicode-bidi: bidi-override;
  direction: rtl;
}
.landing-page {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  opacity: 1;
  z-index: 10;
  transition: all 0.5s ease;
}
.header {
  background-color: #fff;

  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header nav {
  display: flex;
  gap: 9px;
  flex-direction: column;
  padding-top: 10px;
}

@media screen and (max-width: 900px) {
  .header nav {
    padding-top: 0;
  }
}
.header nav a {
  color: #4b5563;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.header nav a:hover {
  text-decoration: underline;
  text-decoration-color: #eab308;
  text-decoration-thickness: 2px;
}
@media screen and (max-width: 600px) {
  .header {
    padding: 25px 30px 20px 30px;
  }
  .header nav {
    display: flex;
    gap: 5px;
    flex-direction: column;
  }
}

.logo-container {
  position: static;
}

.logo-sticks {
  display: flex;
  gap: 28px;
  padding-left: 32px;
}
.column,
.shadow {
  position: static;
  width: 5px;
  height: 60px;
  border-radius: 5px;

  transform: skewX(-30deg);
}

.column {
  background-color: #000;
}
.shadow {
  background-color: rgba(128, 128, 128, 0.5);
  opacity: 0;
  animation: shadow-fade 3s infinite;
}
.column:nth-child(1) {
  left: 60px;
}
.column:nth-child(2) {
  left: 170px;
}
.column:nth-child(3) {
  left: 280px;
}
.shadow:nth-child(4) {
  left: 120px;
  animation-delay: 0s;
}
.shadow:nth-child(5) {
  left: 230px;
  animation-delay: 1s;
}
.shadow:nth-child(6) {
  left: 340px;
  animation-delay: 2s;
}
@keyframes shadow-fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.foundation-text {
  position: static;

  font-size: 11px;
  font-weight: bold;
  color: #444;
  letter-spacing: 5px;
  text-align: center;
  white-space: nowrap;
  padding-top: 5px;
  animation: text-shadow-fade 3s infinite;
}
@keyframes text-shadow-fade {
  0% {
    text-shadow: none;
  }
  50% {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  }
  100% {
    text-shadow: none;
  }
}

@media screen and (max-width: 600px) {
  .logo-sticks {
    gap: 20px;
    padding-left: 20px;
  }
  .column,
  .shadow {
    position: static;
    width: 3px;
    height: 35px;
    border-radius: 5px;

    transform: skewX(-30deg);
  }
  .foundation-text {
    font-size: 8px;
  }
}

.section-wrapper {
  max-width: 768px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.fundraising-section {
  padding: 40px 0;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .fundraising-section {
    padding: 20px 0;
  }
}
.fundraising-section h1 {
  font-size: 65px;
  margin-top: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}

@media screen and (max-width: 600px) {
  .fundraising-section h1 {
    margin-top: 25px;
  }
}

.fundraising-section p {
  font-size: 18px;
  color: #374151;
  margin-bottom: 8px;
}

@media screen and (max-width: 600px) {
  .fundraising-section p {
    font-size: 14px;
    margin-bottom: 4px;
    margin-top: 0px;
  }
}

.fundraising-section p:nth-child(4) {
  margin-bottom: 24px;
}

@media screen and (max-width: 600px) {
  .fundraising-section p:nth-child(4) {
    margin-bottom: 40px;
  }
}

.fundraising-section a {
  background-color: #facc15;
  color: #000;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 9999px;

  display: inline-block;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}

@media screen and (max-width: 1100px) {
  .fundraising-section a {
    padding: 18px 16px;
  }
}

.fundraising-section a:hover {
  box-shadow: 0 4px 6px rgba(87, 70, 22, 0.95);
}
.fundraising-section .venmo-note {
  margin-top: 16px;
  color: #4b5563;
  font-size: 14px;
}

.button {
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  background-color: #2563eb;
  border: 1px solid #007bff;
  color: #fff;
  transition: background-color 0.3s ease;
}
.button:hover {
  background-color: #1d4ed8;
}
.video-container {
  margin-top: 30px;
}

.video-container video {
  width: 100%;
}
#about {
  /* padding-top: 110px; */
}
#security-txt,
#hall-of-thanks {
  scroll-margin-top: 200px;
  padding-top: 4rem;
  text-align: center;
}
.spButtons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
footer {
  margin-top: auto;
  padding-bottom: 20px;
}

.lading-button {
  /* text-decoration: none;
  color: black;
  font-size: 30px;
  padding-bottom: 20px;
} */
}

.lading-button:hover {
  /* text-decoration: underline;
  text-decoration-color: #eab308;
  text-decoration-thickness: 2px; */
}
.button-green {
  background-color: #28a745; /* Green */
  color: white;
  padding: 10px 20px;
  font-size: 20px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.button-green:hover {
  background-color: #218838;
}
