/*
  Invitación Bridget — estilos (CSS3)
  - Tema marino infantil (pasteles: aqua, coral, azul)
  - Animaciones ligeras: agua, burbujas, peces
  - Móvil primero, responsive
*/

:root {
  --bg1: #baf3ff; /* aqua suave */
  --bg2: #e9fbff; /* espuma */
  --ink: #15323e; /* texto oscuro amable */
  --muted: rgba(21, 50, 62, 0.75);

  --aqua: #7de3f6;
  --blue: #7aa9ff;
  --coral: #ff8fb1;
  --sand: #fff2d6;

  --card: rgba(255, 255, 255, 0.72);
  --card-strong: rgba(255, 255, 255, 0.86);
  --stroke: rgba(21, 50, 62, 0.12);
  --shadow: 0 18px 60px rgba(21, 50, 62, 0.16);

  --radius: 18px;
  --radius-lg: 26px;

  --font-title: "Baloo 2", ui-rounded, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  overflow-x: hidden;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(255, 143, 177, 0.24), transparent 60%),
    radial-gradient(900px 500px at 80% 0%, rgba(122, 169, 255, 0.22), transparent 55%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
}

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

a:hover {
  text-decoration: underline;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 0.95em;
}

/* (Admin eliminado) */

/* Accesibilidad */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Fondo */
.ocean {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ocean::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(900px 420px at 30% 30%, rgba(125, 227, 246, 0.25), transparent 55%),
    radial-gradient(900px 420px at 70% 10%, rgba(255, 143, 177, 0.2), transparent 55%),
    radial-gradient(1200px 600px at 50% 90%, rgba(255, 242, 214, 0.22), transparent 55%);
  filter: blur(1px);
  animation: waterFloat 10s ease-in-out infinite;
  transform: translateZ(0);
}

@keyframes waterFloat {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(-1.2%, 1.4%, 0) rotate(0.25deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

.ocean__bubbles,
.ocean__fish {
  position: absolute;
  inset: 0;
}

.ocean__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  /* asegura que el canvas esté debajo de la UI, pero visible */
  opacity: 0.95;
}

.app {
  position: relative;
  z-index: 1;
  /* padding-bottom grande para que el FAB nunca tape contenido */
  padding: 18px 14px calc(96px + env(safe-area-inset-bottom, 0px));
  max-width: 1040px;
  margin: 0 auto;
}

/* Botón flotante */
.fab-fish {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(21, 50, 62, 0.16);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.fab-fish:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(21, 50, 62, 0.18);
}

.fab-fish:active {
  transform: translateY(0);
}

.fab-fish__icon {
  width: 36px;
  height: 24px;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--aqua), var(--coral));
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(21, 50, 62, 0.12);
}

.fab-fish__icon::before {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid rgba(125, 227, 246, 0.95);
  filter: saturate(1.1);
}

.fab-fish__icon::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(21, 50, 62, 0.78);
}

.fab-fish__text {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Pez “cursor follower” */
.cursor-fish {
  position: fixed;
  left: -9999px;
  top: -9999px;
  z-index: 2;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(125, 227, 246, 0.92), rgba(255, 143, 177, 0.92));
  box-shadow: 0 18px 50px rgba(21, 50, 62, 0.14);
  opacity: 0.0;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  transition: opacity 220ms ease;
}

.cursor-fish::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-right: 12px solid rgba(122, 169, 255, 0.92);
}

.cursor-fish::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(21, 50, 62, 0.75);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55);
}

.cursor-fish.is-on {
  opacity: 0.9;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-top: 8px;
}

.hero__card {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--card-strong), var(--card));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  padding: 18px 16px;
  overflow: hidden;
  position: relative;
}

.hero__card::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(600px 260px at 20% 20%, rgba(125, 227, 246, 0.3), transparent 60%),
    radial-gradient(520px 260px at 80% 0%, rgba(255, 143, 177, 0.25), transparent 60%);
  transform: rotate(-6deg);
  opacity: 0.85;
}

