body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #ffe6f0;
    margin: 0;
    color: #222;
  }
  header {
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 2em;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .logo {
    display: flex;
    align-items: center;
    font-size: 1.8em;
    font-weight: 700;
  }
  .logo img {
    height: 48px;
    margin-right: 10px;
  }
  nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1em;
    font-weight: 500;
    transition: color 0.2s;
  }
  nav a:hover {
    color: #ff69b4;
  }
  .hero {
    background: #ff69b4;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2em 2em 1em 2em;
  }
  .hero-text h1 {
    font-size: 2.5em;
    margin: 0 0 0.5em 0;
    font-weight: 700;
  }
  .hero-text p {
    font-size: 1.3em;
    margin: 0 0 1em 0;
  }
  .main-btn {
    display: inline-block;
    background: #222;
    color: #fff;
    padding: 0.7em 1.7em;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    box-shadow: 0 2px 6px #0002;
  }
  .hero img {
    height: 180px;
    border-radius: 20px;
    margin-left: 2em;
    box-shadow: 0 2px 12px #0002;
  }
  main {
    max-width: 950px;
    margin: 2em auto 0 auto;
    padding: 0 1em;
  }
  .card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px #0001;
    padding: 2em;
    margin-bottom: 2em;
  }
  .show-list {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
  }
  .show {
    display: flex;
    align-items: flex-start;
    gap: 1em;
  }
  .show img {
    width: 120px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 6px #0001;
  }
  .show-btn, .support-btn {
    display: inline-block;
    background: #ff69b4;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0.5em 1.2em;
    margin-top: 0.6em;
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    box-shadow: 0 2px 6px #0001;
    transition: background 0.2s;
  }
  .show-btn:hover, .support-btn:hover {
    background: #ff4093;
  }
  .support {
    text-align: center;
  }
  .socials a {
    display: inline-block;
    margin: 0 5px;
  }
  footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 1.2em 0;
    margin-top: 2em;
    font-size: 1em;
    border-radius: 0 0 16px 16px;
  }
  @media (max-width: 800px) {
    .hero {
      flex-direction: column;
      align-items: flex-start;
      padding: 2em 1em;
    }
    .hero img {
      margin: 1em 0 0 0;
      height: 120px;
    }
    .show {
      flex-direction: column;
      align-items: flex-start;
    }
    nav {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
  }
   
.team-member {
  width: 200px;
  margin: 1em;
  text-align: center;
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
}

.team-member img {
  width: 180px;            /* or 100% if inside a container */
  height: auto;
  object-fit: contain;     /* preserve full image */
  border-radius: 0;        /* disables circle crop */
  box-shadow: 0 2px 8px #0002;
}
.show-posters {
  display: flex;
  gap: 2em;                /* spacing between the posters */
  justify-content: flex-end;  /* align posters to the right */
  align-items: center;        /* vertically align */
  margin-top: -2em;           /* optional: pull them up a bit */
  margin-right: 2em;          /* optional: spacing from the right edge */
}

.show-posters .poster img {
  max-height: 280px;        /* adjust height as needed */
  border-radius: 16px;      /* optional: rounded corners */
}
/* Make hero posters responsive */
.show-posters {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
  align-items: center;
  margin-top: 1em;
}

.show-posters .poster img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Improve team grid on small screens */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
}

.team-member {
  width: 180px;
  text-align: center;
}

.team-member img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.hamburger {
  display: none; /* hide by default */
  background: none;
  border: none;
  font-size: 2em;
  color: white;
  cursor: pointer;
  margin-left: auto;
  z-index: 11; /* appear above menu if needed */
}

/* Show hamburger and hide nav on small screens */
@media (max-width: 800px) {
  .hamburger {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    background-color: #222;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 1em;
    z-index: 10;
  }

  nav.show {
    display: flex;
  }

  nav a {
    margin: 0.5em 0;
    text-align: center;
  }
}

