/* ===========================================================
   Mi Gran Casamiento Hebreo — Lea Bensasson
   Paleta vibrante: rosa, amarillo, turquesa, gris, negro
   =========================================================== */

:root {
  --pink:   #f94e7c;
  --yellow: #f7b500;
  --teal:   #2fd6c3;
  --gray:   #9aa0a6;
  --black:  #141414;
  --white:  #ffffff;

  --font-display: 'Anton', system-ui, sans-serif;
  --font-marker:  'Permanent Marker', cursive;
  --font-body:    'Poppins', system-ui, sans-serif;

  --maxw: 1140px;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(0, 0, 0, .18);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Botones ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 14px 26px;
  border: 3px solid var(--black);
  border-radius: 50px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 4px 4px 0 var(--black);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--black); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--black); }

.btn-pink   { background: var(--pink);   color: var(--white); }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-outline{ background: var(--white);  color: var(--black); }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 4px solid var(--yellow);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .04em;
  color: var(--yellow);
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 18px;
}
.nav > a {
  color: var(--white);
  font-weight: 600;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  white-space: nowrap;
  padding: 6px 2px;
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav > a:hover,
.nav > a.is-active {
  color: var(--teal);
  border-color: var(--teal);
}

/* Iconos de redes en el header */
.nav-socials {
  display: flex;
  gap: 8px;
  padding-left: 8px;
  border-left: 2px solid rgba(255, 255, 255, .2);
  margin-left: 4px;
}
.nav-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  transition: background .15s, transform .15s;
}
.nav-socials a:hover { background: var(--teal); transform: translateY(-2px); }
.nav-socials .icon { width: 15px; height: 15px; }

/* Icono SVG genérico */
.icon { width: 18px; height: 18px; fill: currentColor; display: block; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--yellow);
  border-radius: 3px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: calc(100vh - 76px);
  background:
    linear-gradient(135deg, var(--yellow) 0%, var(--yellow) 18%, var(--pink) 18%, var(--pink) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* franja turquesa decorativa */
  content: "";
  position: absolute;
  top: -10%;
  left: 22%;
  width: 70px;
  height: 130%;
  background: var(--teal);
  transform: rotate(18deg);
  opacity: .9;
}
.hero-img {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-cta {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 40px 56px;
  color: var(--white);
}
.hero-kicker {
  font-family: var(--font-marker);
  font-size: 1.4rem;
  color: var(--black);
  transform: rotate(-3deg);
  margin-bottom: 8px;
}
.hero-title { margin-bottom: 22px; }
.hero-logo {
  width: min(100%, 520px);
  filter: drop-shadow(5px 5px 0 var(--black));
}
.hero-sub {
  font-size: 1.15rem;
  font-weight: 600;
  max-width: 32ch;
  margin-bottom: 28px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== Secciones genéricas ===== */
.section { padding: 90px 0; }
.section-fechas     { background: var(--white); }
.section-video      { background: var(--yellow); }
.section-fotos      { background: var(--black); color: var(--white); }
.section-sobre      { background: var(--teal); }
.section-news       { background: var(--pink); color: var(--white); }
.section-productores{ background: var(--white); }
.section-page       { background: var(--white); }
.section-prensa     { background: var(--teal); }
.section-productores-private { background: var(--yellow); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 44px;
  letter-spacing: .01em;
}
.section-title span { color: var(--pink); }
.section-fotos .section-title span { color: var(--teal); }

.section-note {
  margin-top: 18px;
  font-size: .8rem;
  font-style: italic;
  opacity: .65;
}

/* ===== Fechas ===== */
.dates { list-style: none; display: grid; gap: 18px; }
.dates-empty { font-size: 1.05rem; font-weight: 500; color: #555; }
.date-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 18px 24px;
  box-shadow: 6px 6px 0 var(--pink);
  transition: transform .15s, box-shadow .15s;
}
.date-card:hover { transform: translateY(-3px); box-shadow: 8px 10px 0 var(--teal); }
.date-badges {
  position: absolute;
  top: -10px;
  right: 18px;
  display: flex;
  gap: 8px;
}
.badge {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 2px solid var(--black);
  border-radius: 50px;
}
.badge-soldout { background: var(--black); color: var(--yellow); }
.badge-promo { background: var(--teal); color: var(--black); }
.date-when {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--yellow);
  border-radius: 14px;
  min-width: 84px;
  padding: 12px 8px;
}
.date-day { font-family: var(--font-display); font-size: 2.2rem; line-height: 1; }
.date-month { font-weight: 700; letter-spacing: .15em; font-size: .85rem; }
.date-year { font-size: .68rem; letter-spacing: .08em; opacity: .7; }
.date-info { flex: 1; }
.date-info h3 { font-size: 1.3rem; font-weight: 800; }
.date-info p { color: #555; font-weight: 500; }
.date-price { color: var(--black) !important; font-weight: 700 !important; }
.date-sale-info {
  font-size: .85rem;
  font-weight: 700;
  text-align: center;
  max-width: 14ch;
}

/* ===== Video ===== */
.video-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
}
.video-copy .section-title { margin-bottom: 20px; }
.video-copy p { font-size: 1.1rem; font-weight: 600; }
.video-player {
  position: relative;
  aspect-ratio: 9/16;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--black);
  border: 4px solid var(--black);
  border-radius: var(--radius);
  box-shadow: 10px 10px 0 var(--pink);
}
.video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Sobre Lea ===== */
.sobre-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.sobre-photo { position: sticky; top: 96px; }
.sobre-photo img {
  border: 4px solid var(--black);
  border-radius: var(--radius);
  box-shadow: 10px 10px 0 var(--yellow);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}

