/* ============================================
   HERO SECTION (PARALLAX)
   ============================================ */
.invitation-hero.parallax-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  background: var(--bg-red-abstract);
  background-attachment: fixed;
}

.parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60vh;
  z-index: 1;
  overflow: hidden;
  border-radius: 0;
}

.parallax-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/img/primer.jpeg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
  transform: translateY(0);
}

.hero-content-modal {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 40vh;
  height: auto;
  background: linear-gradient(to top, rgba(107, 26, 40, 0.95) 0%, rgba(139, 38, 53, 0.85) 50%, transparent 100%);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow-y: auto;
  padding: 4rem 0 6rem 0;
}

.hero-content-modal::before,
.hero-content-modal::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--color-gold), transparent);
  z-index: 1;
}

.hero-content-modal::before {
  left: 20px;
}

.hero-content-modal::after {
  right: 20px;
}

/* ============================================
   WELCOME MODAL
   ============================================ */
#welcomeModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(107, 26, 40, 0.98) 0%, rgba(139, 38, 53, 0.95) 50%, rgba(192, 30, 58, 0.98) 100%);
  backdrop-filter: blur(5px);
}

#welcomeModal button:first-of-type:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.9) !important;
  color: var(--color-primary-red-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4), 0 0 25px rgba(255, 255, 255, 0.2) !important;
}

#welcomeModal button:first-of-type:active {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(255, 255, 255, 0.95) !important;
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.15) !important;
}

#welcomeModal button:last-of-type:hover {
  background: var(--gradient-red-hover) !important;
  box-shadow: var(--shadow-button-hover), 0 0 25px rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-1px);
}

#welcomeModal button:last-of-type:active {
  background: linear-gradient(135deg, #722F37 0%, #8B2635 50%, #A02030 100%) !important;
  box-shadow: 0 2px 10px rgba(139, 38, 53, 0.4), 0 0 15px rgba(255, 255, 255, 0.15) !important;
  transform: translateY(0);
}

/* ============================================
   BOTONES
   ============================================ */
.btn-custom,
.custom-card-btn,
.custom-btn {
  background: var(--gradient-red);
  color: var(--color-text-light);
  font-family: var(--font-sans);
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  box-shadow: var(--shadow-button), 0 0 20px rgba(255, 255, 255, 0.15);
  transition: all 0.5s ease;
  cursor: pointer;
  height: 41px;
  line-height: 17px;
  box-sizing: border-box;
  text-decoration: none;
  display: inline-block;
}

.btn-custom:hover,
.custom-card-btn:hover,
.custom-btn:hover,
.btn-custom:focus,
.custom-card-btn:focus,
.custom-btn:focus {
  background: var(--gradient-red-hover);
  box-shadow: var(--shadow-button-hover), 0 0 25px rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
  color: var(--color-text-light);
  text-decoration: none;
}

.custom-card-btn {
  min-width: 180px;
  max-width: 250px;
  width: 100%;
  margin-bottom: 0.3rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.btn-instagram {
  text-decoration: none !important;
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
  display: block;
}

/* ============================================
   CARDS
   ============================================ */
.card-custom {
  border-radius: 24px !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 4px 15px rgba(0,0,0,0.2) !important;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.section-subtitle {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-gold);
  margin-top: 0.3rem;
  margin-bottom: 0.7rem;
  font-weight: 400;
}

.card-musica {
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 1.5rem;
  overflow-wrap: break-word;
}

.card-musica button {
  width: 100%;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.content-item-fiesta {
  max-width: 320px !important;
  width: 90% !important;
  margin: 0 auto 1.2rem auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  word-break: break-word !important;
  box-sizing: border-box !important;
  padding: 1.5rem 1rem !important;
  overflow-wrap: break-word !important;
}

.card-musica-text,
.card-musica p,
.card-musica .text-center,
.content-item-fiesta p,
.content-item-fiesta button {
  max-width: 100%;
  word-break: break-word;
  margin: 0 auto;
  text-align: center !important;
  white-space: normal !important;
  width: auto !important;
}

.card-musica .card-text,
.content-item-fiesta .card-text {
  text-align: center !important;
  padding: 0 1rem !important;
  word-break: break-word !important;
  max-width: 100% !important;
  width: 100% !important;
}

#cards .card-custom + .card-custom {
  margin-top: 1.2rem !important;
}

#cards .card-custom {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 360px;
  width: 100%;
}

/* ============================================
   MODALES
   ============================================ */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
}

