html,
body
{
  margin: 0;
  padding: 0;
  min-height: 100%;
  background-color: black;
}
body
{
  text-align: center;
  background-color: black;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

h1
{
  text-align: center;
  color: white;
}

button
{
  background-color: white;
  color: black;
  border: 1px solid white;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 30px;
  cursor: pointer;
  margin: 10px;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

button:hover
{
  background-color: #222222;
  color: white;
  transform: scale(1.05);
}

button:active
{
  transform: scale(0.98);
}

.page-card
{
  max-width: 850px;
  margin: 80px auto;
  padding: 40px;
  border: 1px solid white;
  border-radius: 24px;
  background: linear-gradient(145deg, #111111, #1f1f1f);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.hero-text
{
  color: white;
  font-size: 34px;
  font-weight: bold;
  margin-top: 30px;
}

.body-text
{
  color: #dddddd;
  font-size: 24px;
  line-height: 1.5;
  max-width: 700px;
  margin: 20px auto 35px auto;
}

.scheduler-section
{
  margin-top: 55px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.scheduler-text
{
  color: #bbbbbb;
  font-size: 18px;
  margin-bottom: 10px;
}

.secondary-button
{
  font-size: 20px;
  padding: 8px 18px;
  opacity: 0.75;
}

/* schedulers.html */

.tables-container
{
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* kindoo.html */

.kindoo-section-title
{
  color: white;
  font-size: 28px;
  margin: 45px auto 15px auto;
  text-align: center;
}

.kindoo-steps
{
  display: flex;
  gap: 22px;
  justify-content: center;
  margin: 35px 0;
  flex-wrap: wrap;
}

.kindoo-step
{
  width: 260px;
  padding: 24px;
  margin: 20px auto;
  border-radius: 20px;
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
}

.kindoo-feature-step
{
  width: auto;
  max-width: 720px;
  text-align: center;
}

.kindoo-feature-step p
{
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.kindoo-step h2
{
  color: white;
  font-size: 22px;
  margin: 10px 0;
}

.kindoo-step p
{
  color: #cccccc;
  font-size: 17px;
  line-height: 1.4;
}

.kindoo-note
{
  margin: 35px auto 25px auto;
  max-width: 720px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.kindoo-note h2
{
  color: white;
  font-size: 26px;
  margin-top: 0;
}

.kindoo-note p
{
  color: #dddddd;
  font-size: 19px;
  line-height: 1.5;
}

.kindoo-list
{
  color: #dddddd;
  font-size: 20px;
  line-height: 1.7;
  text-align: left;
  max-width: 520px;
  margin: 20px auto 0 auto;
}

.kindoo-list li
{
  margin-bottom: 8px;
}

.kindoo-photo-card
{
  max-width: 720px;
  margin: 30px auto;
  padding: 18px;
  border-radius: 22px;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.kindoo-photo-card img
{
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 16px;
  background-color: #000000;
  cursor: pointer;
}

.kindoo-photo-card p
{
  color: #dddddd;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 0;
}

.inline-icon
{
  height: 24px;
  vertical-align: middle;
  margin: 0 6px;
}

.img-modal
{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.img-modal img
{
  max-width: 95%;
  max-height: 90%;
  border-radius: 12px;
}

/* mobile */

@media (max-width: 768px)
{
  .page-card
  {
    margin: 20px 12px;
    padding: 22px;
    border-radius: 18px;
  }

  h1
  {
    font-size: 30px;
  }

  .hero-text
  {
    font-size: 25px;
  }

  .body-text
  {
    font-size: 18px;
  }

  button
  {
    width: 100%;
    max-width: 360px;
    font-size: 22px;
  }

  .secondary-button
  {
    font-size: 18px;
  }

  .tables-container
  {
    flex-direction: column;
  }

  .kindoo-section-title
  {
    font-size: 24px;
    margin-top: 35px;
  }

  .kindoo-step
  {
    width: 100%;
  }

  .kindoo-note p,
  .kindoo-list,
  .kindoo-photo-card p
  {
    font-size: 17px;
  }
}

.modal-close
{
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 34px;
  color: white;
  cursor: pointer;
  z-index: 10000;
  opacity: 0.8;
}

.modal-close:hover
{
  opacity: 1;
}

.modal-hint
{
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
  color: #cccccc;
  font-size: 18px;
  opacity: 0.7;
}

.img-modal
{
  cursor: pointer;
}

