/* ===================== */
/* MAIN MENU */
/* ===================== */

.main-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 15px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 18px;
  width: auto;
  display: block;
}

/* ===================== */
/* BODY */
/* ===================== */

body {
  margin: 0;
  background: #000;
  overflow-x: hidden;
  position: relative;
}

/* ===================== */
/* MENU LINKS */
/* ===================== */

.main-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.main-menu ul li {
  position: relative;
}

.main-menu ul li a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.main-menu ul li a:hover {
  background: #111;
}

/* ===================== */
/* DROPDOWN */
/* ===================== */

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0,0,0,0.95);
  min-width: 180px;

  display: flex;
  flex-direction: column;

  max-height: 0;
  opacity: 0;
  overflow: hidden;

  transform: translateY(-8px);
  transition: all 0.3s ease;

  pointer-events: none;
}

.dropdown:hover .dropdown-menu {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu li a {
  padding: 12px 15px;
}

/* ===================== */
/* HERO SLIDER (CINEMATIC PRO) */
/* ===================== */

.hero-slider {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* SLIDES */
.slide {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;

  opacity: 0;

  /* profundidad base */
  transform: scale(1.15) translate3d(0, 0, 0);

  will-change: transform, opacity;

  transition:
    opacity 1.8s ease-in-out,
    transform 6s ease-in-out;
}

.slide.active {
  opacity: 1;

  /* movimiento tipo cámara */
  transform: scale(1.05) translate3d(-10px, -6px, 0);
}

/* overlays cine */
.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.75)
  );
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;

  opacity: 0.05;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  background-size: cover;
  mix-blend-mode: overlay;
}

/* ===================== */
/* PAGE WRAPPER */
/* ===================== */

.page-wrapper {
  position: relative;
  z-index: 10;
}

/* ===================== */
/* ABOUT PAGE */
/* ===================== */

.page-content {
  position: relative;
  z-index: 10;

  max-width: 760px;
  margin: 0 auto;

  padding: 120px 25px;

  text-align: center;
  color: white;
}

.page-content p {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.page-content h1,
.page-content h2 {
  margin-bottom: 15px;
}

/* ===================== */
/* STYLE CHIPS */
/* ===================== */

.page-content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;

  padding: 0;
  margin-top: 15px;
}

.page-content ul li {
  list-style: none;

  padding: 6px 14px;

  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;

  font-size: 13px;
  color: rgba(255,255,255,0.75);

  transition: 0.3s ease;
}

.page-content ul li:hover {
  border-color: white;
  transform: translateY(-2px);
}

/* ===================== */
/* SOCIAL ICONS */
/* ===================== */

.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;

  margin-top: 30px;
}

.social-icons a {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);

  transition: 0.3s ease;
}

.social-icons a svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: white;
  box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

/* ===================== */
/* FOOTER FIX FINAL */
/* ===================== */

#footer-custom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  text-align: center;

  background: rgba(0,0,0,0.9);
  padding: 10px 0;

  z-index: 9999;
}

#footer-custom p {
  margin: 0;
  color: #777;
  font-size: 12px;
}

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

@media screen and (max-width: 768px) {

  .main-menu ul {
    flex-direction: column;
  }

  .dropdown-menu {
    position: relative;
    max-height: 0;
    opacity: 0;
  }

  .dropdown:hover .dropdown-menu {
    max-height: 400px;
    opacity: 1;
  }
}
/* ===================== */
/* URBAN GALLERY GRID */
/* ===================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;

  margin-top: 40px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;

  object-fit: cover;

  border-radius: 6px;

  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}
/* ===================== */
/* LIGHTBOX (FULL SCREEN) */
/* ===================== */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.3s ease;
  z-index: 999999;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;

  border-radius: 8px;

  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.active img {
  transform: scale(1);
}

/* botón cerrar */
.lightbox::after {
  content: "✕";
  position: absolute;
  top: 20px;
  right: 25px;

  font-size: 24px;
  color: white;
  cursor: pointer;
}
