/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

/* ================= BODY ================= */
body {
  background: radial-gradient(circle at top, #111, #000);
  color: #fff;
  line-height: 1.6;
}

/* ================= CONTAINER ================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #111;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  color: #D4AF37;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.nav-menu a:hover { color: #D4AF37; }

.nav-menu .highlight {
  background: #D4AF37;
  color: #000;
  padding: 6px 12px;
  border-radius: 6px;
}

/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media(max-width:768px){
  .menu-toggle { display: block; }

  .nav-menu {
    position: absolute;
    top: 60px;
    right: 0;
    background: #000;
    flex-direction: column;
    width: 200px;
    padding: 15px;
    display: none;
  }

  .nav-menu.active { display: flex; }
}

/* ================= HERO ================= */
.hero-banner {
  min-height: 100vh;
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.85), #000),
              url('/assets/images/hero.jpg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent, #000);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 60px;
  color: #D4AF37;
  letter-spacing: 2px;
}

.tagline {
  color: #aaa;
  margin-top: 10px;
}

/* ================= BUTTONS ================= */
.btn-primary,
.btn-secondary {
  display: inline-block;
  text-decoration: none;
  margin: 10px;
  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, #D4AF37, #f5d77a);
  color: #000;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.btn-secondary {
  border: 1px solid #D4AF37;
  color: #D4AF37;
  padding: 12px 28px;
  border-radius: 8px;
}

.btn-secondary:hover {
  background: #D4AF37;
  color: #000;
}

/* ================= SECTION ================= */
.section {
  padding: 100px 20px;
}

.film-hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.film-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(20px) brightness(0.4);
}

.film-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #000 30%, transparent);
}

.film-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
  z-index: 2;
}

.film-content h1 {
  font-size: 50px;
  color: #D4AF37;
}

.section.dark {
  background: #111;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.view-all {
  color: #D4AF37;
  text-decoration: none;
}

/* ================= CARD GRID ================= */
.card-grid {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

@media(min-width:768px){
  .card-grid {
    grid-template-columns: repeat(4,1fr);
  }
}

.card-box {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.card-box:hover {
  transform: translateY(-5px);
  border: 1px solid #D4AF37;
}

/* ================= SLIDER ================= */
.slider-wrapper {
  position: relative;
}

.slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 10px;
  scroll-behavior: smooth;
}

.slider::-webkit-scrollbar { display: none; }

/* FILM CARD */
.film-card {
  position: relative;
  width: 200px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.4s;
  cursor: pointer;
}

.film-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* HOVER EFFECT */
.film-card:hover {
  transform: scale(1.15);
  z-index: 10;
}

.film-card:hover img {
  filter: brightness(0.4);
}



.film-hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.film-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(20px) brightness(0.4);
}

.film-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #000 30%, transparent);
}

.film-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
  z-index: 2;
}

.film-content h1 {
  font-size: 50px;
  color: #D4AF37;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: 0.3s;
}

.film-card:hover .overlay {
  opacity: 1;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #D4AF37;
  color: #000;
  padding: 10px 14px;
  border-radius: 50%;
}

/* BADGE */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #D4AF37;
  color: #000;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
}

/* SLIDER BUTTONS */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  border: none;
  color: #fff;
  font-size: 26px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

.slider-btn.left { left: -10px; }
.slider-btn.right { right: -10px; }

.slider-btn:hover {
  background: #D4AF37;
  color: #000;
}

/* ================= FORM ================= */
.form-wrapper {
  max-width: 1000px;
  margin: auto;
  padding: 50px 20px;
}

.gs-form {
  background: rgba(20,20,20,0.8);
  padding: 30px;
  border-radius: 16px;
}

.form-section {
  margin-bottom: 25px;
  padding: 20px;
  background: #111;
  border-radius: 10px;
}

.gs-form input,
.gs-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #222;
  background: #0f0f0f;
  color: #fff;
}

.grid-2 {
  display: grid;
  gap: 15px;
}

@media(min-width:768px){
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

a {
  color: inherit;
  text-decoration: none;
}

/* ================= FOOTER ================= */
.main-footer {
  background: #000;
  border-top: 1px solid #111;
  padding: 40px 20px;
  text-align: center;
  color: #aaa;
}

/* ================= POPUP ================= */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-box {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.popup-box h2 { color: #D4AF37; }

.popup-box button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #D4AF37;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media(min-width:768px){
  .hero-content h1 { font-size: 80px; }
}