/** 
.amaranth-regular {
  font-family: "Amaranth", sans-serif;
  font-weight: 400;
  font-style: normal;
}

**/
/* The initial hidden state 
.fade-in-text {
  opacity: 0;
  transform: translateY(30px); 
  transition: opacity 0.5s ease-out, transform 0.8s ease-out; Smooth transition
  will-change: opacity, transform; 
}

/* The state triggered by JavaScript when scrolled into view 
.fade-in-text.appear {
  opacity: 1;
  transform: translateY(0);  
}
*/
@font-face {
  font-family: "Avenir";
  src: url("./fonts/Avenir Book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("./fonts/Avenir Heavy.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("./fonts/Avenir Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Avenir", sans-serif;
  font-weight: 800;
}

.hero {
  width: 100%;
  min-height: 100vh;
  background-image: url("images/backgroundimage.png");
  background-position: center;
  background-size: cover;
  padding: 10px 10%;
}

.about {
  width: 100%;
  min-height: 100vh;
  background-image: url("images/aboutbackground.png");
  background-position: center;
  background-size: cover;
  padding: 10px 10%;
  align-items: center;
  justify-content: center;
  display: flex;
}

.community {
  width: 100%;
  min-height: 70vh;
  background-image: url("images/communitybackground.png");
  background-position: center;
  background-size: cover;
  padding: 10px 10%;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.community div h1 {
  color: #fff;
}

.donate {
  width: 100%;
  min-height: 100vh;
  background-image: url("images/donatebackground.png");
  background-position: center;
  background-size: cover;
  padding: 10px 10%;
  align-items: center;
  justify-content: center;
  display: flex;
}

.tier-submission {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0;
}

.tier-submission div {
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
}

.tier-submission h1 {
  color: #000;
}

.donate-container {
  text-align: center;
  color: #fff;
}

.donate-container p {
  margin: 10px;
}

.tier-submission div h1 {
  font-size: 20px;
}

.membership {
  width: 100%;
  min-height: 100vh;
  background-image: url("images/membershipbackground.png");
  background-position: center;
  background-size: cover;
  padding: 10px 10%;
  text-align: center;
}

.membership-container {
  display: flex;
  gap: 20px;
  margin: 20px auto;
}

.meetings-info .dues-info {
  flex: 1; /* Gives both divs equal width */
  padding: 15px;
}

.meetings-info {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  border-width: 3px;
  border-color: #000;
}

.membership h1 {
  color: #fff;
}

.meetings-info iframe {
  height: 250px;
  width: 250px;
}

.dues-info {
  background-color: #fff;
  border-radius: 10px;
  border-width: 3px;
  border-color: #000;
  padding: 20px;
  text-align: center;
}

.team {
  width: 100%;
  min-height: 100vh;
  background-image: url();
  background-position: cover;
  padding: 0px;
  margin: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  text-align: center;
  position: relative;
}

.team-container {
  position: relative;
}

.team-container a {
  position: absolute;
  bottom: 0;
  right: 0;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0;
}

.team-members div img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center; /* Keeps the focal point in the middle */
}

.team-members div .role {
  font-size: 12px;
  font-style: italic;
}

.about-content {
  padding: 10px;
  margin: 10px;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
}

nav {
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3000;
  background-color: #fff;
  border-radius: 10px;
}

.logo {
  width: 100px;
}

nav ul li {
  display: inline-block;
  list-style: none;
  margin: 10px 15px;
}

nav ul li a {
  text-decoration: none;
  color: #000000;
  font-weight: 400;
  font-size: 15px;
  animation: shrink 0.5s forwards;
}

nav ul li a:hover {
  color: #054dd3;
  font-size: 18px;
  animation: grow 0.5s forwards;
}

@keyframes grow {
  from {
    color: #000000;
    font-size: 16px;
  }
  to {
    color: #054dd3;
    font-size: 18px;
  }
}
@keyframes shrink {
  from {
    color: #054dd3;
    font-size: 18px;
  }
  to {
    color: #000000;
    font-size: 16px;
  }
}
.membership-button {
  text-decoration: none;
  color: #000000;
  margin-right: 15px;
  font-weight: 400;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 14px 40px;
  color: #fff;
  background-image: linear-gradient(45deg, #e61344, #054dd3);
  font-size: 14px;
  border-radius: 30px;
  border-top-right-radius: 0;
  transition: 0.5s;
}

.content {
  margin-top: 10%;
  padding: 20px;
  max-width: 575px;
  background-color: #fff;
  border-radius: 20px;
}

.content h1 {
  font-size: 45px;
  color: #000000;
}

.content p {
  margin: 10px 0 30px;
  font-size: 15px;
  color: #000000;
}

.content .btn {
  padding: 15px 20px;
  margin: 10px;
  min-width: 150px;
  font-size: 20px;
  text-align: center;
}

.btn:hover {
  border-top-right-radius: 30px;
}

footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-column h4 {
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li a {
  color: #cccccc;
  text-decoration: none;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333333;
}

/* Card layout for the form */
.form-container {
  background-color: #ffffff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 450px;
}

.form-container h2 {
  margin-bottom: 20px;
  color: #333333;
  text-align: center;
}

/* Spacing between text blocks */
.form-group {
  margin-bottom: 5px;
}

/* Form labels styling */
.form-group label {
  display: block;
  font-weight: 600;
  color: #ffffff;
  font-size: 12px;
}

/* Common styles for inputs and textareas */
.form-group input,
.form-group textarea {
  width: 50%;
  padding: 8px;
  border: 1px solid #cccccc;
  border-radius: 6px;
  font-size: 15px;
  color: #333333;
  outline: none;
  transition: border-color 0.3s ease;
}

/* Changes border color when clicking inside a field */
.form-group input:focus,
.form-group textarea:focus {
  border-color: #007bff;
}

/* Disable horizontal resizing for the message block */
.form-group textarea {
  resize: vertical;
}

/* Modern submit button */
.sendbutton {
  width: 50%;
  padding: 8px;
  background-color: #007bff;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Interactive hover state */
.sendbutton:hover {
  background-color: #0056b3;
}

/* The hidden background overlay */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}

/* The actual image inside the popup */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
  /* Smooth zoom animation */
  animation-name: zoomIn;
  animation-duration: 0.3s;
}

@keyframes zoomIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
/* The close button in the top right corner */
#close-btn {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  color: #bbb;
}/*# sourceMappingURL=style.css.map */