body {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: var(--font-family), sans-serif;
  scroll-behavior: smooth;
  box-sizing: border-box;
  color: white;
}

main {
  background: rgba(16, 14, 23, 0.537254902);
  backdrop-filter: blur(5px);
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/images/jnv-bg-1.jpg") center center/cover no-repeat;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
  gap: 2rem;
}
.hero .hero-text {
  flex: 1;
}
.hero .hero-text h2 {
  font-size: 42px;
  color: white;
  margin-bottom: 16px;
  margin-top: 0;
}
.hero .hero-text h2 span {
  -webkit-text-stroke: 0.005px white;
}
@media (max-width: 768px) {
  .hero .hero-text h2 {
    margin-top: 16px;
  }
}
.hero .hero-text p {
  margin: 1rem 0;
  font-size: 1.2rem;
  width: 50%;
  min-width: 284px;
  line-height: 26px;
}
.hero .hero-text .cta-btn {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}
.hero .hero-text .cta-btn:hover {
  background: var(--primary);
}
.hero .featured-photo {
  padding: 0;
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: max(40vw, 500px);
  border: 1px solid var(--text-muted);
  border-radius: 12px;
  transition: 0.3s transform ease;
}
.hero .featured-photo:hover {
  transform: scale(1.01);
}
.hero .featured-photo img.featured-photo-img {
  height: min(40vh - 6rem, 300px);
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  display: block;
}
.hero .featured-photo .overlay-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px 15px;
  padding-top: 36px;
  height: 72px;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  font-size: 20px;
  border-radius: 12px;
}

.about,
.features,
.members,
.contact-and-about,
.gallery {
  padding: 4rem 10%;
  text-align: left;
  background: transparent;
}
.about h3,
.features h3,
.members h3,
.contact-and-about h3,
.gallery h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}
.about p,
.features p,
.members p,
.contact-and-about p,
.gallery p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0;
  color: rgb(172, 172, 172);
  text-align: left;
}

.about p {
  line-height: 26px;
}

.members,
.gallery,
.features,
.contact-and-about {
  padding-top: 2rem;
}

.members-grid {
  display: grid;
  gap: 1.5rem;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 188px);
  grid-auto-columns: 188px;
  height: 456px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-right: 0.5rem;
  padding-left: 0;
  padding-top: 6px;
  padding-bottom: 6px;
}
.members-grid .member-card {
  background: var(--bg-dark);
  user-select: none;
  padding: 1.2rem 1.2rem 0 1.2rem;
  text-align: left;
  border-radius: 1rem;
  border: 0.5px solid grey;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  width: 188px;
  height: 164px;
  transition-duration: 0.25s;
}
.members-grid .member-card .member-profile-pic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.members-grid .member-card h4 {
  color: white;
  margin-bottom: 0.5rem;
  margin-top: 16px;
}
.members-grid .member-card p {
  font-size: 0.95rem;
  color: grey;
}
.members-grid .member-card:hover {
  transform: translateY(-5px);
  transition: 0.25s transform ease;
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 200px);
  grid-auto-columns: 240px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-right: 0.5rem;
  padding-left: 0;
  padding-top: 16px;
  padding-bottom: 32px;
}
.gallery-grid .image-card {
  background: var(--bg-dark);
  user-select: none;
  padding: 0;
  border-radius: 1rem;
  border: 0.5px solid grey;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition-duration: 0.3s;
  cursor: pointer;
  width: 240px;
  height: 200px;
}
.gallery-grid .image-card:hover {
  transform: translateY(-5px);
  transition: 0.3s transform ease;
}
.gallery-grid .image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.features-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.features-grid .feature-card {
  background: var(--bg-dark);
  user-select: none;
  padding: 1.5rem;
  text-align: left;
  border-radius: 1rem;
  border: 0.5px solid grey;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition-duration: 0.2s;
}
.features-grid .feature-card .feature-icon {
  font-size: 36px;
}
.features-grid .feature-card h4 {
  color: white;
  margin-bottom: 0.5rem;
}
.features-grid .feature-card p {
  font-size: 0.95rem;
  color: grey;
  line-height: 22px;
}
.features-grid .feature-card:hover {
  transform: scale(1.05);
  transition: 0.2s transform ease;
}

