* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #1e1e22;
  color: #e6e6e6;
  line-height: 1.5;
}

/* HEADER */

header {
  background: #3b0066;
  position: relative;
  overflow: hidden;
}

.header-banner {
  background: url('gfx/LJRP-2024Banner_1600x400.png') no-repeat center bottom;
  background-size: cover;        /* dynamic scaling */
  background-position: center bottom;  /* focus bottom center */
  padding: 80px 20px 180px 20px; /* increased bottom padding so text never clips */
  display: flex;
  align-items: center;
  gap: 20px;
}


.logo {
  width: 90px;
  height: auto;
}

.site-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

/* NAV */

nav {
  background: #2a004a;
  padding: 12px 0;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 20px;
}

nav a {
  color: #e6d9ff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.15s ease-in-out;
}

nav a:hover {
  color: #ffffff;
  transform: translateY(-2px);   /* slight 3D lift */
  text-shadow:
    0 0 14px #39ff14,
    0 0 22px #39ff14,
    0 0 30px #39ff14;
}

/* ACTIVE PAGE HIGHLIGHT */
nav a.active {
  color: #ffffff;
  text-shadow: 0 0 8px #ffffff;
  font-weight: 700;
}

/* MAIN */

main {
  max-width: 1100px;
  margin: auto;
  padding: 50px 20px;
}

/* FILMS GRID */

.film-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
}

.film {
  background: #2a2a30;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.film-thumb {
  width: 100%;
  height: 140px;
  background: #111;
  border-radius: 6px;
  margin-bottom: 10px;
}

.film-title {
  font-weight: 700;
  margin-bottom: 5px;
}

.film-category {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ABOUT SECTION */

.about-section {
  max-width: 800px;
  margin: auto;
}

.contact-form {
  margin-top: 40px;
  background: #2a2a30;
  padding: 20px;
  border-radius: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  background: #1e1e22;
  border: 1px solid #444;
  color: #e6e6e6;
}

.contact-form button {
  background: #6a0dad;
  color: white;
  border: none;
  padding: 12px 25px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #8a2be2;
}

/* FOOTER */

footer {
  background: #14001f;
  text-align: center;
  padding: 30px 20px;
  margin-top: 80px;
  font-size: 0.85rem;
  color: #999;
}