.hero__card > * {
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(125, 227, 246, 0.28);
  border: 1px solid rgba(21, 50, 62, 0.12);
  font-weight: 800;
  width: fit-content;
}

.title {
  font-family: var(--font-title);
  margin: 10px 0 6px;
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.3px;
}

.subtitle {
  margin: 0 0 14px;
  font-size: 1.08rem;
  color: var(--muted);
}

.subtitle__name {
  font-weight: 900;
  color: var(--ink);
}

.hero__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
}

.meta {
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px dashed rgba(21, 50, 62, 0.18);
  background: rgba(255, 255, 255, 0.55);
}

.meta__label {
  margin: 0 0 6px;
  font-family: var(--font-title);
  font-weight: 800;
}

.meta__value {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.25;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero__fish {
  display: grid;
  place-items: center;
}

.fish-hero {
  width: min(360px, 90%);
  filter: drop-shadow(0 22px 40px rgba(21, 50, 62, 0.18));
  animation: heroBob 6.5s ease-in-out infinite;
  transform-origin: 60% 50%;
}

@keyframes heroBob {
  0% {
    transform: translate3d(0, 0, 0) rotate(-1.2deg);
  }
  50% {
    transform: translate3d(0, -8px, 0) rotate(1.4deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(-1.2deg);
  }
}

/* Secciones */
.section {
  padding: 18px 0;
}

.section__inner {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 44px rgba(21, 50, 62, 0.12);
  padding: 18px 14px;
}

.section__title {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-weight: 900;
  letter-spacing: -0.2px;
  font-size: clamp(22px, 4vw, 30px);
}

.section__subtitle {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 700;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 14px 14px;
  box-shadow: 0 12px 30px rgba(21, 50, 62, 0.1);
  position: relative;
  overflow: hidden;
}

.card--accent {
  background: linear-gradient(180deg, rgba(255, 159, 178, 0.18), rgba(255, 255, 255, 0.72));
}

.card__title {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-weight: 900;
}

.card__big {
  margin: 0 0 8px;
  font-size: 1.3rem;
  font-weight: 900;
}

.card__text {
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.25;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(21, 50, 62, 0.14);
  background: rgba(125, 227, 246, 0.18);
  font-weight: 900;
}

.card__link:hover {
  background: rgba(255, 143, 177, 0.14);
}

/* Botones */
.btn {
  appearance: none;
  border: 0;
  border-radius: 14px;
  padding: 12px 14px;
  font-family: var(--font-title);
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
  box-shadow: 0 10px 26px rgba(21, 50, 62, 0.12);
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(135deg, rgba(125, 227, 246, 0.95), rgba(255, 143, 177, 0.95));
  color: rgba(21, 50, 62, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.btn--primary:hover {
  box-shadow: 0 14px 34px rgba(21, 50, 62, 0.16);
  transform: translateY(-1px);
}

.btn--secondary {
  background: rgba(125, 227, 246, 0.22);
  border: 1px solid rgba(21, 50, 62, 0.12);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 50, 62, 0.14);
}

/* RSVP */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.form {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 14px 14px;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.field__label {
  font-weight: 900;
  font-family: var(--font-title);
}

.field__input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(21, 50, 62, 0.16);
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  outline: none;
  transition: box-shadow 140ms ease, border-color 140ms ease;
}

.field__input:focus {
  border-color: rgba(125, 227, 246, 0.95);
  box-shadow: 0 0 0 4px rgba(125, 227, 246, 0.25);
}

.field__hint {
  color: rgba(21, 50, 62, 0.62);
  font-weight: 700;
  font-size: 0.92rem;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 380px) {
  .row {
    grid-template-columns: 1fr;
  }
}

.form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.form__note {
  margin: 12px 0 0;
  color: rgba(21, 50, 62, 0.68);
  font-weight: 700;
  line-height: 1.3;
}

.toast {
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid rgba(21, 50, 62, 0.14);
  background: rgba(255, 255, 255, 0.72);
  padding: 10px 12px;
  display: none;
  font-weight: 800;
}

.toast.is-visible {
  display: block;
}

.panel__box {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 14px 14px;
}

.panel__title {
  margin: 0 0 10px;
  font-family: var(--font-title);
  font-weight: 900;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat {
  background: rgba(255, 242, 214, 0.38);
  border: 1px solid rgba(21, 50, 62, 0.12);
  border-radius: 16px;
  padding: 12px 12px;
  text-align: center;
}

.stat--wide {
  grid-column: 1 / -1;
  background: rgba(125, 227, 246, 0.18);
}

.stat__num {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.8rem;
}

.stat__label {
  margin: 2px 0 0;
  color: rgba(21, 50, 62, 0.72);
  font-weight: 800;
}

.panel__details {
  margin-top: 10px;
}

.panel__details summary {
  cursor: pointer;
  font-weight: 900;
  font-family: var(--font-title);
}

.list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(21, 50, 62, 0.78);
  font-weight: 700;
}

.panel__actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* (Admin se movió a /admin/) */

/* Boleto */
.ticket-wrap {
  display: grid;
  gap: 14px;
}

.ticket {
  border-radius: 22px;
  border: 1px solid rgba(21, 50, 62, 0.14);
  background: linear-gradient(135deg, rgba(125, 227, 246, 0.28), rgba(255, 143, 177, 0.24)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 54px rgba(21, 50, 62, 0.14);
  overflow: hidden;
  position: relative;
}

.ticket::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(560px 240px at 10% 30%, rgba(255, 255, 255, 0.55), transparent 60%),
    radial-gradient(520px 240px at 85% 10%, rgba(255, 255, 255, 0.45), transparent 60%);
  transform: rotate(-6deg);
}

.ticket > * {
  position: relative;
}

.ticket__top {
  padding: 14px 14px 10px;
  border-bottom: 1px dashed rgba(21, 50, 62, 0.18);
}

.ticket__badge {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 900;
}

.ticket__name {
  margin: 6px 0 0;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.35rem;
  /* evita solapes con nombres largos */
  overflow-wrap: anywhere;
}

.ticket__mid {
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

@media (max-width: 420px) {
  .ticket__mid {
    grid-template-columns: 1fr;
  }
}

.ticket__count {
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 50, 62, 0.12);
  border-radius: 16px;
  padding: 12px;
}

.ticket__countNum {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 2rem;
}

.ticket__countLabel {
  margin: 2px 0 0;
  color: rgba(21, 50, 62, 0.72);
  font-weight: 900;
}

.ticket__message {
  grid-column: 1 / -1;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255, 242, 214, 0.45);
  border: 1px solid rgba(21, 50, 62, 0.12);
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.ticket__bottom {
  padding: 12px 14px 14px;
  border-top: 1px dashed rgba(21, 50, 62, 0.18);
}

.ticket__line {
  margin: 6px 0 0;
  color: rgba(21, 50, 62, 0.82);
  font-weight: 800;
}

.ticket-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 16px 0 0;
  color: rgba(21, 50, 62, 0.78);
}

.footer__text {
  margin: 0;
  font-weight: 900;
}

.footer__tiny {
  margin: 8px 0 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(21, 50, 62, 0.62);
}

/* FX layer (peces/burbujas por clic) */
.fx-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

/* Burbuja */
.bubble {
  position: absolute;
  width: var(--s, 10px);
  height: var(--s, 10px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.25) 45%, rgba(125, 227, 246, 0.18) 70%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 40px rgba(21, 50, 62, 0.08);
  opacity: 0.9;
  transform: translate3d(0, 0, 0);
  animation: bubbleUp var(--d, 4.5s) ease-in forwards;
}

@keyframes bubbleUp {
  0% {
    transform: translate3d(0, 0, 0) scale(0.95);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  100% {
    transform: translate3d(var(--x, 0px), -120vh, 0) scale(1.15);
    opacity: 0;
  }
}

/* Pez CSS (ligero) */
.fish {
  position: absolute;
  width: var(--w, 64px);
  height: calc(var(--w, 64px) * 0.55);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(125, 227, 246, 0.95), rgba(255, 143, 177, 0.95));
  box-shadow: 0 18px 50px rgba(21, 50, 62, 0.12);
  opacity: 0.92;
  /* Nota: el transform real lo controla la animación .swim (keyframes) */
  --flip: 1;
  will-change: transform;
}

.fish::before {
  /* cola */
  content: "";
  position: absolute;
  left: -18%;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transform-origin: 100% 50%;
  width: 0;
  height: 0;
  border-top: calc(var(--w, 64px) * 0.18) solid transparent;
  border-bottom: calc(var(--w, 64px) * 0.18) solid transparent;
  border-right: calc(var(--w, 64px) * 0.22) solid rgba(122, 169, 255, 0.95);
  filter: saturate(1.1);
  animation: tailWag 420ms ease-in-out infinite;
}

.fish::after {
  /* ojo */
  content: "";
  position: absolute;
  right: 18%;
  top: 50%;
  transform: translateY(-50%);
  width: 10%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(21, 50, 62, 0.8);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55);
}

@keyframes tailWag {
  0% {
    transform: translateY(-50%) rotate(10deg);
  }
  50% {
    transform: translateY(-50%) rotate(-12deg);
  }
  100% {
    transform: translateY(-50%) rotate(10deg);
  }
}

.fish.is-right {
  --flip: -1;
}

/* Animación de nado */
.swim {
  animation: swimAcross var(--d, 10s) linear forwards;
}

@keyframes swimAcross {
  0% {
    transform: translate3d(var(--fromX, -15vw), var(--y, 0px), 0) rotate(var(--r, 0deg)) scaleX(var(--flip, 1));
  }
  50% {
    transform: translate3d(calc((var(--fromX, -15vw) + var(--toX, 115vw)) / 2), calc(var(--y, 0px) + 10px), 0)
      rotate(calc(var(--r, 0deg) * -1))
      scaleX(var(--flip, 1));
  }
  100% {
    transform: translate3d(var(--toX, 115vw), calc(var(--y, 0px) - 12px), 0) rotate(var(--r, 0deg)) scaleX(var(--flip, 1));
  }
}

/* Preferencias del usuario: reducir movimiento */
@media (prefers-reduced-motion: reduce) {
  .ocean::before,
  .fish-hero,
  .bubble,
  .swim,
  .cursor-fish {
    animation: none !important;
  }
}

/* Responsive */
@media (min-width: 820px) {
  .app {
    padding: 26px 18px 80px;
  }

  .hero {
    grid-template-columns: 1.35fr 0.65fr;
    align-items: center;
    gap: 16px;
  }

  .hero__meta {
    grid-template-columns: 1fr 1fr;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

/* Impresión (para “Guardar como PDF”) */
@media print {
  body {
    background: #ffffff !important;
  }
  .ocean,
  .fab-fish,
  .fx-layer,
  #info,
  #rsvp,
  .footer {
    display: none !important;
  }
  #ticket {
    display: block !important;
  }
  .section__inner {
    box-shadow: none !important;
    border: none !important;
    background: #fff !important;
  }
  .ticket {
    box-shadow: none !important;
  }
}


/* =========================================
   Welcome Overlay
   ========================================= */
.welcome-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8fe7ff 0%, #ff9fb2 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.welcome-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.welcome-content {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 90%;
  width: 320px;
  animation: float 3s ease-in-out infinite;
}

.welcome-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.welcome-title {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-size: 1.8rem;
  color: #15323e;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.welcome-text {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 1.1rem;
  color: #555;
  margin: 0 0 1.5rem 0;
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  width: 100%;
  box-shadow: 0 4px 12px rgba(240, 108, 155, 0.4);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Admin Link (Footer) */
.admin-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #15323e;
  opacity: 0.1;
  text-decoration: none;
  transition: opacity 0.3s ease;
  padding: 5px;
}

.admin-link:hover {
  opacity: 1;
}
