/*
  Minimal styles for the mini cake event landing page.
  (Bootstrap provides the layout + typography baseline.)
*/

:root{
  --bg: #fbfcff;
  --surface: rgba(255,255,255,.84);
  --surface-2: rgba(255,255,255,.64);
  --border: rgba(15, 23, 42, .09);
  --text: #0f172a;
  --muted: rgba(15, 23, 42, .62);

  --cake-pattern: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='64'%20height='64'%20viewBox='0%200%2064%2064'%3E%3Cg%20transform='translate(18%2C18)%20scale(0.52)%20rotate(-10%2032%2032)'%20fill='none'%20stroke='%2394a3b8'%20stroke-opacity='0.045'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M32%2012v8'/%3E%3Cpath%20d='M32%2010c2%201%202%203%200%204c-2-1-2-3%200-4z'/%3E%3Cpath%20d='M18%2028c2-6%206-10%2014-10s12%204%2014%2010'/%3E%3Crect%20x='14'%20y='28'%20width='36'%20height='22'%20rx='6'/%3E%3Cpath%20d='M18%2052h28'/%3E%3C/g%3E%3C/svg%3E");

  --shadow-sm: 0 10px 22px rgba(15,23,42,.07);
  --shadow: 0 18px 46px rgba(15,23,42,.09);
  --radius: 20px;
}

body.app{
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background-color: var(--bg);
  background-image:
    var(--cake-pattern),
    radial-gradient(900px 520px at 18% 10%, rgba(217,248,238,.38), transparent 56%),
    radial-gradient(980px 560px at 82% 12%, rgba(233,225,255,.44), transparent 60%),
    radial-gradient(680px 420px at 68% 88%, rgba(220,236,255,.42), transparent 62%);
  background-repeat: repeat, no-repeat, no-repeat, no-repeat;
  background-size: 220px 220px, auto, auto, auto;
  background-position: 0 0, 18% 10%, 82% 12%, 68% 88%;
  color: var(--text);
}

main{
  transition: opacity .28s ease, transform .28s ease;
}

body.app.is-loading main{
  opacity: 0;
  transform: translateY(6px);
}

.app-loader{
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: grid;
  place-items: center;
  padding: 24px;
  background-color: var(--bg);
  background-image:
    var(--cake-pattern),
    radial-gradient(900px 520px at 18% 10%, rgba(217,248,238,.55), transparent 56%),
    radial-gradient(980px 560px at 82% 12%, rgba(233,225,255,.60), transparent 60%),
    radial-gradient(680px 420px at 68% 88%, rgba(220,236,255,.55), transparent 62%);
  background-repeat: repeat, no-repeat, no-repeat, no-repeat;
  background-size: 220px 220px, auto, auto, auto;
  background-position: 0 0, 18% 10%, 82% 12%, 68% 88%;
  transition: opacity .28s ease, visibility .28s ease;
}

body.app:not(.is-loading) .app-loader{
  opacity: 0;
  visibility: hidden;
}

