/* =============================================================
   LYCH Event Planners — HTML/CSS reconstruction
   Tuned to the supplied 730 × 2048 full-page Canva screenshot.
   ============================================================= */

:root {
  --sage: #d4e1c6;
  --pink-bg: #ffe5e7;
  --pink: #ef8f9c;
  --cream: #e2e2d1;
  --yellow: #f5d972;
  --olive: #94a166;
  --black: #000;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--sage);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site {
  width: 100%;
  overflow: hidden;
}

.section-sage {
  background: var(--sage);
}

.section-pink {
  background: var(--pink-bg);
}

.hero,
.about,
.tickets,
.moments,
.contact,
.footer {
  position: relative;
}

/* -------------------------------------------------------------
   1. HERO
   ------------------------------------------------------------- */

.hero {
  height: 410px;
  padding: 38px 26px 24px;
}

.hero-header {
  position: relative;
}

.hero h1 {
  margin: 0;
  white-space: nowrap;
  font-family: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 69px;
  font-weight: 400;
  line-height: .94;
  letter-spacing: -1.1px;
}

.sprout-logo--top {
  position: absolute;
  right: -25px;
  top: -39px;
  width: 51px;
  height: 61px;
  object-fit: cover;
}

.main-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  margin: 11px 0 10px;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:nth-child(1) {
  justify-self: start;
}

.main-nav a:nth-child(2) {
  justify-self: center;
}

.main-nav a:nth-child(3) {
  justify-self: end;
}

.hero-photo {
  position: relative;
  width: 100%;
}

.hero-photo img {
  width: 100%;
  height: 267px;
  object-fit: cover;
}

.hero-hotspot {
  position: absolute;
  right: 0;
  top: 0;
  width: 178px;
  height: 28px;
  border-radius: 50px;
}

/* -------------------------------------------------------------
   2. ABOUT — cleaner grid version
   ------------------------------------------------------------- */

.about {
  padding: 28px;
  background: var(--pink-bg);
}

.about-layout {
  display: grid;

  grid-template-columns:
    165px
    minmax(210px, 1fr)
    minmax(250px, 1.25fr);

  grid-template-areas:
    "main text dj"
    "creative crowd bar";

  gap: 18px 20px;

  align-items: stretch;
}


/* Main photo */

.about-main {
  grid-area: main;

  width: 100%;
  height: 150px;

  min-height: 150px;

  object-fit: cover;
}


/* Description */

.about-text {
  font-family: "DM Sans", sans-serif;
  grid-area: text;

  margin: 0;

  font-size: 30px;
  line-height: 1.52;
  letter-spacing: -0.5px;

  align-self: start;
}


/* LET YOUR CREATIVITY HAPPEN */

.creativity-lockup {
  grid-area: creative;

  position: relative;

  font-family: "Anton", Impact, sans-serif;
  font-size: 38px;
  line-height: 0.92;

  align-self: end;

  padding-top: 10px;
}

.creativity-lockup .olive {
  color: var(--olive);
}

.creativity-lockup .pink-letter {
  color: var(--pink);
}

.creativity-lockup img {
  position: absolute;

  width: 48px;
  height: auto;

  right: 5px;
  bottom: 0;
}


/* DJ photo */

.about-dj {
  grid-area: dj;

  width: 100%;
  height: 150px;

  object-fit: cover;
}


/* Smaller bottom-middle photo */

.about-crowd {
  grid-area: crowd;

  width: 100%;
  height: 180px;

  object-fit: cover;
}


/* Bottom-right photo */

.about-bar {
  grid-area: bar;

  width: 100%;
  height: 180px;

  object-fit: cover;
}


/* -------------------------------------------------------------
   3. TICKETS
   ------------------------------------------------------------- */

.tickets {
  height: 410px;
  padding: 18px 27px 21px;
}

.tickets-title-row {
  position: relative;
  min-height: 121px;
}

.tickets h2 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 33px;
  line-height: 1.03;
  font-weight: 400;
  letter-spacing: -1.3px;
}

.ticket-logo {
  position: absolute;
  right: 0;
  top: -4px;
  width: 64px;
  height: 76px;
  object-fit: cover;
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 79px;
}

.ticket-card {
  position: relative;
  min-width: 0;
  text-align: center;
  font-family: "Roboto Condensed", Arial, sans-serif;
}