/* ===== Fotos ===== */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 18px;
  align-items: stretch;
  line-height: 0;
}
.photo-strip img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 4px solid var(--black);
  border-radius: var(--radius);
  box-shadow: 10px 10px 0 var(--teal);
}
.section-fotos .photo-strip img {
  border-color: var(--teal);
  box-shadow: 10px 10px 0 var(--pink);
}
.photo-strip img:nth-child(1) { object-position: center 48%; }
.photo-strip img:nth-child(2) { object-position: center 40%; }
.photo-strip img:nth-child(3) { object-position: center 28%; }
.sobre-quote {
  font-family: var(--font-marker);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 22px;
}
.sobre-text p { margin-bottom: 16px; font-size: 1.05rem; }

/* ===== Newsletter / Novedades ===== */
.news-box { text-align: center; max-width: 720px; }
.news-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 12px;
}
.news-sub { font-size: 1.1rem; font-weight: 500; margin-bottom: 26px; }
.news-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.news-form input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 18px;
  border: 3px solid var(--black);
  border-radius: 50px;
  min-width: 280px;
  background: var(--white);
  color: var(--black);
}
.news-form input:focus { outline: 3px solid var(--yellow); }
.section-news .section-note { color: rgba(255, 255, 255, .85); }

/* Formulario real de Contact Form 7 (newsletter): mismo lenguaje visual que .news-form */
.section-news .wpcf7-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.section-news .wpcf7-form-control-wrap {
  display: contents;
}
.section-news .news-input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 18px;
  border: 3px solid var(--black);
  border-radius: 50px;
  min-width: 220px;
  background: var(--white);
  color: var(--black);
}
.section-news .news-input:focus { outline: 3px solid var(--yellow); }
.section-news .wpcf7-not-valid-tip {
  flex-basis: 100%;
  color: var(--black);
  background: var(--yellow);
  display: inline-block;
  margin-top: -8px;
  padding: 2px 12px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 700;
}
.section-news .wpcf7-response-output {
  flex-basis: 100%;
  margin: 12px 0 0;
  padding: 10px 18px !important;
  border-radius: 12px;
  color: var(--white);
  border-color: var(--white) !important;
  font-weight: 600;
}

/* ===== Redes (botones-icono) ===== */
.socials { display: flex; flex-wrap: wrap; gap: 12px; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  transition: background .15s, color .15s, transform .15s;
}
.socials a:hover { background: var(--pink); color: var(--white); transform: translateY(-3px); }
.socials .icon { width: 20px; height: 20px; }

