/* ===========================
   ESTILOS GENERALES CINEINDIAS
   =========================== */

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

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

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background-color: #000;
  line-height: 1.6;
}

/* ===========================
   NAVEGACIÓN SUPERIOR
   =========================== */

header {
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-size: 1.8em;
  font-weight: 600;
  color: #ff6347; /* naranja cine */
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ff6347;
}

/* ===========================
   SECCIÓN PRINCIPAL
   =========================== */

.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero .overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
}

.hero h1 {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1em;
  margin-bottom: 25px;
}

/* ===========================
   BOTONES
   =========================== */

.btn {
  display: inline-block;
  padding: 10px 25px;
  background: #ff6347;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover {
  background: #e5533b;
}

/* ===========================
   PIE DE PÁGINA
   =========================== */

footer {
  text-align: center;
  padding: 20px;
  background: #000;
  border-top: 1px solid #222;
  font-size: 0.9em;
}

footer p {
  margin: 5px 0;
  color: #aaa;
}

footer p:last-child {
  color: #ff6347;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
  .nav-links {
    gap: 15px;
  }
  .hero h1 {
    font-size: 1.5em;
  }
  .hero p {
    font-size: 1em;
  }
}
