/* GLOBAL */
body {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* MAIN MOVIE CARD */
.movie-card {
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: calc(100% - 80px);
  margin: 0 40px;
  box-sizing: border-box;
}

.extra-info p {
  margin: 0.25rem 0;
  line-height: 1.2;
}

.movie-data p {
  margin: 0.25rem 0;   /* same as .extra-info p */
  line-height: 1.2;    /* same line spacing for visual consistency */
}

/* POSTER */
.poster {
  margin-top: 0.75rem;
  max-width: 220px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* SEARCH FORM */
#movieForm {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  justify-content: center;
  width: 100%;
}

#movieTitle {
  flex: 1;
  padding: 0.6rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  max-width: 400px;
}

#movieTitle:focus {
  border-color: #1e73be;
  box-shadow: 0 0 0 2px rgba(30,115,190,0.2);
}

#movieForm button {
  background-color: #1e73be;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: background-color 0.2s ease-in-out;
}

#movieForm button:hover {
  background-color: #155a91;
}

/* MOBILE FORM STACK */
@media (max-width: 480px) {
  #movieForm {
    flex-direction: column;
  }
  #movieForm button {
    width: 100%;
  }
}

/* BUTTON CONTAINER */
.button-container {
  text-align: center;
  margin-top: 1.5rem;
}

#similarBtn {
  background-color: #1e73be;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  display: none; /* hidden until a movie is fetched */
}

#similarBtn:hover {
  background-color: #155a91;
}

/* SIMILAR FILMS SECTION */
.similar-section {
  margin-top: 2rem;
  text-align: center;
  width: 100%;
  max-width: 1000px; /* ✅ full width again */
  margin-left: auto;
  margin-right: auto;
}

.similar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* ✅ 180px width per card */
  gap: 1.25rem;
  margin-top: 1rem;
  justify-items: center;
}

/* EACH CARD */
.similar-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 1rem;
  text-align: left;
  width: 180px; /* ✅ same as main poster */
  transition: transform 0.2s ease;
}

.similar-card:hover {
  transform: translateY(-4px);
}

.similar-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.similar-card p {
  font-size: 13px;
  margin: 0.25rem 0;
  line-height: 1.3;
}