footer {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-dark);
  color: grey;
  font-size: 0.9rem;
  border-top: 1px solid var(--text-muted);
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    padding-top: 12px;
    gap: auto;
  }
  .hero .hero-text {
    margin-top: 12px;
  }
  .hero .hero-text #greeting {
    margin-top: 24px;
    font-size: 32px;
  }
  .hero .featured-photo {
    max-width: 500px;
    min-width: 250px;
    width: 100%;
    margin-top: 108px;
  }
}
@media screen and (min-width: 890px) {
  #greeting {
    margin-top: 0;
  }
  .about-and-newsletter {
    display: flex;
  }
  .about-and-newsletter .about {
    width: 70%;
  }
  .about-and-newsletter .newsletter-sub {
    background: var(--bg-dark);
  }
}
@media screen and (min-width: 890px) {
  .about-and-newsletter {
    display: flex;
  }
  .about-and-newsletter .about {
    width: 60%;
  }
  .about-and-newsletter .newsletter-sub {
    background: var(--bg-dark);
    box-sizing: border-box;
    border: 2px solid var(--primary);
    border-radius: 8px;
    margin: 5rem 0;
    margin-right: 5%;
    max-height: max-content;
    width: auto;
    max-width: 400px;
  }
  .about-and-newsletter .newsletter-sub input {
    width: 100%;
    padding: 0.8rem;
    margin: 0.5rem 0;
    border: 1px solid var(--input-border);
    border-radius: 8px;
    background: var(--bg-dark);
    color: var(--text-light);
    outline: none;
  }
  .about-and-newsletter .newsletter-sub input:focus {
    border: 1px solid var(--primary);
  }
  .about-and-newsletter .newsletter-sub button {
    background: var(--primary);
    color: var(--text-light);
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 4px;
    width: 100%;
  }
  .about-and-newsletter .newsletter-sub button:hover {
    background: var(--primary-dark);
  }
}
@media (max-width: 890px) {
  .newsletter-sub {
    background: var(--bg-dark);
    box-sizing: border-box;
    margin: 4rem 8%;
    border: 1.5px solid var(--primary);
    border-radius: 8px;
    width: auto;
    min-width: 250px;
  }
  .newsletter-sub input {
    width: 100%;
    padding: 0.8rem;
    margin: 0.5rem 0;
    border: 1px solid var(--input-border);
    border-radius: 8px;
    background: var(--bg-dark);
    color: var(--text-light);
    outline: none;
  }
  .newsletter-sub input:focus {
    border: 1px solid var(--primary);
  }
  .newsletter-sub button {
    background: var(--primary);
    color: var(--text-light);
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 4px;
    width: 100%;
  }
  .newsletter-sub button:hover {
    background: var(--primary-dark);
  }
}
.contact input,
.about-us input {
  width: 100%;
  padding: 0.8rem;
  margin: 0.5rem 0;
  border: 1px solid var(--input-border);
  border-radius: 8px;
  background: var(--bg-dark);
  color: var(--text-light);
  outline: none;
  max-width: 400px;
}
.contact input:focus,
.about-us input:focus {
  border: 1px solid var(--primary);
}
.contact button,
.about-us button {
  background: var(--primary);
  color: var(--text-light);
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 8px;
  width: 100%;
  max-width: 400px;
}
.contact button:hover,
.about-us button:hover {
  background: var(--primary-dark);
}
.contact p.contact-text,
.about-us p.contact-text {
  line-height: 28px !important;
}

@media screen and (min-width: 900px) {
  .contact {
    width: 50%;
  }
}
@keyframes fall {
  to {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}
#birthday-spotlight {
  background: transparent;
  padding: 4rem 10%;
  border-radius: 10px;
  margin-top: 2rem;
  padding-bottom: 1rem;
}
#birthday-spotlight h3 {
  color: var(--text-light);
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
#birthday-spotlight p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0;
}
#birthday-spotlight p a {
  color: var(--primary-light);
  text-decoration: underline;
}
#birthday-spotlight p a:hover {
  color: var(--primary);
}
#birthday-spotlight .gallery-grid {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
  padding-bottom: 0;
}
#birthday-spotlight .gallery-grid .image-card {
  background: var(--bg-dark);
  border-radius: 10px;
  height: max-content;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 transparent;
}
#birthday-spotlight .gallery-grid .image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: var(--bg-dark3);
}
#birthday-spotlight .gallery-grid .image-card img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
#birthday-spotlight .gallery-grid .image-card h4 {
  color: var(--primary);
  font-size: 1.3rem;
  margin: 10px 0;
}
#birthday-spotlight .gallery-grid .image-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 8px;
}

.about-and-newsletter {
  background: transparent;
}

.contact-and-about {
  display: flex;
  gap: 4rem;
}
@media (max-width: 800px) {
  .contact-and-about {
    flex-direction: column;
  }
}
.contact-and-about .about-us .admins {
  display: flex;
  flex-direction: column-reverse;
}
.contact-and-about .about-us .about-card {
  display: flex;
  align-items: center;
}
.contact-and-about .about-us .about-card .username {
  margin: 4px 0;
  font-size: 15px;
  color: var(--text-muted);
  cursor: pointer;
}
.contact-and-about .about-us .about-card .name {
  color: var(--text-light);
  cursor: pointer;
}
.contact-and-about .about-us .about-card .social {
  margin-top: 8px;
}
.contact-and-about .about-us .about-card .social a {
  margin-right: 8px;
}
.contact-and-about .about-us .about-card .social a span {
  color: var(--text-muted);
}
.contact-and-about .about-us .about-card .social a span:hover, .contact-and-about .about-us .about-card .social a span:focus {
  color: var(--primary);
}
.contact-and-about .about-us .about-card:last-of-type {
  margin-bottom: 1.5rem;
}
@media (max-width: 800px) {
  .contact-and-about .about-us .about-card:last-of-type {
    margin-top: 0.5rem;
  }
}
.contact-and-about .about-us .about-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 1rem;
  cursor: pointer;
}

/*# sourceMappingURL=index.css.map */