/* ===== Productores ===== */
.prod-box {
  background: var(--teal);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 8px 8px 0 var(--pink);
  max-width: 760px;
  margin: 0 auto;
}
.producer-signature {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 48px;
  max-width: 760px;
  margin: 24px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(20, 20, 20, .18);
}
.producer-signature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
}
.producer-eyebrow {
  margin-bottom: 10px;
  font-size: .7rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
  opacity: .75;
}
.producer-signature-item a { display: block; width: 100%; }
.producer-signature-item img {
  max-height: 56px;
  width: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .85;
  transition: filter .15s, opacity .15s;
}
.producer-signature-item a:hover img,
.producer-signature-item img:hover {
  filter: grayscale(0);
  opacity: 1;
}
.prod-tagline {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.prod-list { list-style: none; margin-top: 18px; display: grid; gap: 10px; }
.prod-list li { font-size: 1.05rem; }
.prod-list a:hover { color: var(--pink); }
.prod-private-link { margin-top: 24px; }

/* ===== Páginas WordPress ===== */
.page-content {
  max-width: 820px;
}
.page-content p,
.page-content li {
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.page-content a {
  color: var(--pink);
  font-weight: 700;
}

/* ===== Prensa ===== */
.press-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: start;
}
.press-lead {
  font-size: 1.15rem;
  font-weight: 600;
  max-width: 42ch;
}
.press-copy {
  margin-top: 22px;
}
.press-copy p {
  margin-bottom: 14px;
}
.press-password,
.press-downloads {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--pink);
  padding: 28px;
}
.post-password-form {
  display: grid;
  gap: 16px;
}
.post-password-form p {
  margin: 0;
}
.post-password-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.post-password-form input[type="password"] {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 3px solid var(--black);
  border-radius: 12px;
  background: var(--white);
}
.post-password-form input[type="submit"] {
  display: inline-block;
  width: fit-content;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 14px 26px;
  border: 3px solid var(--black);
  border-radius: 50px;
  cursor: pointer;
  background: var(--pink);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--black);
}
.press-downloads {
  display: grid;
  gap: 18px;
}
.press-card {
  border-bottom: 2px solid rgba(20, 20, 20, .14);
  padding-bottom: 20px;
}
.press-card:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.press-card h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.press-card p {
  margin-bottom: 18px;
}
.material-category {
  color: var(--pink);
  font-size: .78rem !important;
  font-weight: 800;
  letter-spacing: .06em;
  margin-bottom: 8px !important;
  text-transform: uppercase;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 54px 0;
}
.footer-logo {
  width: min(360px, 80vw);
  margin: 0 auto 24px;
}
.socials-footer { justify-content: center; margin-bottom: 22px; }
.socials-footer a { background: transparent; color: var(--white); border-color: var(--white); }
.socials-footer a:hover { background: var(--teal); color: var(--black); border-color: var(--teal); }
.footer-copy { font-size: .85rem; opacity: .7; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px) {
  .nav-socials { display: none; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    border-bottom: 4px solid var(--yellow);
    transform: translateY(-130%);
    transition: transform .3s ease;
    z-index: 99;
  }
  .nav.open { transform: translateY(0); }
  .nav > a { padding: 14px 24px; border-bottom: none; }
  .nav-socials {
    display: flex;
    justify-content: center;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding: 16px 0 8px;
    margin: 4px 0 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero::before { display: none; }
  .hero-img { order: 2; }
  .hero-img img { height: auto; max-height: 70vh; }
  .hero-cta { order: 1; text-align: center; padding: 48px 24px 28px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }

  .sobre-grid,
  .press-layout,
  .video-grid { grid-template-columns: 1fr; gap: 28px; }
  .sobre-photo { position: static; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip img { height: min(78vw, 420px); }
  .section { padding: 64px 0; }
}

@media (max-width: 520px) {
  .date-card { flex-wrap: wrap; }
  .date-info { flex-basis: 60%; }
  .news-form input { min-width: 100%; }
  .producer-signature { gap: 28px; }
}

/* Accesibilidad: respeta reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
