@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300&family=Montserrat:wght@300;400&family=Tangerine:wght@400;700&display=swap');

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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #faf8f5;
  color: #3a3a3a;
}

/* ── PORTADA ── */
.portada {
  display: flex;
  height: 100vh;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
  background-color: #e8ede0;
}

.portada::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #e8ede0;
  opacity: 1;
  z-index: 0;
}

.portada__imagen,
.portada__contenido {
  position: relative;
  z-index: 1;
}

.portada__imagen {
  width: 50%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.portada__imagen img {
  width: auto;
  height: 85%;
  object-fit: contain;
}

.portada__contenido {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.portada__mitad-top {
  flex: 1;
}

.portada__mitad-bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.portada__leyenda {
  font-family: 'Tangerine', cursive;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  color: #3b4a2f;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.portada__leyenda::before,
.portada__leyenda::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: #3b4a2f;
  opacity: 0.4;
  max-width: 40px;
}

.portada__nombres {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.5rem, 6vw, 7rem);
  color: #3b4a2f;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.portada__nombres span {
  font-family: 'Tangerine', cursive;
  font-size: 1.3em;
  color: #3b4a2f;
}

.portada__fecha {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  letter-spacing: 0.2em;
  color: #3b4a2f;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.portada__frase {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  line-height: 2;
  color: #5a6b4a;
  max-width: 360px;
}

.portada__img-movil {
  display: none;
}

/* ── REPRODUCTOR ── */
.reproductor {
  background-color: #faf8f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  gap: 0.8rem;
}

.reproductor__titulo {
  font-family: 'Tangerine', cursive;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: #3b4a2f;
}

.reproductor__cancion {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #5a6b4a;
  margin-bottom: 1rem;
}

.reproductor__controles {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  max-width: 420px;
}

.reproductor__btn {
  background: none;
  border: 1.5px solid #3b4a2f;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b4a2f;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.reproductor__btn:hover {
  background-color: #3b4a2f1a;
}

.reproductor__barra-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
}

.reproductor__tiempo {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  color: #5a6b4a;
  min-width: 2rem;
}

.reproductor__barra {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 1px;
  background: #c5cdb8;
  outline: none;
  cursor: pointer;
}

.reproductor__barra::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3b4a2f;
  cursor: pointer;
}

.reproductor__barra::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3b4a2f;
  border: none;
  cursor: pointer;
}

/* ── PADRES ── */
.padres {
  background-color: #e8ede0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5rem 2rem;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.padres::before,
.padres::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-color: rgba(59, 74, 47, 0.18);
  border-style: solid;
  pointer-events: none;
}

.padres::before {
  top: 24px;
  left: 24px;
  border-width: 1px 0 0 1px;
}

.padres::after {
  bottom: 24px;
  right: 24px;
  border-width: 0 1px 1px 0;
}

.padres__deco {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  pointer-events: none;
}

.padres__bendicion {
  font-family: 'Tangerine', cursive;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #3b4a2f;
}

.padres__linea {
  width: 60px;
  height: 1px;
  background-color: #3b4a2f;
  opacity: 0.4;
}

.padres__grid {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 1rem;
}

.padres__grupo {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.padres__rol {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #5a6b4a;
  margin-bottom: 0.5rem;
}

.padres__nombre {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: #3b4a2f;
  line-height: 1.6;
}

.padres__separador {
  font-size: 0.8rem;
  color: #3b4a2f;
  opacity: 0.5;
  align-self: center;
}

/* ── SAVE THE DATE ── */
.savedate {
  background-color: #faf8f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5rem 4rem;
  gap: 1.2rem;
  position: relative;
}

.savedate::before,
.savedate::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-color: rgba(59, 74, 47, 0.18);
  border-style: solid;
  pointer-events: none;
  z-index: 0;
}

.savedate::before {
  top: 24px;
  right: 24px;
  border-width: 1px 1px 0 0;
}

.savedate::after {
  bottom: 24px;
  left: 24px;
  border-width: 0 0 1px 1px;
}

.savedate__titulo,
.savedate__linea,
.savedate__fecha,
.savedate__contador {
  position: relative;
  z-index: 1;
}

.savedate__titulo {
  font-family: 'Tangerine', cursive;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: #3b4a2f;
}

.savedate__linea {
  width: 60px;
  height: 1px;
  background-color: #3b4a2f;
  opacity: 0.4;
}

.savedate__fecha {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: 0.2em;
  color: #3b4a2f;
}

.savedate__contador {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.savedate__fila {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.savedate__unidad {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(59, 74, 47, 0.2);
  padding: 0.8rem 1.2rem;
  border-radius: 0 6px 0 6px;
  width: 110px;
}

.savedate__num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #3b4a2f;
  line-height: 1;
  min-width: 2ch;
}

.savedate__label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #5a6b4a;
}

.savedate__dos {
  display: none;
}

/* ── SEPARADOR SVG ── */
.separador-svg {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #faf8f5;
}

.separador-svg__img {
  width: 320px;
  filter: brightness(0) saturate(100%) invert(22%) sepia(18%) saturate(800%) hue-rotate(60deg) brightness(60%);
}

/* ── UBICACIÓN ── */
.ubicacion {
  background-color: #e8ede0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5rem 2rem;
  gap: 1.5rem;
}

.ubicacion__titulo {
  font-family: 'Tangerine', cursive;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: #3b4a2f;
}

