* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Montserrat', sans-serif;
  color: #eee;
  line-height: 1.6;
  background: #000;
}

h1,h2,h3 {
  font-family: 'Cinzel', serif;
  color: #c41230; /* Hollywood red */
}

a { color: #c41230; text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background: #000;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-links { list-style: none; display: flex; gap: 1.5rem; }
.nav-links a { color: #c41230; font-weight: 500; }

/* HERO SECTION (Desktop default) */
.hero {
  height: 100vh;
  background: url("../images/hero-bg.jpg") no-repeat center top;
  background-size: cover;   /* desktop keeps cinematic look */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero-overlay {
  background: rgba(0,0,0,0.5);
  padding: 2rem;
}

.hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.hero p { font-size: 1.3rem; margin-bottom: 2rem; }

/* MOBILE FIX — zoom image slightly, keep center */
@media (max-width: 768px) {
  .hero {
    background-position: center center; 
    background-size: 150%;   /* zooms in slightly instead of hard crop */
  }
}


.btn {
  background: #c41230;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  font-weight: 600;
}
.btn:hover { background: #a00e25; }

/* UNIVERSAL SECTION STYLE */
section {
  padding: 5rem 8%;
  background: #000; /* all dark */
  color: #eee;
  text-align: center;
}
section h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c41230;
}

/* ABOUT */
.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
}

/* CARDS + GRIDS */
.project-grid, .press-grid, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.project-card {
  display: block;
  background: #222;
  padding: 1rem;
  border-radius: 5px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
.project-card h3, .press-grid h3 { color: #c41230; }
.project-card p, .press-grid p { color: #bbb; }
.project-card img { width: 100%; border-radius: 5px; }

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-grid img:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.7);
}

/* CASTING FORM */
.casting-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}
.casting-form input, .casting-form textarea {
  padding: 0.8rem;
  border: 1px solid #444;
  border-radius: 4px;
  background: #1a1a1a;
  color: #eee;
}
.casting-form input::placeholder,
.casting-form textarea::placeholder {
  color: #777;
}

.logo a {
  color: #c41230;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.2rem;
}
.logo a:hover {
  color: #c41230;
  text-decoration: underline;
}

/* CONTACT */
.contact a { color: #c41230; font-weight: 600; }

/* FOOTER */
.footer {
  text-align: center;
  padding: 1rem;
  background: #000;
  color: #666;
}
.footer p { color: #666; }

/* ------------------------------
MOBILE RESPONSIVENESS
------------------------------ */
@media (max-width: 768px) {
  /* Navbar */
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    background: #000;
    padding: 1rem;
  }

  /* Hero */
  .hero {
    height: 70vh;
    padding: 1rem;
    background-position: center center; /* recenter for mobile */
  }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }

  /* Sections */
  section { padding: 3rem 5%; }

  /* Grids collapse */
  .project-grid,
  .press-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* Cards */
  .project-card,
  .press-grid article,
  .gallery-grid img {
    margin: 0 auto;
    max-width: 90%;
  }

  /* Casting form */
  .casting-form { width: 100%; padding: 0 1rem; }
  .casting-form input,
  .casting-form textarea { font-size: 1rem; }
  .btn { width: 100%; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: 0.9rem; }
  section h2 { font-size: 1.4rem; }
}

/* Hamburger menu */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #c41230;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #000;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  }
  .nav-links.active { display: flex; }
  .hamburger { display: block; }
}
