* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
:root {
  --design-color-primary: #cfcfcf;
  --design-color-secondary: #5a5a5a;
  --design-color-darkgrey: #383838; /* Para resaltar textos*/
  --design-color-accent: #f4f6f7;
  --design-color-silver: #cfcfcf;
  --design-color-pink: #c9a0b5;
  --design-color-pink-soft: #e8c5d8;
}
html {
  scroll-behavior: smooth;
}
.design-body {
  background: linear-gradient(180deg, var(--design-color-accent) 0%, #ffffff 100%);
  color: var(--design-color-pink);
  font-size: 16px;
  line-height: 1.6;
  position: relative;
}
.design-body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(204,204,204,0.06) 0%, transparent 40%),
              radial-gradient(circle at 70% 70%, rgba(220,220,220,0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.design-h1 {
  color: #1f1f1f;
  font-size: 48px;
  line-height: 1.2;
}
.design-h2 {
  color: #3a3a3a;
  font-size: 28px;
  line-height: 1.3;
}
.design-button {
  background: linear-gradient(135deg, var(--design-color-pink), var(--design-color-pink-soft));
  color: #ffffff;
  border-radius: 9999px;
  border: none;
  font-weight: 600;
  font-size: 1.5rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
}
.design-link {
  color: #1f1f1f;
  text-decoration: none;
}
.design-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  background-color: var(--design-color-secondary);
}
.divider-rule {
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--design-color-pink),
    var(--design-color-pink) 20px,
    transparent 20px,
    transparent 35px
  );
}
.design-border {
  border-radius: 16px;
  border-color: var(--design-color-pink-soft);
  border-style: solid;
}
.welcome-overlay {
  transition: transform 1500ms ease-in-out, opacity 1500ms ease-in-out;
}
.overlay-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.overlay-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.music-control-button {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--design-color-silver), var(--design-color-pink));
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 40;
  transition: all 0.3s ease;
}
.music-control-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.music-control-button:active {
  transform: scale(0.95);
}
.music-icon-play,
.music-icon-pause {
  width: 24px;
  height: 24px;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .music-control-button {
    width: 50px;
    height: 50px;
    top: 15px;
    right: 15px;
  }
  .music-icon-play,
  .music-icon-pause {
    width: 20px;
    height: 20px;
  }
}
.transition-curtain {
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 600ms ease;
  will-change: transform, opacity;
}
.gold-underline {
  position: relative;
}
.gold-underline:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, var(--design-color-silver), var(--design-color-silver), #f6f6f6);
  border-radius: 2px;
}
.btn-outline-gold {
  position: relative;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}
