/*
Theme Name: Zarosch
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: Ein modernes WordPress Block-Theme mit Full Site Editing Unterstützung.
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zarosch
Tags: block-theme, full-site-editing, blog, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* 
 * WordPress Block Theme Styles
 * Die Haupt-Styles werden über theme.json definiert.
 * Zusätzliche Custom-Styles können hier hinzugefügt werden.
 */

#desktop-menu, #mobile-menu {
	display: none;
}

@media(max-width: 720px) {
	#mobile-menu.active {
		display: block;
		position: fixed;
		top: 0;
		bottom: 0;
		width: 100%;
	}
	.admin-bar #mobile-menu.active {
		top: 46px;
	}
}

@media(min-width: 720px) {
	#desktop-menu {
		display: block;
	}
	#mobile-bar {
		display: none;
	}
}

