/*
Theme Name: bellCat-simpleDesign
Author: Franzi
Version: 1.0
Description: Neues Design, für mehr Schlichtheit
*/

/*
Breakpoints
@media (max-width: 1200px)
@media (max-width: 768px)
Handy, falls kritisches Design
@media (max-width: 480px)
*/

/* =========================
   Base Variables
========================= */

:root {

    /* Farben */
    --color-primary: #0f6171;
    --color-secondary: #a58243;
    --color-accent: #b4442b;

    --color-bg: #19818f;
    --color-bg-verlauf: linear-gradient(#a58243, #0f6171);

    --color-text: #fff;
    --color-text-light: #eedcbc;

    /* Overlay */
    --color-overlay: rgba(0, 0, 0, 0.6);

    /* Border */
    --color-border: #fff;

}

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
a {
	text-decoration-thickness: 1px !important;
	text-underline-offset: .1em;
}

/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	outline-offset: 0;
}

/*
 * Progressive enhancement to reduce widows and orphans
 * https://github.com/WordPress/gutenberg/issues/55190
 */
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
	text-wrap: pretty;
}

/*
 * Change the position of the more block on the front, by making it a block level element.
 * https://github.com/WordPress/gutenberg/issues/65934
*/
.more-link {
	display: block;
}

/*
 * Prevents unnecessary scrollbars while handling long lines of preformatted text.
 * https://core.trac.wordpress.org/ticket/63875
 */
:where(pre) {
	overflow-x: auto;
}
