/*
Theme Name: JCI Kandidatur
Theme URI: 
Author: BornDigital
Author URI: 
Description: Für die Kandidatur der JCI Innerschwyz
Requires at least: 6.8
Tested up to: 6.8
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: jci-kandidatur
Tags: 
*/


/***************************
 Typewriter Animation
***************************/
.typewriter-animation {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .15em solid #EDBE39; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  /*letter-spacing: auto; /* Adjust as needed */
  animation: 
    typing 5s steps(50, end),
    blink-caret .75s step-end infinite;
}

/***************************
 The typing effect
***************************/
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/***************************
 The typewriter cursor effect
***************************/
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #EDBE39; }
}

/***************************
 Button Hover
***************************/
.button-hover a {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.button-hover:hover a {
	background-color: #EDBE39 !important;
}

/***************************
 Menu color
***************************/
.wp-block-navigation-item__content {
	color: white !important;
}


/***************************
 Mobile Close button
***************************/
.wp-block-navigation__responsive-container-close {
	color: white;
}

/***************************Focus Border WP 6.5 - Add or Remove focus features ***************************/
:where(.wp-site-blocks *:focus) {
    outline-width: inherit !important;
    outline-style: inherit !important;
}