.ubicacion__linea {
  width: 60px;
  height: 1px;
  background-color: #3b4a2f;
  opacity: 0.4;
}

.ubicacion__grid {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 2.5rem;
  margin-top: 1rem;
  max-width: 560px;
  width: 100%;
  min-height: 110px;
}

.ubicacion__separador {
  width: 60px;
  height: 1px;
  background-color: #3b4a2f;
  opacity: 0.2;
  margin: 1rem 0;
}

.ubicacion__fila {
  display: contents;
  text-decoration: none;
  color: inherit;
}

.ubicacion__grid:has(.ubicacion__fila) {
  border-left: 2px solid rgba(59, 74, 47, 0.25);
  padding-left: 1.5rem;
  transition: border-color 0.2s ease;
}

.ubicacion__grid--dresscode {
  border-left: 2px solid rgba(59, 74, 47, 0.25);
  padding-left: 1.5rem;
}

.ubicacion__icono-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.ubicacion__icono-wrap {
  position: relative;
  display: inline-flex;
}

.ubicacion__icono {
  width: 56px;
  height: 56px;
}

.ubicacion__click-wrap {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #3b4a2f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.ubicacion__icono-click {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

.ubicacion__etiqueta {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #5a6b4a;
}

.ubicacion__info-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
  align-items: center;
}

.ubicacion__nombre-evento {
  font-family: 'Tangerine', cursive;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #3b4a2f;
  line-height: 1;
}

.ubicacion__lugar {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: #3b4a2f;
  line-height: 1.6;
}

.ubicacion__leyenda,
.ubicacion__hora {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: #3b4a2f;
  line-height: 1.6;
}

.ubicacion__lugar--bold {
  font-weight: 600;
}

/* ── REGALOS ── */
.regalos {
  background-color: #faf8f5;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5rem 4rem;
  gap: 1.5rem;
}

.regalos::before,
.regalos::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-color: rgba(59, 74, 47, 0.18);
  border-style: solid;
  pointer-events: none;
}

.regalos::before {
  top: 24px;
  left: 24px;
  border-width: 1px 0 0 1px;
}

.regalos::after {
  bottom: 24px;
  right: 24px;
  border-width: 0 1px 1px 0;
}

.regalos__titulo {
  font-family: 'Tangerine', cursive;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: #3b4a2f;
}

.regalos__linea {
  width: 60px;
  height: 1px;
  background-color: #3b4a2f;
  opacity: 0.4;
}

.regalos__leyenda {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.9;
  color: #5a6b4a;
  max-width: 520px;
}

.regalos__tarjeta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border: 1px solid rgba(59, 74, 47, 0.2);
  border-radius: 8px;
  padding: 1.2rem 2rem;
  margin-top: 0.5rem;
  text-decoration: none;
  color: inherit;
  background-color: rgba(59, 74, 47, 0.04);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.regalos__tarjeta:hover {
  border-color: rgba(59, 74, 47, 0.5);
  background-color: rgba(59, 74, 47, 0.08);
}

.regalos__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.regalos__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.regalos__tienda {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #3b4a2f;
}

.regalos__folio {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #5a6b4a;
}

/* ── FOTOS ── */
.fotos {
  background-color: #e8ede0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5rem 2rem;
  gap: 1.5rem;
}

.fotos__titulo {
  font-family: 'Tangerine', cursive;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: #3b4a2f;
}

.fotos__linea {
  width: 60px;
  height: 1px;
  background-color: #3b4a2f;
  opacity: 0.4;
}

.fotos__grid {
  display: flex;
  flex-direction: row;
  gap: 8rem;
  margin-top: 1rem;
  align-items: flex-start;
  justify-content: center;
}

.fotos__circulo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  outline: 1px solid rgba(59, 74, 47, 0.25);
  outline-offset: 6px;
  box-shadow: 0 0 0 13px rgba(59, 74, 47, 0.06);
  cursor: pointer;
}

.fotos__circulo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.fotos__circulo:hover img {
  transform: scale(1.05);
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.activo {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox__cerrar {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 1.8rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.footer {
  background-color: #3b4a2f;
  color: #f5f0e8;
  text-align: center;
  padding: 2rem 1.5rem;
}

.footer__texto {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .fotos__grid {
    flex-direction: column;
    gap: 3.5rem;
    align-items: center;
  }

  .fotos__circulo {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 768px) {
  .portada {
    flex-direction: column;
    height: 100vh;
    min-height: 100vh;
    background-image: url('assets/fondo.png');
    background-size: cover;
    background-position: center;
  }

  .portada::before {
    display: block;
  }

  .portada__imagen {
    display: none;
  }

  .portada__contenido {
    width: 100%;
    height: 100%;
    padding: 0;
  }

  .portada__mitad-top {
    flex: 1;
    overflow: hidden;
  }

  .portada__img-movil {
    display: block;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    object-fit: cover;
    margin: 1rem;
    border-radius: 4px;
  }

  .portada__mitad-bottom {
    flex: 1;
    padding: 2rem;
  }

  .portada__leyenda {
    justify-content: center;
  }

  .padres__grid {
    flex-direction: column;
    gap: 2rem;
  }

  .padres__separador {
    transform: rotate(90deg);
  }

  .savedate__contador {
    flex-direction: column;
    gap: 1rem;
  }

  .savedate__fila {
    flex-direction: column;
    gap: 1rem;
  }

  .ubicacion__grid {
    gap: 1.5rem;
  }
}
