/*
Theme Name: Fascinate Child
Template: fascinate
Version: 1.0
*/

/* Tipografia base */
body,
button,
input,
select,
textarea {
  font-family: 'Poppins', sans-serif;
}

/* Onde o tema usa fonte decorativa */
.entry-metas ul li.posted-by a{
  font-family: "PT Serif Caption", serif;
}

.fascinate-to-top {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fascinate-to-top .to-top-icon {
  width: 32px;
  margin-right: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.fascinate-to-top:hover .to-top-icon {
  transform: translateY(-6px);
  opacity: 0.85;
}

/* Fundo em degradê (roxo → rosa → laranja) */
html, body {
  min-height: 100%;
}

#content.site-content {
  background-image: linear-gradient(
    90deg,
    #C3BBFF 0%,   /* roxo bem claro */
    #FFD1E6 50%,  /* rosa pastel */
    #FFE2C2 100%  /* laranja pastel */
  );
}


.entry-date.published {
  background-color: #transparent; /* exemplo */
  color: #333;
}

/* Remove fundo preto do link de data */
.entry-metas ul li.posted-date a {
  background: #B9B4F8 !important;
  color: #5B2EFF; /* ajuste para sua paleta */
  padding: 5px 15px;
}

.entry-metas ul li.posted-date a:after {
    border-color: transparent transparent #B9B4F8 #B9B4F8;
    border-style: solid;
    border-width: 4px;
    content: "";
    position: absolute;
    right: 0;
    top: -8px;
    z-index: 1;
}

@media (max-width: 600px) {
    .fb-banner .entry-metas ul li.posted-date a:after {
        border-bottom-color: #B9B4F8;
        border-left-color: #B9B4F8;
    }
}

/* Hover da data do post */
.entry-date.published:hover {
  background-color: #B4D2F8;
}

/* Hover do link da data */
.entry-metas ul li.posted-date a:hover {
  background: #B4D2F8 !important;
  color: #2b4a7a; /* opcional: um pouco mais escuro para contraste */
}

/* Hover do "triângulo" */
.entry-metas ul li.posted-date a:hover:after {
  border-color: transparent transparent #B4D2F8 #B4D2F8;
}

.entry-date.published,
.entry-metas ul li.posted-date a,
.entry-metas ul li.posted-date a:after {
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
