/* style.css */

/* Base styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

header {
  background: #800000;
  color: white;
  padding: 20px;
  text-align: center;
}

nav {
  display: flex;
  justify-content: center;
  background: #d35400;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
}

nav a {
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  font-weight: bold;
}

nav a:hover {
  background: #e67e22;
}

section {
  padding: 30px;
}

.poster {
  text-align: center;
  padding: 40px;
  background: #fff;
}

.poster img {
  max-width: 100%; /* scale down on small screens */
  height: auto;
  border: 2px solid #ccc;
}

footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.5em;
  }
  header h2 {
    font-size: 1.2em;
  }
  nav {
    flex-direction: column; /* stack links vertically */
  }
  nav a {
    text-align: center;
    padding: 10px;
    border-top: 1px solid rgba(255,255,255,0.2);
  }
  section {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.2em;
  }
  header h2 {
    font-size: 1em;
  }
  .poster {
    padding: 20px;
  }
}