.modal-content {
  max-width: 90vw;
  width: 100%;
  margin: 0 auto;
  top: 20%;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  padding: 1rem;
  position: relative;
  z-index: 1050;
  text-align: center;
  box-shadow: 0 8px 30px 8px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.modal-close {
  position: absolute;
  top: -12px;
  right: -4px;
  background-color: #d79330;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-family: Arial, sans-serif;
  line-height: 1;
  font-size: 1.2rem;
  z-index: 1060;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.modal-fade {
  width: 100vw;
  left: 0 !important;
}

/* ============================================
   CARRUSEL (RECORRIDO)
   ============================================ */
#recorrido .carousel-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  height: 350px;
}

#recorrido .carousel-container {
  display: flex;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
  height: 100%;
  position: relative;
}

#recorrido .carousel-slide {
  flex-shrink: 0;
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#recorrido .polaroid-card {
  width: 100%;
  max-width: 100%;
  height: 100%;
  background-color: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

#recorrido .polaroid-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

#recorrido .carousel-slide img:hover {
  transform: scale(1.02);
}

/* Flechas de navegación del carrusel */
#recorrido .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(139, 38, 53, 0.9);
  border: 2px solid #8B2635;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(139, 38, 53, 0.4), 0 0 20px rgba(255, 255, 255, 0.15);
}

#recorrido .carousel-arrow:hover {
  background: rgba(192, 30, 58, 0.95);
  border-color: #C41E3A;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(139, 38, 53, 0.6), 0 0 25px rgba(255, 255, 255, 0.2);
}

#recorrido .carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

#recorrido .carousel-arrow-prev {
  left: 10px;
}

#recorrido .carousel-arrow-next {
  right: 10px;
}

#recorrido .carousel-arrow svg {
  width: 20px;
  height: 20px;
}

#recorrido .carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-gold);
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
}

#recorrido .carousel-dot:hover {
  transform: scale(1.2);
}

#recorrido .carousel-dot.active {
  opacity: 1;
}

/* ============================================
   SECCIONES ESPECÍFICAS
   ============================================ */
.section-bg {
  background: transparent;
  position: relative;
}

.section-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-red-abstract);
  background-attachment: fixed;
  z-index: -1;
}

/* Desktop/Mobile visibility */
.only-mobile {
  display: none !important;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.only-desktop {
  display: block !important;
}

.desktop-message {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  background: var(--bg-red-abstract);
  background-attachment: fixed;
  color: #F5E6D3;
  font-family: var(--font-fraunces);
  font-size: 1.8rem;
}

/* Botón de música */
#muteBtn {
  display: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: var(--gradient-red);
  color: var(--color-text-light);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10000;
  box-shadow: var(--shadow-button);
}

/* Welcome Modal específico */
#welcomeModal .welcome-content {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding: 2rem 1rem;
  position: relative;
  z-index: 1;
}

#welcomeModal .welcome-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.5px;
  font-weight: 400;
}

#welcomeModal .welcome-line {
  width: 250px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 0.3rem 0;
}

#welcomeModal .welcome-xv {
  font-family: var(--font-sans);
  font-size: 4.5rem;
  margin: 0;
  color: var(--color-gold);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
}

#welcomeModal .welcome-name {
  font-family: var(--font-serif);
  font-size: 5.5rem;
  margin: 0.3rem 0;
  color: var(--color-gold-light);
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

#welcomeModal .welcome-title {
  font-family: var(--font-sans);
  font-size: 22px;
  margin: 0.5rem 0;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 33px;
  text-transform: uppercase;
}

#welcomeModal .welcome-flourish {
  width: 140px;
  height: 35px;
  margin: 0.3rem 0;
  opacity: 0.9;
}

#welcomeModal .welcome-music-text {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  margin-top: 1.2rem;
  color: var(--color-gold);
  font-weight: 400;
  letter-spacing: 0.3px;
}

#welcomeModal .welcome-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 1.8rem;
  width: 100%;
  max-width: 500px;
  flex-wrap: wrap;
}

#welcomeModal .welcome-btn-primary {
  background: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 10px;
  box-sizing: border-box;
  color: var(--color-primary-red);
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  height: 41px;
  line-height: 17px;
  margin: 0px 5px 15px 5px;
  min-width: 230px;
  padding: 12px 15px;
  text-align: center;
  transition: all 0.5s ease;
  width: 230px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.15);
}

#welcomeModal .welcome-btn-secondary {
  background: var(--gradient-red);
  border: none;
  border-radius: 10px;
  box-sizing: border-box;
  color: var(--color-text-light);
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  height: 41px;
  line-height: 17px;
  margin: 0px 5px 15px 5px;
  min-width: 230px;
  padding: 12px 15px;
  text-align: center;
  transition: all 0.5s ease;
  width: 230px;
  box-shadow: var(--shadow-button), 0 0 20px rgba(255, 255, 255, 0.15);
}

/* Hero content modal */
.hero-content-modal .hero-inner {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 1.5rem;
  position: relative;
  z-index: 2;
}

