:root {
  --hot-pink: #dc1980;
  --card-pink: #ec348b;
  --soft-pink: #ffc1dd;
  --yellow: #fff04f;
  --teal: #139a9c;
  --ink: #211621;
  --white: #ffffff;
  --pink-line: rgba(255, 255, 255, 0.35);
  --max-content: 1280px;
  --embed-max-height: calc(100vh - 230px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--hot-pink);
  color: var(--ink);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 16px;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  z-index: 999;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

/* White nav/header area from the screenshot vibe */
.site-header {
  background: var(--white);
}

.nav-bar {
  width: 100%;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem clamp(1rem, 3vw, 2.25rem);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.logo-image {
  display: block;
  width: clamp(54px, 8vw, 78px);
  height: auto;
}

.home-link {
  margin-left: auto;
  color: var(--ink);
  text-decoration: none;
  font-size: clamp(0.95rem, 1.3vw, 1.12rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.home-link:hover,
.home-link:focus {
  color: var(--hot-pink);
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

/* Page title replaces plain "Schedule" */
.title-band {
  background: var(--white);
  text-align: center;
  padding: 1.2rem 1rem 4.6rem;
}

.title-band h1 {
  margin: 0;
  color: var(--hot-pink);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.035em;
}

/* Pink page body */
.schedule-wrap {
  width: 100%;
  margin: 0;
  padding: clamp(1.5rem, 4vw, 2.6rem) clamp(0.75rem, 4vw, 3rem) 0;
  background: var(--hot-pink);
}

/*
  Full-width widget frame.
  It fills available width, but keeps a max height and scrolls internally.
*/
.schedule-embed {
  width: min(var(--max-content), 100%);
  max-height: var(--embed-max-height);
  min-height: 620px;
  margin: 0 auto;
  overflow: auto;
  background: var(--card-pink);
  border-radius: 22px 22px 0 0;
  /* padding: clamp(0.75rem, 2vw, 1.5rem); */
}

/* Help common Elfsight wrappers expand to the available width. */
.schedule-embed > div,
.schedule-embed iframe,
.schedule-embed [class*="elfsight"],
.schedule-embed [class*="eapps"] {
  width: 100% !important;
  max-width: 100% !important;
}

.embed-placeholder {
  min-height: 560px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.5rem;
  padding: 2rem;
  border: 2px dashed var(--pink-line);
  border-radius: 18px;
  color: var(--white);
  text-align: center;
}

.embed-placeholder strong {
  color: var(--yellow);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.embed-placeholder span {
  font-size: 0.95rem;
  font-weight: 500;
}

/* Not a footer — just a small copyright line on pink */
.copyright {
  background: var(--hot-pink);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 1.15rem 1rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
}

@media (max-width: 720px) {
  :root {
    --embed-max-height: calc(100vh - 210px);
  }

  .nav-bar {
    min-height: 78px;
    padding: 0.9rem 1rem;
  }

  .logo-image {
    width: 58px;
  }

  .title-band {
    padding: 0.9rem 1rem 2.8rem;
  }

  .title-band h1 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .schedule-wrap {
    padding: 1rem 0.5rem 0;
  }

  .schedule-embed {
    min-height: 640px;
    border-radius: 18px 18px 0 0;
  }
}
