/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: jeroen Mulder
 * Template: blocksy
 * Text Domain: blocksy
 */

/** Hero button**/

.mystic-btn {
  display: inline-block;
  background: linear-gradient(99deg, #8b6f33, #f1cd89, #8b6f33);
  color: #1A1F3B;
  font-weight: 600;
  padding: 8px 28px;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
  font-family: cincel;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.mystic-btn:hover {
  background: linear-gradient(99deg, #7a622d, #e6bd6f, #7a622d);
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  color: #1A1F3B;
}


/** EPISODES**/
.episode-box {
  font-family: lora;
  line-height: 1.6;
  color: #333;
  max-width: 700px;
  margin: 20px auto;
}

.leesmeer-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.8s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.6s ease-in-out,
    margin-top 0.5s ease;
}

/* visuele open-state (opacity / spacing) - max-height wordt via JS geregeld */
.episode-box.active .leesmeer-content {
  opacity: 1;
  margin-top: 15px;
}

/* knop-styling - blijf deze gebruiken */
.leesmeer-toggle {
  display: block;
  background: linear-gradient(99deg, #8b6f33, #f1cd89, #8b6f33);
  border: none;
  color: #1A1F3B;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
  margin-top: 20px;
  width: 100%;
  max-width: 400px;
  text-align: center;
}



/* Mobiel: centreren */
@media (max-width: 768px) {
  .leesmeer-toggle {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Tablet en desktop: links uitlijnen */
@media (min-width: 769px) {
  .leesmeer-toggle {
    margin-left: 0;
    margin-right: auto;
  }
}

.leesmeer-toggle:hover {
  background: linear-gradient(99deg, #7a622d, #e6bd6f, #7a622d);
  transform: scale(1.05);
}

.sleutelwoorden ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.sleutelwoorden li {
  margin: 6px 0;
  font-weight: 500;
}

.sleutelwoorden i
{
  color: #8b6f33;
	margin-right: 8px;
}
	
	/** contact button **/
.elementor-7 .elementor-element.contactButton .elementor-button[type="submit"] {
   background: linear-gradient(99deg, #8b6f33, #f1cd89, #8b6f33);
  border: none;
  color: #1A1F3B;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
}

 /** Footer**/
footer i{
  color: #8b6f33;
	margin-right: 2px;
	margin-left: 2px;
}