.app-loader-logo{
  display: block;
  width: min(220px, 54vw);
  height: auto;
  border-radius: 28px;
  filter: drop-shadow(0 18px 42px rgba(15,23,42,.18));
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse{
  0%, 100%{ transform: translateY(0) scale(1); opacity: .96; }
  50%{ transform: translateY(-2px) scale(1.02); opacity: 1; }
}

@media (prefers-reduced-motion: reduce){
  main{ transition: none; }
  .app-loader{ transition: none; }
  .app-loader-logo{ animation: none; }
}

::selection{ background: rgba(155,184,255,.35); }

.text-body-secondary{ color: var(--muted) !important; }

.footer-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-actions{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-cake{
  --cake-from: rgba(255,132,199,1);
  --cake-to: rgba(155,184,255,1);
  --cake-ring: rgba(255,132,199,.18);

  color: rgba(255,255,255,.98) !important;
  border: 0 !important;
  background: linear-gradient(135deg, var(--cake-from), var(--cake-to)) !important;
  box-shadow: 0 12px 26px rgba(255,132,199,.22);
}

.btn-cake:hover{
  filter: brightness(1.02);
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(155,184,255,.22);
}

.btn-cake:focus-visible{
  outline: none;
  box-shadow: 0 0 0 .25rem var(--cake-ring), 0 18px 42px rgba(155,184,255,.22);
}

.app .btn-outline-secondary{
  border-color: rgba(15,23,42,.14);
  color: rgba(15,23,42,.76);
  background: rgba(255,255,255,.62);
}

.app .btn-outline-secondary:hover{
  background: rgba(255,255,255,.82);
  border-color: rgba(255, 132, 199, .28);
  color: rgba(15,23,42,.82);
}

.app .btn-outline-secondary:focus-visible{
  box-shadow: 0 0 0 .25rem rgba(155,184,255,.18);
}

.ig-dm-btn{
  --ig-bg: rgba(255,255,255,.72);
  --ig-border: rgba(15, 23, 42, .10);
  --ig-text: rgba(15, 23, 42, .78);
  --ig-ring: rgba(155,184,255,.18);

  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--ig-bg);
  border: 1px solid var(--ig-border);
  color: var(--ig-text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.fb-dm-btn{
  --fb-bg: rgba(255,255,255,.72);
  --fb-border: rgba(15, 23, 42, .10);
  --fb-text: rgba(15, 23, 42, .78);
  --fb-ring: rgba(24, 119, 242, .18);

  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--fb-bg);
  border: 1px solid var(--fb-border);
  color: var(--fb-text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.fb-dm-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(24, 119, 242, .32);
  box-shadow: 0 18px 46px rgba(15,23,42,.10);
}

.fb-dm-btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 .25rem var(--fb-ring), 0 18px 46px rgba(15,23,42,.10);
}

.fb-icon{
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: rgba(24, 119, 242, .92);
}

.ig-dm-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255, 132, 199, .30);
  box-shadow: 0 18px 46px rgba(15,23,42,.10);
}

.ig-dm-btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 .25rem var(--ig-ring), 0 18px 46px rgba(15,23,42,.10);
}

.ig-icon{
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: rgba(255, 132, 199, .85);
}

.card-soft{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}

.card-soft:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.badge-soft{
  background: rgba(255,255,255,.70);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  border-radius: 999px;
  padding: .45rem .7rem;
}

.controls-card{
  min-width: min(360px, 100%);
  backdrop-filter: blur(10px);
}

/* ---- Event landing page components ---- */

.hero{
  position: relative;
  overflow: hidden;
}

.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    radial-gradient(circle at 18% 24%, rgba(255,132,199,.55) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 28%, rgba(155,184,255,.60) 0 2px, transparent 3px),
    radial-gradient(circle at 28% 78%, rgba(124,229,198,.55) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 76%, rgba(255,207,107,.55) 0 2px, transparent 3px);
  background-size: 180px 180px;
  pointer-events: none;
}

.hero::after{
  content: "";
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 260px;
  background: radial-gradient(closest-side, rgba(255,255,255,.55), rgba(255,255,255,0));
  transform: rotate(-6deg);
  pointer-events: none;
}

.hero-actions{
  display: grid;
  gap: 10px;
  justify-items: start;
}

.hero-highlight{
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(15,23,42,.10);
}

.hero-highlight-title{
  font-weight: 800;
  letter-spacing: .01em;
  margin-bottom: 10px;
}

.hero-kpis{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.kpi{
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(15,23,42,.10);
  text-align: center;
}

.kpi-label{
  font-size: .85rem;
  color: var(--muted);
  font-weight: 700;
}

.kpi-value{
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: .01em;
  margin-top: 2px;
}

.section-head{
  display: grid;
  gap: 4px;
}

.step-tag{
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 207, 107, .22);
  border: 1px solid rgba(255, 207, 107, .40);
  color: rgba(120, 53, 15, .92);
  font-weight: 900;
  letter-spacing: .01em;
  text-transform: uppercase;
  font-size: .72rem;
  margin-right: 8px;
}

.menu-card{
  height: 100%;
  cursor: pointer;
  user-select: none;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.menu-card:focus-visible{
  outline: none;
  box-shadow: 0 0 0 .25rem rgba(155,184,255,.20), var(--shadow);
}

.menu-card.is-selected{
  border-color: rgba(255, 132, 199, .35);
  box-shadow: 0 0 0 .22rem rgba(255, 132, 199, .14), var(--shadow);
}

.menu-card.is-selected .price{
  background: rgba(255, 132, 199, .16);
  border-color: rgba(255, 132, 199, .32);
}

.menu-card-title{
  font-weight: 900;
  letter-spacing: .01em;
  text-transform: uppercase;
  font-size: .95rem;
}

.menu-card-sub{
  color: var(--muted);
  font-weight: 700;
  margin-top: 2px;
}

.price{
  font-weight: 950;
  font-size: 1.25rem;
  letter-spacing: .01em;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.10);
}

