/* Main dark road theme */
body {
  background: #191c22;
  font-family: "Roboto", Arial, sans-serif;
  color: #e9e9f4;
  margin: 0;
  padding: 0;
}

/* Header */
.header {
  background: linear-gradient(90deg, #13151b 60%, #232f4b 100%);
  padding: 2rem 2.5rem 2rem 2.5rem;
  position: relative;
}

.header__content {
  margin-top: 2rem;
}
.header__title {
  font-family: "Oswald", sans-serif;
  font-size: 2.8rem;
  color: #e9e9f4;
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px #0b0c0e;
}
.header__accent {
  color: #3e78ff;
  font-style: italic;
}
.header__description {
  font-size: 1.2rem;
  margin-top: 1.2rem;
  color: #9eb0c5;
}

.image-container {
  width: auto; /* Fixed width */
  border-radius: 12px; /* Rounded corners */
  border: 2px solid #222; /* Border around the container */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); /* Optional shadow */
  background: #f6f6f6; /* Subtle background color */
  padding: 8px;
  text-align: center;
  transition: box-shadow 0.2s;
  display: inline-block; /* Ensures container wraps image naturally */
}

/* Image styling: never cut off, scales down, keeps original aspect */
.image-container img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 8px;
  background: #f6f6f6; /* Matches container bg */
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  height: 56px;
  /* filter: grayscale(1) brightness(0.8) contrast(2); */
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav__link {
  color: #8ab3e3;
  font-family: "Oswald", sans-serif;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav__link:hover {
  color: #fff;
}

/* Optional: Hover effect */
.image-container:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  border-color: #0077cc;
}

.page {
  min-width: 320px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  background: #22252d;
  box-shadow: 0 0 12px 0 #13151b;
}

/* Section blocks */
.section {
  padding: 3rem 2.5rem;
  background: #23252d;
  border-bottom: 1px solid #2e323a;
}
.section__title {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  color: #3e78ff;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.section__text {
  font-size: 1.08rem;
  color: #d8dae6;
  line-height: 1.7;
  max-width: 700px;
}

.section--events {
  background: #212433;
}
.events__list {
  color: #e9e9f4;
  font-size: 1.05rem;
  list-style: square inside;
  margin: 0 0 0 1rem;
  padding: 0;
}
.events__list li {
  margin-bottom: 0.8rem;
}

.section--members {
  background: #23252d;
}
.members__grid {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.member {
  background: #191c22;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px #13151b99;
  max-width: 210px;
  text-align: center;
}
.member__photo {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 8px;
}
.member__name {
  font-family: "Oswald", sans-serif;
  color: #8ab3e3;
  margin: 0.5rem 0 0.3rem;
}
.member__bio {
  font-size: 0.95rem;
  color: #b6bbc8;
}

/* Footer */
.footer {
  background: #161922;
  color: #b6bbc8;
  padding: 2rem 2.5rem 1rem 2.5rem;
}
.footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer__logo {
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  color: #3e78ff;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.footer__column,
.footer__contact {
  margin: 0 1.5rem 1rem 0;
}
.footer__social-heading {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #8ab3e3;
  letter-spacing: 1px;
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__list-item {
  margin-bottom: 0.5rem;
}
.footer__social-link {
  color: #e9e9f4;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer__social-link:hover {
  color: #3e78ff;
}
.footer__copyright {
  text-align: left;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 2rem;
}
