/*
Theme Name: renemaurer
Theme URI: 
Author: 
Author URI: 
Description: 
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 5.7
Version: 
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Template: twentytwentyfive
Text Domain: renemaurer
Tags: 
*/

header.wp-block-template-part .wp-block-navigation .wp-block-navigation-item::before {
	content: "~";
	margin-right: 8px;
}

header.wp-block-template-part .wp-block-navigation .wp-block-navigation-item:first-child::before {
	content: "";
	margin-right: 0;
}

header.wp-block-template-part .wp-block-site-title,
	header.wp-block-template-part .wp-block-navigation .wp-block-navigation-item,
	.bg-blur {
		text-shadow: 0 0 0.2em #0b3954;
}

.bg-blur p {
	backdrop-filter: blur(16px) saturate(70%);
	clip-path: polygon(10% 0%, 100% 1%, 100% 100%, 10% 100%, 0% 50%);
	padding: 3rem;
}

ul li.agenda-item {
	border: 2px solid white;
	border-radius: 16px;
	filter: drop-shadow(0 5px 10px 0 #ffffff);
	max-height: 320px;
	overflow: hidden;
	padding: 4px 32px;
	position: relative;
	z-index: 0;
	transition: 0.6s ease-in;
}


ul li.agenda-item::before {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: -15px;
	right: -15px;
	background: white;
	height: 40px;
	width: 40px;
	border-radius: 16px;
	transform: scale(1);
	transform-origin: 50% 50%;
	transition: transform 0.6s ease-out;
  }
  
  ul li.agenda-item:hover {
	color: var(--wp--preset--color--base) !important;
  }

  ul li.agenda-item:hover::before {
	transition-delay:0.2s ;
	transform: scale(40);
  }
  
  ul li.agenda-item:hover{
	  color: #ffffff;
  }