.hero-content-modal .hero-date {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.hero-content-modal .hero-line {
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 0.2rem 0;
}

.hero-content-modal .hero-xv {
  font-family: var(--font-sans);
  font-size: 4.5rem;
  margin: 0;
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
}

.hero-content-modal .hero-name {
  font-family: var(--font-serif);
  font-size: 5.5rem;
  margin: 0.2rem 0;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.1;
}

.hero-content-modal .hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  margin: 0.3rem 0;
  color: var(--color-gold);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-content-modal .hero-heart {
  width: 20px;
  height: 20px;
  margin: 0.2rem 0;
  opacity: 0.9;
  animation: heartbeat 2s infinite ease-in-out;
}

.hero-content-modal .hero-quote {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  margin: 0.5rem 0;
  color: var(--color-gold);
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 1.6;
  text-align: center;
  max-width: 400px;
  padding: 0 1rem;
}

.hero-content-modal .hero-scrollwork {
  width: 120px;
  height: 50px;
  margin: 0.5rem 0 0 0;
  opacity: 0.9;
}

/* Secciones generales */
.section-container {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title-large {
  font-size: 3rem;
  font-family: var(--font-serif);
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.section-subtitle-large {
  font-size: 1.6rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.section-text {
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.section-separator {
  width: 100%;
  margin-bottom: 2rem;
  max-width: 300px;
}

/* Cuenta atrás */
#cuenta-atras {
  background: transparent;
  position: relative;
}

#cuenta-atras::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-red-abstract);
  background-attachment: fixed;
  z-index: -1;
  padding: 3rem 1rem;
  text-align: center;
  font-family: var(--font-fraunces);
  margin-top: 0;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

#cuenta-atras .timer-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}

#cuenta-atras .timer-separator {
  width: 100%;
  margin-bottom: 2rem;
  max-width: 500px;
}

#cuenta-atras #timer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 400px;
  color: var(--color-gold);
  margin-bottom: 2rem;
}

#cuenta-atras .timer-unit {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#cuenta-atras .timer-number {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

#cuenta-atras .timer-label {
  font-size: 0.9rem;
  font-family: var(--font-serif);
  color: var(--color-gold);
}

#cuenta-atras .timer-divider {
  width: 1px;
  height: 60px;
  background-color: var(--color-gold);
  opacity: 0.5;
}

#cuenta-atras .timer-crown {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

#cuenta-atras .timer-crown i {
  font-size: 50px;
  color: var(--color-primary-red-dark);
  animation: heartbeat 2s infinite ease-in-out;
}

/* Recorrido */
#recorrido {
  background: transparent;
  position: relative;
}

#recorrido::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-red-abstract);
  background-attachment: fixed;
  z-index: -1;
  padding: 3rem 1rem;
  text-align: center;
  font-family: var(--font-fraunces);
  margin-top: 0;
  margin-bottom: 30px;
  box-sizing: border-box;
  position: relative;
}

#recorrido .recorrido-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#recorrido .recorrido-separator {
  width: 100%;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

#recorrido .recorrido-title {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  color: var(--color-gold);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
  text-align: center;
}

#recorrido .recorrido-subtitle {
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--color-gold-light);
  margin-bottom: 2rem;
  line-height: 1.5;
  text-align: center;
  max-width: 400px;
}

#recorrido .recorrido-icon {
  margin-bottom: 2rem;
}

#recorrido .recorrido-icon i {
  font-size: 40px;
  color: var(--color-gold);
}

#recorrido .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 2rem;
}

/* Modales */
.modal-map,
.modal-confirmar,
.modal-sugerir {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.modal-map-content,
.modal-confirmar-content,
.modal-sugerir-content {
  background: rgba(255, 248, 240, 0.98);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  padding: 1.5rem;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 30px 8px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.modal-confirmar-content,
.modal-sugerir-content {
  width: 85vw;
  max-width: 400px;
  height: 80vh;
  overflow: hidden;
}

.modal-close-btn {
  position: absolute;
  top: -12px;
  right: -4px;
  background: var(--gradient-red);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  color: var(--color-text-light);
  font-weight: bold;
  cursor: pointer;
  font-family: Arial, sans-serif;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.modal-close-btn-large {
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
}

.modal-title {
  font-family: var(--font-serif);
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.modal-iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: none;
}

/* Floral backgrounds */
#floralBackground,
#floralBackgroundCards {
  position: absolute;
  width: 200px;
  height: 280px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  transition: opacity 0.6s ease-in-out;
  transform: rotate(90deg);
}

#floralBackground {
  left: -50px;
  top: 400px;
}

#floralBackgroundCards {
  right: -50px;
  top: 1650px;
  transform: rotate(90deg) scaleY(-1);
}

#floralBackground lottie-player,
#floralBackgroundCards lottie-player {
  width: 100%;
  height: 100%;
  max-width: 200px;
  max-height: 280px;
}