.btn-outline-gold:hover {
  color: #1f1f1f;
  background-color: #fff8f5;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.btn-gold {
  background: linear-gradient(135deg, var(--design-color-silver), #e9e9e9);
  color: #fff;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}
.btn-gold:hover {
  box-shadow: 0 10px 18px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}
.btn-gold:active {
  transform: translateY(0);
  opacity: 0.95;
}
.divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, #e9e2d9, transparent);
}
.shadow-soft {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
.ring-gold {
  box-shadow: 0 0 0 1px #eadfca inset;
}
.modal-backdrop {
  background: rgba(0, 0, 0, 0.4);
  transition: opacity 0.25s ease;
  position: fixed;
  inset: 0px;
  z-index: 40;
  background-color: rgb(0 0 0 / 0.4);
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-panel {
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  border-width: 1px;
  background-color: rgb(255 255 255 / 1);
  border-radius: 1rem;
  max-width: 560px;
  width: 92%;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  box-shadow:
    0 0 #0000,
    0 0 #0000,
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.modal-hidden .modal-panel {
  transform: translateY(16px);
  opacity: 0;
}
.modal-visible .modal-panel {
  transform: translateY(0);
  opacity: 1;
}
*,
::before,
::after {
  box-sizing: border-box;
  undefined: undefined;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}
html,
:host {
  line-height: 1.5;
  undefined: undefined;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family:
    ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  undefined: undefined;
  line-height: inherit;
}
hr {
  height: 0;
  undefined: undefined;
  color: inherit;
  border-top-width: 1px;
}
abbr:where([title]) {
  text-decoration: underline dotted;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
a {
  color: inherit;
  text-decoration: inherit;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp,
pre {
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  undefined: undefined;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  text-indent: 0;
  undefined: undefined;
  border-color: inherit;
  border-collapse: collapse;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  undefined: undefined;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}
button,
select {
  text-transform: none;
}
button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
  -webkit-appearance: button;
  undefined: undefined;
  background-color: transparent;
  background-image: none;
}
:-moz-focusring {
  outline: auto;
}
:-moz-ui-invalid {
  box-shadow: none;
}
progress {
  vertical-align: baseline;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  undefined: undefined;
  outline-offset: -2px;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  undefined: undefined;
  font: inherit;
}
summary {
  display: list-item;
}
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}

/* Lightbox styles */
.lightbox-backdrop{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,0.75);
  z-index:2000;
}
.lightbox-backdrop.visible{display:flex}

.lightbox-panel{
  position:relative;
  max-width:95vw;
  max-height:95vh;
  display:flex;
  align-items:center;
  justify-content:center;
}

.lightbox-image{
  max-width:75vw;
  max-height:75vh;
  width:auto;
  height:auto;
  border-radius:6px;
  box-shadow:0 10px 30px rgba(0,0,0,0.6);
  background:#111;
}

.lightbox-close, .lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,0.06);
  border:none;
  color:#fff;
  padding:12px;
  border-radius:50%;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.lightbox-close{
  right:12px;
  top:12px;
  transform:none;
  padding:8px;
  border-radius:6px;
}

.lightbox-arrow.left{left:12px}
.lightbox-arrow.right{right:12px}

.lightbox-arrow svg, .lightbox-close svg{width:20px;height:20px;display:block}

.lightbox-caption{
  position:absolute;
  bottom:8px;
  left:50%;
  transform:translateX(-50%);
  color:#fff;
  font-size:0.9rem;
  text-align:center;
  padding:6px 12px;
  background:rgba(0,0,0,0.35);
  border-radius:6px;
}

/* Accessibility focus outline */
.lightbox-close:focus, .lightbox-arrow:focus { outline:2px solid rgba(255,255,255,0.2); outline-offset:2px }

/* Make sure images inside spread are slightly interactive */
.ycw-item{cursor:pointer}
.ycw-item:focus{outline:2px solid rgba(255,255,255,0.12)}

/* Spread FDA */
.FDA-gallery {
  perspective:700px;
  width:50vw;
  margin: 0 auto; /* centered horizontally */
  display:flex;
  justify-content:center;
  align-items:center;
  flex-flow:row wrap;
}

.FDA-gallery ul {
  position:relative;
  width:100px; height:100px;
  margin:0.1em;
  perspective-origin:center center;
  transform-style:preserve-3d;
  transform:rotateX(40deg);
  transition:all 0.4s;
}

.FDA-gallery ul:hover {
  transform:translateZ(100px) rotateX(20deg); z-index:999;
}

.FDA-gallery ul:hover .FDA-gallery\:li, .FDA-gallery ul:hover li {
  /* fallback in case li selectors aren't scoped elsewhere */
  filter:grayscale(0);
}

.FDA-gallery li {
  position:absolute; left:0; top:0;
  backface-visibility:hidden;
  width:100%; height:100%;
  transition:transform 0.3s, filter 1s;
  background:coral;
  filter:grayscale(0.9);
}
/*
Setup individual planes final poistion(by left top) and initial position(by transform)
*/
.FDA-gallery li:first-of-type {transform:none;}
.FDA-gallery li:nth-of-type(2) {left:100%; transform-origin:left center; transform:rotateY(180deg);}
.FDA-gallery li:nth-of-type(3) {top:100%; transform-origin:center top; transform:rotateX(-180deg);}
.FDA-gallery li:nth-of-type(4) {left:-100%; transform-origin:right center; transform:rotateY(-180deg);}
.FDA-gallery li:nth-of-type(5) {top:-100%; transform-origin:center bottom; transform:rotateX(180deg);}
.FDA-gallery li:nth-of-type(6) {top:100%; left:100%; transform-origin:center top; transform:rotateX(-180deg);}
.FDA-gallery li:nth-of-type(7) {top:100%; left:-100%; transform-origin:right center; transform:rotateY(-180deg);}
.FDA-gallery li:nth-of-type(8) {top:-100%; left:-100%; transform-origin:center bottom; transform:rotateX(180deg);}
.FDA-gallery li:nth-of-type(9) {top:-100%; left:100%; transform-origin:left center; transform:rotateY(180deg);}
/*
Setup transition-delay, for mouseout state 
*/
.FDA-gallery li:nth-of-type(2),.FDA-gallery li:nth-of-type(3),.FDA-gallery li:nth-of-type(4),.FDA-gallery li:nth-of-type(5) {transition-delay:0.03s;}
.FDA-gallery li:nth-of-type(6),.FDA-gallery li:nth-of-type(7),.FDA-gallery li:nth-of-type(8),.FDA-gallery li:nth-of-type(9) {transition-delay:0s;}
.FDA-gallery ul:hover :nth-of-type(2),.FDA-gallery ul:hover :nth-of-type(3),.FDA-gallery ul:hover :nth-of-type(4),.FDA-gallery ul:hover :nth-of-type(5) {transition-delay:0s}
.FDA-gallery ul:hover :nth-of-type(6),.FDA-gallery ul:hover :nth-of-type(7),.FDA-gallery ul:hover :nth-of-type(8),.FDA-gallery ul:hover :nth-of-type(9) {transition-delay:0.2s}
/*
Setup planes final state
*/
.FDA-gallery ul:hover :nth-of-type(2),.FDA-gallery ul:hover :nth-of-type(4),.FDA-gallery ul:hover :nth-of-type(7),.FDA-gallery ul:hover :nth-of-type(9) {transform:rotateY(0);} 
.FDA-gallery ul:hover :nth-of-type(3), .FDA-gallery ul:hover :nth-of-type(5),.FDA-gallery ul:hover :nth-of-type(6), .FDA-gallery ul:hover :nth-of-type(8) {transform:rotateX(0);}
/* 
Set background position
*/
.FDA-gallery ul li {background-size:300% 300%;}
.FDA-gallery li:nth-of-type(1) {background-position:center center;}
.FDA-gallery li:nth-of-type(2) {background-position:right center;}
.FDA-gallery li:nth-of-type(3) {background-position:center bottom;}
.FDA-gallery li:nth-of-type(4) {background-position:left center;}
.FDA-gallery li:nth-of-type(5) {background-position:center top;}
.FDA-gallery li:nth-of-type(6) {background-position:right bottom;}
.FDA-gallery li:nth-of-type(7) {background-position:left bottom;}
.FDA-gallery li:nth-of-type(8) {background-position:left top;}
.FDA-gallery li:nth-of-type(9) {background-position:right top;}
/*
Set background image source
*/
.FDA-gallery ul:nth-of-type(1) li { background-image:url(imagenes/gallery1.jpg);} 
.FDA-gallery ul:nth-of-type(1) { width:120px; height:80px; }
.FDA-gallery ul:nth-of-type(2) li { background-image:url(imagenes/gallery2.jpg);} 
.FDA-gallery ul:nth-of-type(2) { width:120px; height:80px; }
.FDA-gallery ul:nth-of-type(3) li { background-image:url(imagenes/gallery3.jpg);} 
.FDA-gallery ul:nth-of-type(3) { width:120px; height:80px; }
.FDA-gallery ul:nth-of-type(4) li { background-image:url(imagenes/gallery4.jpg);} 
.FDA-gallery ul:nth-of-type(4) { width:120px; height:80px; }
.FDA-gallery ul:nth-of-type(5) li { background-image:url(imagenes/gallery5.jpg);} 
.FDA-gallery ul:nth-of-type(5) { width:120px; height:80px; }
.FDA-gallery ul:nth-of-type(6) li { background-image:url(imagenes/gallery6.jpg);} 
.FDA-gallery ul:nth-of-type(6) { width:120px; height:80px; }
/* 
Hide debug label for FDA gallery only
*/
.FDA-gallery li { text-indent:999px; overflow:hidden; }



/* Spread by ycw - galería de 6 fotos */
.ycw-spread {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 360px;
  margin: 2.5rem auto;
  display: block;
  perspective: 1200px;
}
.ycw-spread .ycw-item {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  max-width: 36%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(20,20,20,0.18);
  transition: transform 700ms cubic-bezier(.16,.84,.44,1), z-index 0.2s ease, box-shadow 300ms ease;
  cursor: pointer;
  background: #fff;
  will-change: transform;
}
.ycw-spread .ycw-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms cubic-bezier(.16,.84,.44,1);
}

/* initial subtle stack with slight rotations */
.ycw-spread .ycw-item:nth-child(1) { z-index: 60; transform: translate(-50%, -50%) rotate(-12deg) scale(0.96); }
.ycw-spread .ycw-item:nth-child(2) { z-index: 55; transform: translate(-50%, -50%) rotate(-7deg) scale(0.97); }
.ycw-spread .ycw-item:nth-child(3) { z-index: 50; transform: translate(-50%, -50%) rotate(-2deg) scale(0.98); }
.ycw-spread .ycw-item:nth-child(4) { z-index: 50; transform: translate(-50%, -50%) rotate(2deg) scale(0.98); }
.ycw-spread .ycw-item:nth-child(5) { z-index: 55; transform: translate(-50%, -50%) rotate(7deg) scale(0.97); }
.ycw-spread .ycw-item:nth-child(6) { z-index: 60; transform: translate(-50%, -50%) rotate(12deg) scale(0.96); }

/* On hover/focus: spread items horizontally in a fan */
.ycw-spread:hover .ycw-item,
.ycw-spread:focus-within .ycw-item {
  transition: transform 700ms cubic-bezier(.16,.84,.44,1), box-shadow 200ms ease;
}
.ycw-spread:hover .ycw-item:nth-child(1) { transform: translate(calc(-50% - 420px), -50%) rotate(-18deg) scale(1); z-index: 10; }
.ycw-spread:hover .ycw-item:nth-child(2) { transform: translate(calc(-50% - 240px), -50%) rotate(-12deg) scale(1.02); z-index: 20; }
.ycw-spread:hover .ycw-item:nth-child(3) { transform: translate(calc(-50% - 80px), -50%) rotate(-6deg) scale(1.04); z-index: 30; }
.ycw-spread:hover .ycw-item:nth-child(4) { transform: translate(calc(-50% + 80px), -50%) rotate(6deg) scale(1.04); z-index: 30; }
.ycw-spread:hover .ycw-item:nth-child(5) { transform: translate(calc(-50% + 240px), -50%) rotate(12deg) scale(1.02); z-index: 20; }
.ycw-spread:hover .ycw-item:nth-child(6) { transform: translate(calc(-50% + 420px), -50%) rotate(18deg) scale(1); z-index: 10; }

/* Image zoom slightly on hover */
.ycw-spread .ycw-item:hover .ycw-img { transform: scale(1.06); }

.gallery-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--design-color-secondary);
  margin-top: 0.75rem;
}

