@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&family=Poppins:wght@300&display=swap');

body {
  background: url('images/gingham.png');
  background-size: 150px;
  font-family: 'Poppins', sans-serif;
  color: #4a2c2a;
  margin: 0;
  padding: 0;
}

header {
  background-color: #ffb3b3cc;
  text-align: center;
  padding: 1rem;
  border-bottom: 3px dashed #fff;
}

h1 {
  font-family: 'Playfair Display', serif;
  color: #b22222;
  font-size: 2.3rem;
  margin: 0;
}

nav a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
  background-color: #fffafae6;
  border-radius: 15px;
  box-shadow: 0 0 10px #ffcccc;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}

.image-grid img {
  width: 100%;
  border-radius: 12px;
  border: 2px solid #ffd6d6;
  transition: transform 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.05);
}

/* Movie page styling */
.movie-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.movie-card {
  background-color: #fff0f0;
  border-radius: 15px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 0 10px #ffc8c8;
  transition: transform 0.3s ease;
}

.movie-card:hover {
  transform: scale(1.03);
}

.movie-card img {
  width: 100%;
  border-radius: 12px;
  border: 2px solid #ffcccc;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #844;
}

