* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: "Open Sans", sans-serif;
}

:root {
  --text-color: #000;
  --header-text-color: #fff;
  --bg-color: #fff;
  --bg-color-faint: #f4f4f4;
  --main-color: #e5b80b;

  --main-color-start: #ffd700;
  --main-color-middle: #ffb400;
  --main-color-end: #d4af37;

  --primary-bg: linear-gradient(
    45deg,
    var(--main-color-start),
    var(--main-color-middle),
    var(--main-color-end)
  );

  --h1-font: 6rem;
  --h2-font: 3rem;
  --p-font: 1rem;
}

body {
  color: var(--text-color);
  background: var(--bg-color);
  padding: auto;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  margin: 0;
}

section {
  padding: 10px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100vw;
}

.gold-text {
  color: transparent;
  background: var(--primary-bg);
  -webkit-background-clip: text;
  background-clip: text;
}

.icon-gradient {
  color: transparent;
  background: var(--primary-bg);
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
}

/* Button Styles */

.button-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  justify-items: center;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 10px 10%;
  background: var(--primary-bg);
  color: var(--text-color);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: all 0.5s ease;
  cursor: pointer;
}

.btn-primary {
  display: flex;
  flex-direction: row;
}

.btn:hover {
  transform: translateX(10px);
  border: 2px solid var(--text-color);
  background: transparent;
  color: var(--text-color);
}

.btn:hover {
  transform: translateX(10px);
  border: 2px solid var(--text-color);
  background: transparent;
  color: var(--text-color);
}

.donate-btn:hover {
  transform: translateX(10px);
  border: 2px solid var(--bg-color);
  background: transparent;
  color: var(--header-text-color);
}

#hero-section {
  background-image: linear-gradient(
      to left,
      rgba(0, 0, 0, 0.769),
      rgba(0, 0, 0, 0.61)
    ),
    url("../img/gallery/IMG_6874.png");
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.contactus {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  overflow: hidden;

}

.form-container {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
}

.left {
  display: flex;
  margin: var(--base-margin);
}

.map {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 16px;
}

.map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
 
}

.form-field {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}


.sm-view {
  font-size: 22px;
  margin: var(--base-margin);
}

.contact-form {
  width: 100%;

}

.form-input-card {
  flex: 1;
  padding: 2% 16px;
}

.input {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--text-color);
  border-radius: 8px;
}




@media (min-width: 1024px) {

  .contactus {
    flex-direction: row;
    padding: 50px 0;
    margin: 0 auto;
  }

  .form-container {
    flex-direction: row;
    margin: 16px 10%;
  }

  .left {
    flex: 1;
  }

  .right {
    flex: 1;
  }


}

@media (min-width: 768px) {

}