.menu-bullets{
  padding-left: 18px;
  margin: 0;
}

.menu-bullets li{
  margin: 8px 0;
  color: rgba(15, 23, 42, .72);
  font-weight: 650;
}

.addon-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(15,23,42,.10);
}

.addon-row + .addon-row{ margin-top: 10px; }

.addon-name{ font-weight: 850; }
.addon-meta{ color: var(--muted); font-weight: 700; margin-top: 2px; font-size: .92rem; }
.addon-price{ font-weight: 900; color: rgba(15, 23, 42, .80); }

.stepper{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 10px 22px rgba(15,23,42,.05);
}

.stepper-btn{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(15,23,42,.04);
  color: rgba(15,23,42,.80);
  font-weight: 950;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.stepper-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(15,23,42,.18);
  box-shadow: 0 18px 38px rgba(15,23,42,.08);
}

.stepper-btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 .25rem rgba(155,184,255,.20), 0 18px 38px rgba(15,23,42,.08);
}

.stepper-btn:disabled{
  opacity: .55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.stepper-val{
  min-width: 22px;
  text-align: center;
  font-weight: 950;
  color: rgba(15,23,42,.80);
  padding: 0 4px;
}

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

.chip{
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 10px 22px rgba(15,23,42,.05);
  font-weight: 800;
  color: rgba(15, 23, 42, .78);
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease, background-color .14s ease;
}

.chip:disabled{
  opacity: .55;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 10px 22px rgba(15,23,42,.03);
}

.chip:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(15,23,42,.08);
  border-color: rgba(15,23,42,.16);
}

.chip:focus-visible{
  outline: none;
  box-shadow: 0 0 0 .25rem rgba(155,184,255,.20), 0 18px 38px rgba(15,23,42,.08);
}

.chip.is-selected{
  background: rgba(155,184,255,.18);
  border-color: rgba(155,184,255,.40);
  box-shadow: 0 0 0 .18rem rgba(155,184,255,.16), 0 18px 38px rgba(15,23,42,.08);
}

@media (prefers-reduced-motion: reduce){
  .menu-card{ transition: none; }
  .chip{ transition: none; }
  .chip:hover{ transform: none; }
}

.count-pill{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.05);
  border: 1px solid rgba(15,23,42,.10);
  color: rgba(15,23,42,.70);
  font-weight: 850;
  letter-spacing: .01em;
}

.list-check{
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.list-check li{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(15, 23, 42, .74);
  font-weight: 650;
}

.list-check li::before{
  content: "✓";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(124,229,198,.40);
  color: rgba(15,23,42,.80);
  font-weight: 900;
  margin-top: 2px;
}

.divider{
  height: 1px;
  background: rgba(15,23,42,.10);
}

.quote{
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(15,23,42,.10);
}

.quote-review{
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px dashed rgba(15,23,42,.12);
}

.quote-review-row{
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  align-items: start;
}

.quote-review-k{
  color: rgba(15,23,42,.60);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: .74rem;
}

.quote-review-v{
  font-weight: 800;
  color: rgba(15,23,42,.78);
}

.quote-row{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.quote-label{ font-weight: 800; color: rgba(15,23,42,.72); }
.quote-value{ font-weight: 950; font-size: 1.4rem; }

/* rounder buttons for the event site */
.app .btn{ border-radius: 999px; }

@media (max-width: 575.98px){
  .hero-actions .btn{ width: 100%; }
  .hero-kpis{ grid-template-columns: 1fr; }
}

.input-soft{
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.82);
}

.input-soft:focus{
  border-color: rgba(155,184,255,.55);
  box-shadow: 0 0 0 .25rem rgba(155,184,255,.18);
}

.page-header{
  animation: floatIn .45s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes floatIn{
  from{ opacity: 0; transform: translateY(10px); }
  to{ opacity: 1; transform: translateY(0); }
}

@media (min-width: 992px){
  .py-lg-6{ padding-top: 5rem !important; padding-bottom: 5rem !important; }
}

/* extra edge breathing room on smaller screens */
@media (max-width: 575.98px){
  main.container{
    padding-left: clamp(1rem, 5vw, 1.5rem) !important;
    padding-right: clamp(1rem, 5vw, 1.5rem) !important;
  }
}