@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0px;
}

#pageHeader {
  background: url("../img/community.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: center; */
  /* margin-bottom: 100px; */
}
.navbar {
  background-color: #222429;
  background-size: cover;
  z-index: 1111;
}

.navbar-toggler {
  background-color: #fb383b;
}

.sup-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
}

.nav-button {
  background: transparent;
  color: #fff;
  border-width: 0;
}

#naveItem1 {
  color: #fff;
  font-family: Roboto;
  font-weight: bold;
}

#naveItem2 {
  color: #fff;
  font-family: Roboto;
  font-weight: bold;
}

#naveItem3 {
  color: #fff;
  font-family: Roboto;
  font-weight: bold;
}

#naveItem4 {
  color: #fff;
  font-family: Roboto;
  font-weight: bold;
}

#naveItem5 {
  color: #fff;
  font-family: Roboto;
  font-weight: bold;
}

#naveItem6 {
  color: #fff;
  font-family: Roboto;
  font-weight: bold;
}

#naveItem7 {
  color: #fff;
  font-family: Roboto;
  font-weight: bold;
}

#naveItem8 {
  color: #fff;
  font-family: Roboto;
  font-weight: bold;
}

.community-container {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  justify-content: center;
  padding: 20px;
  margin-bottom: 100px;
}

.community-card {
  background-color: #f9f9f9;
  border: 0.5px solid rgb(177, 165, 165);
  border-radius: 8px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.community-card-heading {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #333333;
}

.community-card p {
  font-size: 1em;
  color: #777;
  margin-bottom: 20px;
}

.join-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1em;
  color: white;
  background-color: orangered;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.join-button:hover {
  background-color: orangered;
  color: white;
}

.footer {
  background-color: #1d1e22;
  color: #b9b0b0;
  padding: 22px;
}

.footer-title {
  color: #fff;
  font-weight: bold;
}

.footer-icon {
  color: #fb383b;
}