.ticket-poster {
  width: 173px;
  height: 202px;
  object-fit: cover;
}

.ticket-button {
  display: block;
  width: 193px;
  margin: 11px 0 0 -10px;
  padding: 8px 10px 9px;
  border: 1.5px solid #000;
  border-radius: 7px;
  background: var(--pink);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, filter .15s ease;
}

.ticket-button:hover {
  transform: translateY(-1px);
  filter: brightness(.98);
}


/* -------------------------------------------------------------
   4. MOMENTS

   ------------------------------------------------------------- */

.moments {
  height: 413px;
  padding: 24px 25px 20px;
}

.moments h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.2px;
}

.moments-intro {
  margin: 10px 0 18px;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

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

.moment-card {
  font-family: "Roboto Condensed", Arial, sans-serif;
}

.moment-card img {
  width: 100%;
  aspect-ratio: 1 / .99;
  object-fit: cover;
}

.moment-footer {
  display: grid;
  grid-template-columns: 1fr 101px;
  gap: 7px;
  align-items: start;
  margin-top: 7px;
}

.moment-copy h3 {
  margin: 0 0 4px;
  font-size: 17px;
  line-height: 1.08;
  font-weight: 400;
}

.moment-copy p {
  margin: 0;
  font-size: 16px;
}

.moment-card a {
  display: block;
  padding: 6px 10px 7px;
  border: 1.3px solid #000;
  border-radius: 999px;
  background: var(--sage);
  text-align: center;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.photo-note {
  margin: 20px 0 0;
  text-align: center;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 13px;
  font-style: italic;
}


/* -------------------------------------------------------------
   5. CONTACT
   ------------------------------------------------------------- */

.contact {
  height: 324px;
  padding: 25px 24px 12px;
}

.contact-left {
  width: 326px;
}

.contact h2 {
  margin: 0 0 10px;
  font-size: 39px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.8px;
}

.contact-copy {
  width: 285px;
  margin: 0 0 16px;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.25;
}

.contact-actions {
  display: grid;
  gap: 7px;
  width: 249px;
}

.contact-action {
  display: grid;
  grid-template-columns: 34px 116px;
  align-items: center;
  gap: 8px;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.contact-action > span:last-child {
  display: block;
  padding: 6px 8px 7px;
  border-radius: 999px;
  background: var(--pink);
  text-align: center;
  line-height: 1;
}

.icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 24px;
  border: 1.5px solid #000;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.icon-instagram {
  font-size: 20px;
  font-weight: 400;
}

.come-along {
  margin: 18px 0 6px;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.8px;
}

.come-copy {
  width: 270px;
  margin: 0;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 11px;
  line-height: 1.25;
}

.contact-photo {
  position: absolute;
  right: 24px;
  top: 22px;
  width: 335px;
  height: 279px;
  object-fit: cover;
}


/* -------------------------------------------------------------
   6. FOOTER
   ------------------------------------------------------------- */

.footer {
  height: 90px;
  padding: 8px 24px 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.footer-logo {
  width: 73px;
  height: 73px;
  object-fit: cover;
  margin-bottom: -5px;
}

.footer-lines {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 13px;
  white-space: nowrap;
}


/* -------------------------------------------------------------
   Development comparison overlay
   Press R to show / hide the supplied reference.
   ------------------------------------------------------------- */

.reference-overlay {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100vw;
  height: auto;
  z-index: 9999;
  opacity: .5;
  pointer-events: none;
  display: none;
}

body.show-reference .reference-overlay {
  display: block;
}


/* -------------------------------------------------------------
   Responsive adaptation
   ------------------------------------------------------------- */

@media (min-width: 731px) {
  /* Scale the Canva-like composition proportionally on wider screens. */
  .site {
    max-width: 1088px;
    margin-inline: auto;
  }

  .hero {
    height: auto;
    min-height: 610px;
    padding: 57px 43px 64px;
  }

  .hero h1 {
    font-size: clamp(78px, 9vw, 106px);
  }

  .main-nav {
    font-size: 16px;
  }

  .hero-photo img {
    height: auto;
  }

  .about,
  .tickets,
  .moments,
  .contact,
  .footer {
    height: auto;
    min-height: 480px;
  }

  .about {
    padding: 35px 42px 40px;
  }

  /* At larger widths switch from absolute Canva coordinates to a clean grid. */
  .about-layout {
    display: grid;
    grid-template-columns: .78fr 1fr 1.25fr;
    grid-template-rows: auto auto;
    gap: 24px;
    height: auto;
  }

  .about-main,
  .about-text,
  .creativity-lockup,
  .about-dj,
  .about-crowd,
  .about-bar {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .creativity-lockup {
    font-size: clamp(47px, 5vw, 68px);
  }

  .creativity-lockup img {
    width: 70px;
    height: auto;
    left: 68%;
  }

  .tickets,
  .moments,
  .contact {
    padding: 36px 44px 44px;
  }

  .ticket-grid {
    gap: 7vw;
  }

  .ticket-poster {
    width: 100%;
    height: auto;
  }

  .contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .contact-left {
    width: auto;
  }

  .contact-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .footer {
    min-height: 120px;
  }
}

@media (max-width: 729px) {
  /* Preserve the original layout by scaling from the 730px reference canvas. */
  .site {
    width: 730px;
    transform-origin: top left;
  }

  body {
    overflow-x: hidden;
  }
}

@media (max-width: 520px) {
  /* The script dynamically scales .site; these sizes remain reference-space sizes. */
}


/* =============================================================
   MOTION / ANIMATION LAYER
   ============================================================= */

@keyframes floatSprout {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-7px) rotate(3deg); }
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes titleEnter {
  from {
    opacity: 0;
    transform: translateY(-20px);
    letter-spacing: 2px;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: -1.1px;
  }
}

@keyframes softPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}

.hero h1 {
  animation: titleEnter .8s cubic-bezier(.2,.8,.2,1) both;
}

.hero-photo {
  animation: heroEnter .9s .15s cubic-bezier(.2,.8,.2,1) both;
}

.sprout-logo,
.ticket-logo,
.footer-logo,
.creativity-lockup img {
  animation: floatSprout 3.2s ease-in-out infinite;
}

.hero-hotspot {
  transition: transform .2s ease, background .2s ease;
}

.hero-hotspot:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(255,255,255,.08);
}

.ticket-card,
.moment-card,
.about-main,
.about-dj,
.about-crowd,
.about-bar,
.contact-photo,
.about-text,
.creativity-lockup,
.contact-left,
.tickets-title-row,
.moments h2,
.moments-intro {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.2,.75,.2,1);
}

