/* БЛОК ПРИГЛАШЕНИЯ */

.invite {
  background: #e9e3d8;
  text-align: center;
}

/* ЗАГОЛОВОК */

.invite-title {
  font-family: "Hangyaboly", serif;

  font-size: clamp(36px, 5vw, 64px);

  color: #4b3526;

  margin-bottom: 40px;
}

/* ТЕКСТ */

.invite-text {
  /* font-family: "Cormorant Garamond", serif; */

  font-size: 16px;

  color: #4b3526;

  line-height: 1.5;

  margin-bottom: 30px;
}

/* МЕСЯЦ */

.invite-month {
  font-family: "Great Vibes", cursive;

  font-size: 64px;

  color: #4b3526;

  margin-bottom: 30px;
}

/* ЛИНИЯ ДНЕЙ */

.invite-days {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 26px;

  margin-bottom: 50px;
}

/* КВАДРАТНЫЕ ДНИ */

.day {
  width: 70px;
  height: 70px;

  border: 2px solid #5b4030;

  display: flex;

  align-items: center;
  justify-content: center;

  font-family: "Cormorant Garamond", serif;

  font-size: 30px;

  color: #5b4030;

  border-radius: 14px;

  background: transparent;
}

/* БЛЕДНЫЕ ДНИ */

.day.muted {
  width: 40px;
  height: 40px;

  font-size: 20px;

  opacity: 0.45;

  border-color: #bdb4a8;

  color: #bdb4a8;
}

/* СЕРДЦЕ */

.heart {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.heart {
  position: relative;

  width: 74px;
  height: 66px;

  background: #a9a27e;

  transform: rotate(-45deg);

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 6px;

  animation: heartPulse 1.6s ease-in-out infinite;
}

.heart::before,
.heart::after {
  content: "";

  position: absolute;

  width: 74px;
  height: 66px;

  background: #a9a27e;

  border-radius: 50%;
}

.heart::before {
  top: -37px;
  left: 0;
}

.heart::after {
  left: 37px;
  top: 0;
}

/* ЧИСЛО В СЕРДЦЕ */

.heart span {
  transform: rotate(45deg) translateY(-10px);

  font-size: 30px;

  font-family: "Cormorant Garamond", serif;

  color: white;

  font-weight: 500;

  z-index: 5;
}

/* НИЖНИЙ ТЕКСТ */

.invite-footer {
  /* font-family: "Cormorant Garamond", serif; */

  font-size: 16px;

  color: #4b3526;

  line-height: 1.5;
  margin-top: 80px;
}

/* АДАПТИВ */

/* @media (max-width: 768px) {
  .invite-text {
    font-size: 16px;
  }

  .invite-footer {
    font-size: 16px;
  }

  .day {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .invite-month {
    font-size: 50px;
  }
} */

@keyframes heartPulse {
  0% {
    transform: rotate(-45deg) scale(1);
  }

  50% {
    transform: rotate(-45deg) scale(1.15);
  }

  100% {
    transform: rotate(-45deg) scale(1);
  }
}
