/* ================================================
   PAGE-SIN-SIDEBAR — DISEÑO CINEMATOGRÁFICO.
   DISEÑADO POR IRVIS MURILLO PARA CASA POLSKA
   TODOS LOS DERECHOS RESERVADOS. 2026.
   ================================================ */

.fullpage-layout { background: #faf9f7; }

/* ---- HERO ---- */
.fullpage-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.fullpage-hero-bg {
  position: absolute;
  inset: 0;
}

.fullpage-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.fullpage-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.75) 80%,
    rgba(0,0,0,0.9) 100%
  );
}

.fullpage-hero-content {
  position: relative;
  margin-top: auto;
  padding: 4rem 0 3rem;
  z-index: 2;
}

.fullpage-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.fullpage-kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s ease 0.2s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.kicker-line {
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: #c8a96e;
}

.kicker-date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.fullpage-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  animation: fadeUp 0.8s ease 0.4s both;
}

.fullpage-excerpt {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 2rem;
  max-width: 600px;
  animation: fadeUp 0.8s ease 0.6s both;
}

.fullpage-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8a96e;
  animation: fadeUp 0.8s ease 0.8s both;
}

.fullpage-caption {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.85);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  padding: 0.6rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.fullpage-caption-credit { margin-left: auto; }

/* ---- HEADER SIN IMAGEN ---- */
.fullpage-header-plain {
  background: #1a1a1a;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.fullpage-header-plain::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c8a96e, #a8893e);
}

.fullpage-header-plain-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.fullpage-title-plain {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

/* ---- BODY / CONTENIDO ---- */
.fullpage-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 3.5rem 2rem 6rem;
}

.fullpage-breadcrumb {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e8e2d9;
}

.fullpage-breadcrumb a {
  color: #c8a96e;
  text-decoration: none;
}

.fullpage-content {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #1a1a1a;
}

.fullpage-content > p:first-child {
  font-size: 1.25rem;
  line-height: 1.75;
  color: #333;
}

.fullpage-content > p:first-child::first-letter {
  float: left;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 0.8;
  margin: 0.1em 0.1em 0 0;
  color: #c8a96e;
}

.fullpage-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 3rem 0 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid #e8e2d9;
}

.fullpage-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2.25rem 0 0.75rem;
}

.fullpage-content p { margin-bottom: 1.5rem; }

.fullpage-content a {
  color: #a8893e;
  text-decoration: underline;
  text-decoration-color: rgba(168,137,62,0.35);
  transition: text-decoration-color 0.2s;
}

.fullpage-content a:hover { text-decoration-color: #a8893e; }

.fullpage-content blockquote {
  position: relative;
  margin: 2.5rem 0;
  padding: 2rem 2rem 2rem 2.5rem;
  border-left: 4px solid #c8a96e;
  background: #f5f0e8;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #444;
}

.fullpage-content blockquote::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 0;
  position: absolute;
  top: 1.8rem;
  left: 0.8rem;
  color: #c8a96e;
  opacity: 0.4;
}

.fullpage-content img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  display: block;
}

.fullpage-content figure {
  margin: 2rem -2rem;
}

.fullpage-content figure img {
  width: 100%;
  margin: 0;
}

.fullpage-content figcaption {
  font-size: 0.78rem;
  color: #6b6b6b;
  padding: 0.5rem 2rem;
  border-left: 3px solid #e8e2d9;
  margin-top: 0.5rem;
}

@media (max-width: 680px) {
  .fullpage-hero { max-height: 100vh; }
  .fullpage-content > p:first-child::first-letter { display: none; }
  .fullpage-content figure { margin: 2rem 0; }
  .fullpage-body { padding: 2.5rem 1.25rem 4rem; }
}