/*
Theme Name: Twenty Twenty-Five Child
Theme URI: https://wordpress.org/themes/twentytwentyfive/
Template: twentytwentyfive
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
Tags: one-column,custom-colors,custom-menu,custom-logo,editor-style,featured-images,full-site-editing,block-patterns,rtl-language-support,sticky-post,threaded-comments,translation-ready,wide-blocks,block-styles,style-variations,accessibility-ready,blog,portfolio,news
Version: 1.5.1783925955
Updated: 2026-07-13 08:59:15

*/

/**
 * Mobile navigation toggle ("burger menu"): round white button with a soft
 * shadow, showing a 3-dot icon instead of the default hamburger lines.
 * Targets WordPress core's Navigation block markup, so no template override
 * is needed — this applies wherever the block's mobile toggle renders.
 */
.wp-block-navigation__responsive-container-open,
.wp-block-navigation__responsive-container-close {
	position: relative;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: #f8fbff;
	box-shadow: 0 10px 20px 0 rgba(1, 5, 97, 0.1);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
}

.wp-block-navigation__responsive-container-open:hover,
.wp-block-navigation__responsive-container-close:hover {
	background-color: #0018b2;
}

.wp-block-navigation__responsive-container-open svg,
.wp-block-navigation__responsive-container-close svg {
	display: none;
}

.wp-block-navigation__responsive-container-open::before,
.wp-block-navigation__responsive-container-close::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #0018b2;
	box-shadow:
		-10px 0 0 0 #0018b2,
		10px 0 0 0 #0018b2;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.wp-block-navigation__responsive-container-open:hover::before,
.wp-block-navigation__responsive-container-close:hover::before {
	background-color: #f8fbff;
	box-shadow:
		-10px 0 0 0 #f8fbff,
		10px 0 0 0 #f8fbff;
}