@media (max-width: 900px) {
  .ycw-spread { height: 300px; }
  .ycw-spread .ycw-item { width: 260px; height: 180px; }
  .ycw-spread:hover .ycw-item:nth-child(1) { transform: translate(calc(-50% - 300px), -50%) rotate(-14deg) scale(1); }
  .ycw-spread:hover .ycw-item:nth-child(2) { transform: translate(calc(-50% - 170px), -50%) rotate(-10deg) scale(1.02); }
  .ycw-spread:hover .ycw-item:nth-child(3) { transform: translate(calc(-50% - 60px), -50%) rotate(-5deg) scale(1.03); }
  .ycw-spread:hover .ycw-item:nth-child(4) { transform: translate(calc(-50% + 60px), -50%) rotate(5deg) scale(1.03); }
  .ycw-spread:hover .ycw-item:nth-child(5) { transform: translate(calc(-50% + 170px), -50%) rotate(10deg) scale(1.02); }
  .ycw-spread:hover .ycw-item:nth-child(6) { transform: translate(calc(-50% + 300px), -50%) rotate(14deg) scale(1); }
}

@media (max-width: 520px) {
  .ycw-spread { height: 260px; }
  .ycw-spread .ycw-item { width: 180px; height: 140px; }
  .ycw-spread:hover .ycw-item:nth-child(1) { transform: translate(calc(-50% - 180px), -50%) rotate(-10deg) scale(1); }
  .ycw-spread:hover .ycw-item:nth-child(2) { transform: translate(calc(-50% - 110px), -50%) rotate(-6deg) scale(1.01); }
  .ycw-spread:hover .ycw-item:nth-child(3) { transform: translate(calc(-50% - 40px), -50%) rotate(-3deg) scale(1.02); }
  .ycw-spread:hover .ycw-item:nth-child(4) { transform: translate(calc(-50% + 40px), -50%) rotate(3deg) scale(1.02); }
  .ycw-spread:hover .ycw-item:nth-child(5) { transform: translate(calc(-50% + 110px), -50%) rotate(6deg) scale(1.01); }
  .ycw-spread:hover .ycw-item:nth-child(6) { transform: translate(calc(-50% + 180px), -50%) rotate(10deg) scale(1); }
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
dialog {
  padding: 0;
}
textarea {
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  undefined: undefined;
  color: #9ca3af;
}
button,
[role="button"] {
  cursor: pointer;
}
:disabled {
  cursor: default;
}
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  undefined: undefined;
  vertical-align: middle;
}
img,
video {
  max-width: 100%;
  height: auto;
}
[hidden] {
  display: none;
}
.body-root {
  font-family: Montserrat;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--design-color-secondary);
}
.welcome-overlay {
  position: fixed;
  inset: 0px;
  z-index: 50;
  background: linear-gradient(180deg, var(--design-color-accent) 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

/* Circular clip-path reveal (mask) */
.welcome-overlay {
  /* base overlay rules retained */
}
.welcome-container {
  width: 100%;
  max-width: 720px;
  padding-left: 2rem;
  padding-right: 2rem;
}
.welcome-content {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.welcome-monogram {
  width: 10rem;
  height: 10rem;
  border-radius: 9999px;
  box-shadow:
    0 0 0 0px #fff,
    0 0 0 calc(2px + 0px) rgb(59 130 246 / 0.5),
    0 0 #0000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.welcome-initials {
  font-weight: Great Vibes;
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: var(--design-color-primary);
}
.welcome-logo-image {
  width: 20rem;
  height: 20rem;
  object-fit: contain;
  margin-top: 0;
  margin-bottom: -2rem;
}

/* Zoom + desenfoque de fondo */
.welcome-logo-image {
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1), opacity 300ms ease;
  transform-origin: center center;
}
.welcome-logo-image.zoomed {
  transform: scale(2.4);
  opacity: 0.98;
}
.welcome-overlay.zooming {
  background-color: rgba(255,255,255,0.5) !important;
  transition: background-color 2000ms ease;
}
.invitation-root.blurred {
  filter: blur(8px) brightness(0.95);
  transition: filter 800ms ease, opacity 800ms ease;
}

/* Logo persistente en esquina superior izquierda */
.persistent-logo {
  position: fixed;
  object-fit: contain;
  pointer-events: none;
  z-index: 35;
  transition: opacity 1200ms cubic-bezier(0.22, 1, 0.36, 1), 
              top 1200ms cubic-bezier(0.22, 1, 0.36, 1), 
              left 1200ms cubic-bezier(0.22, 1, 0.36, 1), 
              width 1200ms cubic-bezier(0.22, 1, 0.36, 1), 
              height 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.persistent-logo.initial {
  opacity: 1;
  top: 0%;
  left: 20%;
  width: 480px;
  height: 480px;
  transform: translate(-50%, -50%);
}

.persistent-logo.animate-in {
  opacity: 1;
  top: 0px;
  left: 5px;
  width: 80px;
  height: 80px;
  transform: translate(0, 0);
}

/* Confetti (plata) */
.confetti-piece {
  position: fixed;
  top: -10vh;
  width: 10px;
  height: 14px;
  border-radius: 2px;
  opacity: 0.95;
  will-change: transform, opacity;
  z-index: 30; /* debajo del botón de audio (z-index:40) y del logo persistente (35) */
  pointer-events: none;
  transform-origin: center;
  animation-name: confetti-fall;
  animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
  animation-fill-mode: forwards;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-10vh) rotate(0deg) translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateY(120vh) rotate(720deg) translateX(var(--tx, 0px));
    opacity: 0.15;
  }
}

.welcome-greeting {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--design-color-pink);
}
.welcome-subtitle {
  color: var(--design-color-secondary);
  max-width: 560px;
  margin-top: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.welcome-birthday-name {
  font-family: 'Great Vibes', cursive;
  margin-top: -1rem;
  margin-bottom: -1rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--design-color-darkgrey);
}
.welcome-enter-button {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.0rem;
  line-height: 1.25rem;
  border-radius: 9999px;
}
.welcome-enter-button:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow:
    0 0 0 0px #fff,
    0 0 0 calc(2px + 0px) rgb(59 130 246 / 0.5),
    0 0 #0000;
}
.welcome-hint {
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgb(138 127 112 / 1);
}
.invitation-root {
  position: relative;
}
.hero-section {
  position: relative;
  width: 100%;
  background: linear-gradient(to bottom, rgba(207, 207, 207, 0.03) 0%, transparent 100%);
  border-bottom: 1px dashed var(--design-color-pink-soft);
}
.hero-container {
  position: relative;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.hero-image-wrapper {
  flex: 1 1 0%;
}
.hero-image-frame {
  border-radius: 1rem;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.hero-text-column {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.70rem;
  line-height: 1rem;
  color: var(--design-color-silver);
  font-weight: 600;
}
.hero-title {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-size: 5rem;
  line-height: 1.1;
  color: var(--design-color-pink);
  letter-spacing: 0.02em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.03);
}
.hero-description {
  color: rgb(90 90 90 / 1);
}
.hero-date-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  color: rgb(58 58 58 / 1);
}
.hero-date {
  color: var(--design-color-secondary);
  border-top: 1px solid var(--design-color-silver);
  border-bottom: 1px solid var(--design-color-silver);
  font-weight: 500;
  padding: 10px;
}
.hero-date-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.hero-accent-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--design-color-primary);
}
.symbols-icon-small{
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
}
.hero-accent-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.hero-accent-text {
  letter-spacing: 0.025em;
}
.divider-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.divider-container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.countdown-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
  padding-right: 3rem;
}
.countdown-container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: center;
}
.countdown-value-da,
.countdown-value-hora,
.countdown-value-min,
.countdown-value-seg {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 600;
  color: var(--design-color-pink);
}
.countdown-label-da,
.countdown-label-hora,
.countdown-label-min,
.countdown-label-seg {
  font-size: 0.70rem;
  line-height: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #a89fad;
  margin-top: 0.5rem;
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.countdown-card-da,
.countdown-card-hora,
.countdown-card-min,
.countdown-card-seg {
  border-width: 2px;
  border-style: dashed;
  border-color: var(--design-color-pink-soft);
  background: linear-gradient(135deg, rgba(247, 249, 251, 0.7) 0%, rgba(255, 255, 255, 0.5) 100%);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.divider-section-2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.divider-container-2 {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.location-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
  padding-right: 3rem;
}
.location-container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.location-card {
  border-width: 2px;
  border-radius: 12px;
  border-dashed: true;
  border-style: dashed;
  border-color: var(--design-color-pink-soft);
  padding: 1.5rem;
  background-color: rgba(247, 249, 251, 0.5);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.location-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 0%;
}
.location-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.text-display {
  display: flex;
  flex-direction: column;
}
.text-heading {
  font-weight: 600;
  color: var(--design-color-darkgrey);
  font-size: 1.25rem;
  line-height: 1.1rem;
}
.text-font {
  color: var(--design-color-secondary);
  margin-top: 0.25rem;
  font-size: 1.25rem;
}
.text-font-small {
  color: var(--design-color-secondary);
  margin-top: 0.25rem;
  font-size: 0.9rem;
}
.location-maps-button {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-radius: 9999px;
  border-width: 1px;
  border-color: rgb(234 223 202 / 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.location-maps-button:hover {
  opacity: 0.9;
  outline-style: solid;
  outline-width: 2px;
  outline-color: var(--design-color-primary);
}
.location-maps-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.location-maps-label {
  font-weight: 500;
}
.dresscode-card-row-1,
.dresscode-card-row-2,
.dresscode-card-row-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #3a3a3a;
}
.dresscode-card-icon-1,
.dresscode-card-icon-2,
.dresscode-card-icon-3 {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--design-color-pink);
}
.dresscode-card-text-1,
.dresscode-card-text-2,
.dresscode-card-text-3 {
  font-weight: 600;
  color: #3a3a3a;
}
/*
  padding-top: 3rem;
  padding-bottom: 3rem;
}*/
.divider-container-3 {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.dresscode-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.dresscode-container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: center;
}
.symbols-icon {
  width: 2rem;
  height: 2rem;
}
.Font-title {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1.1;
  color: var(--design-color-pink);
}
.Font-subtitle {
  color: var(--design-color-secondary);
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.1rem;
}
.dresscode-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.dresscode-card-1,
.dresscode-card-2,
.dresscode-card-3 {
  border-width: 2px;
  border-style: dashed;
  border-color: var(--design-color-pink-soft);
  border-radius: 12px;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(247, 249, 251, 0.5) 0%, rgba(255, 255, 255, 0.3) 100%);
}
.divider-section-4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.divider-container-4 {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.gifts-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.gifts-container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.gifts-card {
  border-width: 2px;
  border-style: dashed;
  border-color: var(--design-color-pink-soft);
  border-radius: 12px;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(247, 249, 251, 0.5) 0%, rgba(255, 255, 255, 0.3) 100%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.gifts-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 0%;
}
.gifts-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.gifts-texts {
  display: flex;
  flex-direction: column;
}
.gifts-open-button {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-radius: 9999px;
  border-width: 1px;
  border-color: rgb(234 223 202 / 1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gifts-button-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.gifts-button-label {
  font-weight: 500;
}
.divider-section-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.divider-container-5 {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.rsvp-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
  padding-right: 3rem;
}
.rsvp-container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: center;
}
.rsvp-title {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-size: 2.75rem;
  line-height: 1.1;
  color: var(--design-color-pink);
  margin-bottom: 0.5rem;
}
.rsvp-passes-count {
  font-weight: 600;
  color: rgb(58 58 58 / 1);
}
.rsvp-button-row {
  display: flex;
  justify-content: center;
}
.rsvp-whatsapp-button {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.rsvp-whatsapp-button:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow:
    0 0 0 0px #fff,
    0 0 0 calc(2px + 0px) rgb(59 130 246 / 0.5),
    0 0 #0000;
}
.rsvp-whatsapp-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.rsvp-whatsapp-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.divider-section-6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.divider-container-6 {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.gallery-section {
  padding-bottom: 4rem;
}
.gallery-container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: 0.75rem;
  overflow: hidden;
}
.gallery-image-1 {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.gallery-item-2 {
  border-radius: 0.75rem;
  overflow: hidden;
}
.gallery-image-2 {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.gallery-item-3 {
  border-radius: 0.75rem;
  overflow: hidden;
}
.gallery-image-3 {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.footer-section {
  padding-top: 2rem;
  padding-bottom: 4rem;
  padding-left: 3rem;
  padding-right: 3rem;
  background: linear-gradient(135deg, rgba(207, 207, 207, 0.02) 0%, transparent 100%);
  border-top: 1px dashed var(--design-color-pink-soft);
}
.footer-container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.footer-monogram {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: 2px dashed var(--design-color-pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-initials {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: var(--design-color-pink);
}
.footer-note {
  color: #6f6b63;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-style: italic;
}
.footer-small {
  color: rgb(179 168 154 / 1);
}
.modal-backdrop {
  position: fixed;
  inset: 0px;
  z-index: 50;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.modal-panel {
  background-color: rgb(255 255 255 / 1);
  width: 100%;
  max-width: 520px;
  margin-left: 1rem;
  margin-right: 1rem;
  border-radius: 1rem;
  padding: 1.5rem;
  border-width: 1px;
}
.gifts-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.gifts-modal-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gifts-modal-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.gifts-modal-title {
  font-weight: 600;
  color: rgb(31 31 31 / 1);
}
.gifts-modal-close {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  border-radius: 9999px;
  border-width: 1px;
  border-color: rgb(234 223 202 / 1);
  color: rgb(58 58 58 / 1);
}
.gifts-modal-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.gifts-modal-row-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background-color: rgb(250 247 240 / 1);
  border-width: 1px;
}
.gifts-modal-label-1 {
  color: rgb(107 107 107 / 1);
}
.gifts-modal-value-1 {
  font-weight: 500;
  color: rgb(31 31 31 / 1);
}
.gifts-modal-row-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background-color: rgb(250 247 240 / 1);
  border-width: 1px;
}
.gifts-modal-label-2 {
  color: rgb(107 107 107 / 1);
}
.gifts-modal-value-2 {
  font-weight: 500;
  color: rgb(31 31 31 / 1);
}
.gifts-modal-row-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background-color: rgb(250 247 240 / 1);
  border-width: 1px;
}
.gifts-modal-label-3 {
  color: rgb(107 107 107 / 1);
}
.gifts-modal-value-3 {
  font-weight: 500;
  color: rgb(31 31 31 / 1);
}
.font-great-vibes {
  font-family: "Great Vibes", cursive;
}
.font-montserrat {
  font-family: "Montserrat", sans-serif;
}
.body {
  background-color: rgb(255 255 255 / 1);
  color: var(--design-color-secondary);
  overflow: hidden;
}
.welcome-card {
  border-width: 1px;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-radius: 1rem;
  max-width: 720px;
  width: 92%;
  text-align: center;
  box-shadow:
    0 0 #0000,
    0 0 #0000,
    0 1px 2px 0 rgb(0 0 0 / 0.05);
}
.welcome-icon {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  border-width: 1px;
  border-color: var(--design-color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-crown {
  width: 2rem;
  height: 2rem;
}
.welcome-heading {
  color: var(--design-color-primary);
  font-size: 3rem;
  line-height: 1.25;
}
.welcome-divider {
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  width: 6rem;
  height: 1px;
}
.welcome-detail {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.main-content {
  opacity: 0;
  transform: translate(0, 1rem) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
  transition-property: all;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 700ms;
}
.hero-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-bottom-right-radius: 32px;
  border-bottom-left-radius: 32px;
}
.hero-overlay {
  position: absolute;
  inset: 0px;
  background-image: linear-gradient(
    to top,
    rgb(255 255 255 / 0.85),
    rgb(255 255 255 / 0.5),
    rgb(255 255 255 / 0)
  );
}
.hero-content {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.hero-name {
  color: var(--design-color-primary);
  font-size: 3.75rem;
  line-height: 1;
}
.hero-divider {
  margin-top: 1rem;
  width: 7rem;
  height: 2px;
}
.countdown-card {
  border-width: 1px;
  border-radius: 1rem;
  background-color: rgb(255 255 255 / 1);
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.Section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.icon-timer {
  width: 1.5rem;
  height: 1.5rem;
}
.countdown-item {
  text-align: center;
}
.countdown-number {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 600;
  color: var(--design-color-primary);
}
.countdown-label {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--design-color-secondary);
}
.icon-mappin {
  width: 1.5rem;
  height: 1.5rem;
}
.location-title {
  font-weight: 600;
}
.location-content {
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.location-info {
  flex: 1 1 0%;
}
.location-venue {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: var(--design-color-secondary);
}
.location-time {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.location-image-wrapper {
  width: 320px;
}
.location-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0.75rem;
  border-width: 1px;
}
.location-actions {
  margin-top: 1.5rem;
}
.icon-externallink {
  width: 1.25rem;
  height: 1.25rem;
}
.dress-code-section {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.dress-code-card {
  border-width: 1px;
  border-radius: 1rem;
  background-color: rgb(255 255 255 / 1);
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.icon-shirt {
  width: 1.5rem;
  height: 1.5rem;
}
.dress-code-title {
  font-weight: 600;
}
.dress-code-content {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.dress-code-text {
  flex: 1 1 0%;
}
.dress-code-style {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: var(--design-color-secondary);
}
.dress-code-note {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.dress-code-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.icon-sparkles {
  width: 1.5rem;
  height: 1.5rem;
}
.icon-gem {
  width: 1.5rem;
  height: 1.5rem;
}
.gift-section {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.gift-card {
  border-width: 1px;
  border-radius: 1rem;
  background-color: var(--design-color-accent);
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.gift-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.icon-gift {
  width: 1.5rem;
  height: 1.5rem;
}
.gift-title {
  font-weight: 600;
}
.gift-text {
  margin-top: 0.75rem;
}
.gift-button {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-weight: 600;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.gift-button:hover {
  opacity: 0.9;
  outline-style: solid;
  outline-width: 2px;
  outline-color: var(--design-color-primary);
}
.icon-wallet {
  width: 1.25rem;
  height: 1.25rem;
}
.rsvp-card {
  border-width: 1px;
  border-radius: 1rem;
  background-color: rgb(255 255 255 / 1);
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.rsvp-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.icon-messagesquare {
  width: 1.5rem;
  height: 1.5rem;
}
.rsvp-text {
  margin-top: 0.75rem;
}
.rsvp-actions {
  margin-top: 1.5rem;
}
.rsvp-whatsapp-button:hover {
  opacity: 0.9;
  outline-style: solid;
  outline-width: 2px;
  outline-color: var(--design-color-primary);
}
.icon-whatsapp {
  width: 1.25rem;
  height: 1.25rem;
}
.footer-card {
  border-width: 1px;
  border-radius: 1rem;
  background-color: var(--design-color-accent);
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.footer-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.icon-heart {
  width: 1.25rem;
  height: 1.25rem;
}
.icon-star {
  width: 1.25rem;
  height: 1.25rem;
}
.modal-container {
  position: fixed;
  inset: 0px;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-title {
  font-weight: 600;
}
.modal-close-button {
  border-radius: 9999px;
  padding: 0.5rem;
  border-width: 1px;
  transition-property:
    color, background-color, border-color, text-decoration-color, fill, stroke,
    opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.modal-close-button:hover {
  border-color: var(--design-color-primary);
}
.icon-close {
  width: 1.25rem;
  height: 1.25rem;
}
.modal-body {
  margin-top: 1rem;
}
.modal-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.icon-banknote {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
}
.modal-field {
  flex: 1 1 0%;
}
.modal-label {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.modal-value {
  font-weight: 600;
}
.modal-divider {
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  height: 1px;
}
.icon-idcard {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
}
.modal-footer {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.modal-close-action {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-weight: 600;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.modal-close-action:hover {
  opacity: 0.9;
  outline-style: solid;
  outline-width: 2px;
  outline-color: var(--design-color-primary);
}
#welcomeOverlay-2 {
  padding-top: 70px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}
.hidden {
  display: none !important;
}
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
  }
  .hero-image {
    height: 440px;
  }
  .countdown-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .location-card {
    flex-direction: column;
  }
  .gifts-card {
    flex-direction: column;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .modal-backdrop {
    align-items: center;
  }
  .hero-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .countdown-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .location-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .dress-code-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .gift-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .rsvp-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .footer-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 480px) {
  .welcome-greeting {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .hero-image {
    height: 320px;
  }
  .hero-title {
    font-size: 3rem;
    line-height: 1;
  }
  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dresscode-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-item-3 {
    display: none;
  }
  .modal-backdrop {
    align-items: flex-end;
  }
  .welcome-card {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .welcome-heading {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .welcome-subtitle {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .hero-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .hero-name {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .countdown-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .countdown-card {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .location-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .location-card {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .location-content {
    flex-direction: column;
  }
  .location-image-wrapper {
    width: 100%;
  }
  .dress-code-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .dress-code-card {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .dress-code-content {
    flex-direction: column;
  }
  .gift-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .gift-card {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .rsvp-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .rsvp-card {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .footer-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 3rem;
  }
  .footer-card {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }
  .modal-panel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
/* ycw-spread: focus-on-click styles */
.ycw-spread .ycw-item.focused {
  transform: translate(-50%, -50%) scale(1.45) rotate(0deg) !important;
  z-index: 9999 !important;
  box-shadow: 0 40px 80px rgba(0,0,0,0.45) !important;
}
.ycw-spread.focused .ycw-item:not(.focused) {
  opacity: 0.18;
  transform: translate(-50%, -50%) scale(0.92) !important;
  pointer-events: none;
}
.ycw-spread .ycw-item { transition: transform 420ms cubic-bezier(.16,.84,.44,1), opacity 280ms ease, box-shadow 320ms ease; }
.ycw-spread .ycw-item:focus { outline: none; }

@media (max-width: 520px) {
  .ycw-spread .ycw-item.focused { transform: translate(-50%, -50%) scale(1.18) !important; }
}
