body {
    margin: 0;
  font-family: "Inter", sans-serif;
    background: #f7f7f7;
    color: #222;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: #1b1b2f;
}

.header .logo {
    height: 60px;
}

.nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}


.hero {
  width: calc(100% - 120px); /* more space on sides */
  margin: 40px auto;         /* pushes it away from edges */

  min-height: 360px;         /* smaller height */
  padding: 70px 40px;

  background-image: url("images/hero-banner.png");
  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
}




.hero-overlay {
  position: relative;
  text-align: center;
  color: white;
  max-width: 950px;
}

.hero-overlay h1 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-overlay .subtitle {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 18px;
}

.hero-overlay p {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.95;
}


.cta-button {
  padding: 14px 30px;
  background: #ff5e3a;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 8px;
  font-weight: bold;
}

.cta-button:hover {
  background: #ff3c1a;
}


.about, .connect, .team, .resources {
    padding: 40px 30px;
}

.team-grid {
    display: flex;
    gap: 20px;
}

.member-card {
    text-align: center;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.footer {
    text-align: center;
    padding: 20px;
    background: #1b1b2f;
    color: white;
}

.about-banner {
  width: calc(100% - 160px);
  margin: 40px auto;

  min-height: 280px;
  padding: 60px 40px;

  background-image: url("images/about-banner.png"); /* different image */
  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}

.about-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.about-overlay {
  position: relative;
  text-align: center;
  color: white;
  max-width: 750px;
}

.about-overlay h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.about-overlay p {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.95;
}

.team-section {
  width: calc(100% - 160px);
  margin: 60px auto;
  text-align: center;
}

.team-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.team-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 30px 20px;

  backdrop-filter: blur(6px);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.team-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.2);
  margin-bottom: 15px;
}

.team-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.team-card span {
  font-size: 0.95rem;
  opacity: 0.8;
}

.resources-section {
  width: calc(100% - 160px);
  margin: 60px auto 80px;

  padding: 70px 40px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.02)
  );

  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);

  text-align: center;
}

.resources-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.resources-content p {
  max-width: 700px;
  margin: 0 auto 35px;
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.6;
}

.resources-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.resource-btn {
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  color: white;

  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.2);

  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.resource-btn.discord {
  background: #5865F2;
}

.resource-btn.moderation {
  background: #1f2937;
}

.resource-btn.applications {
  background: #0f766e;
}

.resource-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.page-hero {
  width: calc(100% - 160px);
  margin: 40px auto;

  padding: 70px 40px;
  text-align: center;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.02)
  );

  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  opacity: 0.9;
}

.applications-section {
  width: calc(100% - 160px);
  margin: 60px auto 80px;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.application-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;

  padding: 35px 30px;
  text-align: left;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.application-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.application-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.application-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 25px;
}

.apply-btn {
  display: inline-block;
  padding: 12px 26px;

  background: #0f766e;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 12px;

  transition: background 0.2s ease, transform 0.2s ease;
}

.apply-btn:hover {
  background: #115e59;
  transform: translateY(-2px);
}

.apps-wrapper {
  width: calc(100% - 160px);
  margin: 70px auto;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.image-card {
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  overflow: hidden;

  position: relative;
  border: 1px solid rgba(255,255,255,0.15);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.image-card-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.55);
  padding: 30px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  color: white;
}

.image-card-overlay h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.image-card-overlay p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 18px;
}

.card-btn {
  align-self: flex-start;
  padding: 12px 26px;
  background: #0f766e;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 12px;
}

.card-btn.secondary {
  background: #1f2937;
}

.card-btn:hover {
  filter: brightness(1.1);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
}



@media (max-width: 768px) {
  .hero {
    min-height: 320px;
    padding: 60px 15px;
  }

  .hero-overlay h1 {
    font-size: 2.6rem;
  }

  .hero-overlay p {
    font-size: 0.95rem;
  }

  .about-banner {
    width: calc(100% - 40px);
    margin: 25px auto;
    min-height: 220px;
    padding: 40px 20px;
  }

  .about-overlay h2 {
    font-size: 2rem;
  }

  .about-overlay p {
    font-size: 0.95rem;
  }

  .team-section {
    width: calc(100% - 40px);
    margin: 40px auto;
  }

  .team-title {
    font-size: 2.2rem;
  }

    .resources-section {
    width: calc(100% - 40px);
    padding: 50px 20px;
  }

  .resources-content h2 {
    font-size: 2.1rem;
  }

  .resource-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

    .page-hero,
  .applications-section {
    width: calc(100% - 40px);
  }

  .page-hero h1 {
    font-size: 2.4rem;
  }

    .apps-wrapper {
    width: calc(100% - 40px);
    margin: 50px auto;
  }

  .image-card {
    height: 260px;
  }
}