.ticket-card:nth-child(2),
.moment-card:nth-child(2) {
  transition-delay: .08s;
}

.ticket-card:nth-child(3),
.moment-card:nth-child(3) {
  transition-delay: .16s;
}

.about-dj,
.about-bar {
  transition-delay: .08s;
}

.about-crowd,
.creativity-lockup {
  transition-delay: .16s;
}

.reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.ticket-card,
.moment-card {
  transition-property: opacity, transform, filter;
}

.ticket-card:hover,
.moment-card:hover {
  transform: translateY(-6px) !important;
}

.ticket-poster,
.moment-card img,
.about-main,
.about-dj,
.about-crowd,
.about-bar,
.contact-photo {
  transition: transform .45s ease, filter .45s ease;
}

.ticket-card:hover .ticket-poster,
.moment-card:hover img {
  transform: scale(1.025);
}

.about-main:hover,
.about-dj:hover,
.about-crowd:hover,
.about-bar:hover,
.contact-photo:hover {
  transform: scale(1.015);
}

.ticket-button,
.moment-card a,
.contact-action > span:last-child {
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
}

.ticket-button:hover,
.moment-card a:hover,
.contact-action:hover > span:last-child {
  transform: translateY(-2px);
  box-shadow: 0 4px 0 rgba(0,0,0,.15);
}

.main-nav a {
  position: relative;
  transition: transform .18s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.main-nav a:hover {
  transform: translateY(-1px);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .ticket-card,
  .moment-card,
  .about-main,
  .about-dj,
  .about-crowd,
  .about-bar,
  .contact-photo,
  .about-text,
  .creativity-lockup,
  .contact-left,
  .tickets-title-row,
  .moments h2,
  .moments-intro {
    opacity: 1;
    transform: none;
  }
}
