/* =============================================
   ÍDISH Y KLEZMER EN CASA — Styles
   Paleta: negro profundo + crema + dorado sutil
   Tipografía: Cormorant Garamond + Jost
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0d0c0a;
  --dark:    #161410;
  --cream:   #f2ead8;
  --cream2:  #e8dcc4;
  --gold:    #b89a5a;
  --gold-lt: #d4b878;
  --white:   #faf6ee;
  --text-body: #c8bfa8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --max-w: 1100px;
  --section-py: 100px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 21px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* =============================================
   UTILIDADES
   ============================================= */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.label {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 48px;
  border: 1px solid var(--gold);
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  margin-top: 32px;
}
.btn:hover {
  background: var(--gold);
  color: var(--black);
}

.btn--light {
  border-color: var(--cream);
  color: var(--black);
  background: var(--cream);
}
.btn--light:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  color: var(--black);
}

.btn--wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}
.btn--wa:hover {
  background: #1ebe5c;
  border-color: #1ebe5c;
  color: #fff;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 32px;
  overflow: hidden;
}

/* Pataj falso con CSS */
.bg-yud {
  position: relative;
  display: inline-block;
}

.bg-yud::after {
  content: '';
  position: absolute;
  bottom: 0.3em;
  left: 50%;
  transform: translateX(-50%);
  width: 0.08em;
  height: 0.08em;
  border-radius: 50%;
  background: rgba(184,154,90,0.04);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(184,154,90,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(184,154,90,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Línea decorativa superior */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

/* Caracteres hebreos de fondo */
.hero__bg-text {
  position: absolute;
  font-family: 'Noto Serif Hebrew', serif;
  font-size: clamp(180px, 28vw, 380px);
  font-weight: 300;
  color: rgba(184,154,90,0.04);
  letter-spacing: -0.02em;
  user-select: none;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  line-height: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeUp 1s ease 0.2s both;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(52px, 8vw, 100px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 1s ease 0.4s both;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 8px;
  animation: fadeUp 1s ease 0.6s both;
}

.hero .btn {
  animation: fadeUp 1s ease 0.8s both;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  color: var(--gold);
  opacity: 0.4;
  animation: bounce 2s ease infinite 1.5s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* =============================================
   QUÉ ES
   ============================================= */

.what {
  padding: var(--section-py) 0;
  border-top: 1px solid rgba(184,154,90,0.12);
}

.what__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.what__text h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}

.what__text p {
  color: #d8cdb8;
  font-size: 19px;
  margin-bottom: 16px;
  max-width: 420px;
}

.what__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 16px;
}

.detail-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid rgba(184,154,90,0.1);
  background: rgba(184,154,90,0.02);
  transition: border-color 0.3s;
}
.detail-card:hover {
  border-color: rgba(184,154,90,0.3);
}

.detail-card__icon {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.detail-card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 6px;
}

.detail-card p {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.6;
}


/* =============================================
   VIDEO
   ============================================= */

.video-section {
  padding: var(--section-py) 0;
  border-top: 1px solid rgba(184,154,90,0.12);
  text-align: center;
}

.video-section h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 48px;
}

.video-section h2 em {
  font-style: italic;
  color: var(--gold-lt);
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  /* aspect ratio for YouTube Shorts (9:16) */
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(184,154,90,0.2);
  overflow: hidden;
  background: var(--dark);
}

.video-wrapper::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
}
.video-wrapper:hover::before {
  opacity: 0.5;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}


/* =============================================
   PRECIO
   ============================================= */

.pricing {
  padding: var(--section-py) 0;
  border-top: 1px solid rgba(184,154,90,0.12);
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(184,154,90,0.05) 0%, transparent 70%);
}

.pricing__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.pricing__inner .label {
  display: block;
  margin-bottom: 36px;
}

.pricing__amount {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.pricing__old {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 300;
  color: rgba(200,191,168,0.3);
  text-decoration: line-through;
  text-decoration-color: rgba(200,191,168,0.3);
  line-height: 1;
  padding-bottom: 6px;
}

.pricing__new {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing__note {
  font-size: 19px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 8px;
}


/* =============================================
   OCASIONES
   ============================================= */

.occasions {
  padding: var(--section-py) 0;
  border-top: 1px solid rgba(184,154,90,0.12);
  text-align: center;
}

.occasions__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 8px;
}

.occasion {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--cream);
  padding: 12px 24px;
  transition: color 0.3s;
}
.occasion:hover {
  color: var(--gold-lt);
}

.occasion__divider {
  font-size: 20px;
  color: var(--gold);
  opacity: 0.4;
  padding: 0 4px;
}


/* =============================================
   CONTACTO
   ============================================= */

.contact {
  padding: var(--section-py) 0;
  border-top: 1px solid rgba(184,154,90,0.12);
}

.contact__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.contact__inner h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.contact__inner h2 em {
  font-style: italic;
  color: var(--gold-lt);
}

.contact__inner p {
  font-size: 19px;
  color: var(--text-body);
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  padding: 40px 32px;
  border-top: 1px solid rgba(184,154,90,0.1);
  text-align: center;
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200,191,168,0.3);
}


/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
  :root {
    --section-py: 72px;
  }

  .what__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .what__text p {
    max-width: 100%;
    font-size: 19px;
  }

  .occasions__list {
    flex-direction: column;
    gap: 4px;
  }

  .occasion__divider {
    display: none;
  }

  .pricing__amount {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .pricing__old {
    padding-bottom: 0;
  }

  .video-wrapper {
    max-width: 320px;
  }
}
