@charset "UTF-8";
/*
Theme Name: Frost
Theme URI: http://spielhallencheck.de/
Author: SHC
Author URI: http://spielhallencheck.de/
Description: spielhallencheck.de Theme based on Frost
Tags: block-patterns, block-styles, custom-colors, custom-logo, custom-menu, editor-style, full-site-editing, one-column, template-editing, threaded-comments, translation-ready, wide-blocks
Requires at least: 6.5
Tested up to: 6.5.2
Requires PHP: 7.0
Version: 1.1.5
License: GNU General Public License v3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: frost
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a,
button,
input:focus,
input[type=button],
input[type=submit],
textarea:focus,
.wp-element-button {
  transition: all 0.2s ease-in-out;
}

a,
a:focus,
a:hover,
a:not(.wp-element-button) {
  text-decoration-thickness: 1px;
}

b,
strong,
th {
  font-weight: var(--wp--custom--font-weight--medium);
}

mark {
  background: linear-gradient(90deg, var(--wp--preset--color--primary) 0%, var(--wp--preset--color--primary) 100%);
  background-position: 0 85%;
  background-repeat: repeat-x;
  background-size: 100% 15%;
}

main p a:where(:not(.wp-element-button)) {
  text-decoration: none !important;
  border-bottom: 1px solid var(--wp--preset--color--primary);
}
main p a:where(:not(.wp-element-button)):hover {
  color: var(--wp--preset--color--primary);
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
.container {
  max-width: 1180px; /* 1 */
  margin-left: auto; /* 2 */
  margin-right: auto; /* 2 */
  padding-left: 20px; /* 3 */
  padding-right: 20px; /* 3 */
  width: 100%; /* 1 */
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* -- Box Shadow -- */
.is-style-shadow-light {
  box-shadow: var(--wp--preset--shadow--light);
}

.is-style-shadow-solid {
  box-shadow: var(--wp--preset--shadow--solid);
}

@media only screen and (max-width: 600px) {
  /* -- Utility -- */
  .is-style-hidden-mobile {
    display: none !important;
  }
}
@media only screen and (max-width: 782px) {
  /* -- Columns -- */
  .is-style-columns-reverse {
    flex-direction: column-reverse;
  }
}
h1, h2, h3, p, li {
  hyphens: auto;
  word-break: break-word;
}

.site-footer .wp-block-navigation {
  gap: 10px;
}
.site-footer .wp-block-navigation li,
.site-footer .wp-block-navigation a {
  display: block;
  width: 100%;
}
.site-footer p a {
  border-bottom: 1px solid var(--wp--preset--color--primary);
}
.site-footer li a:hover span,
.site-footer .current-menu-item > a span {
  color: var(--wp--preset--color--primary);
}

.footer-links a {
  display: inline-block;
  padding: 0 0 0 15px;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 333;
  background: #fff;
}
.site-header .wp-block-navigation .current-menu-item > a {
  color: var(--wp--preset--color--primary);
}
@media (max-width: 640px) {
  .site-header img {
    max-width: 180px;
  }
}

/* copy of wp default css to a 1000px media query */
@media (min-width: 1200px) {
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: none !important;
  }
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: block !important;
    width: 100%;
    position: relative;
    z-index: auto;
    background-color: inherit;
  }
}
/* neutralize the wp default for 600px */
@media (min-width: 600px) {
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: flex;
  }
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: none;
  }
}
/* -- Forms -- */
.wpcf7-form.sent .form-wrapper {
  display: none;
}

.wpcf7-response-output {
  font-weight: var(--wp--custom--font-weight--regular);
  line-height: var(--wp--custom--line-height--heading);
  background: #fff;
  margin: 30px auto;
  padding: 20px;
}

.form-wrapper .form-head {
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-wrapper h2 {
  color: #000;
}
.form-wrapper h4 {
  margin: 0;
  font-size: 22px;
  color: #000;
}

input,
select,
textarea {
  background-color: var(--wp--preset--color--base);
  border: 1px solid #ccc;
  border-radius: 0;
  color: var(--wp--preset--color--contrast);
  font-family: var(--wp--preset--font-family--primary);
  font-size: var(--wp--preset--font-size--medium);
  font-weight: var(--wp--custom--font-weight--light);
  line-height: var(--wp--custom--line-height--body);
  padding: 10px 20px;
  width: 100%;
}

input:focus,
textarea:focus {
  background-color: #fff;
  border: 1px solid #000;
  outline: none;
}

input[type=checkbox],
input[type=image],
input[type=radio] {
  width: auto;
}

input[type=button],
input[type=email],
input[type=search],
input[type=submit],
input[type=text],
textarea {
  -webkit-appearance: none;
}

::placeholder {
  color: var(--wp--preset--color--contrast);
  font-size: var(--wp--preset--font-size--small);
  opacity: 0.5;
}

.wpcf7-submit:hover,
.wpcf7-submit:focus,
.wpcf7-submit:active,
.wpcf7-submit {
  display: inline-block;
  background: #000;
  color: #fff;
  border: 2px solid #000;
  width: auto;
  cursor: pointer;
}
.wpcf7-submit:hover:hover,
.wpcf7-submit:focus:hover,
.wpcf7-submit:active:hover,
.wpcf7-submit:hover {
  opacity: 0.7;
}

.wp-block-button__link {
  transition: all 0.3s ease-in-out; /* Übergangseffekt für alle Eigenschaften */
}
.wp-block-button__link:hover {
  transform: scale(1.05) !important;
  opacity: 0.9 !important;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
  filter: brightness(1.1);
}

#frm_field_7-line2_container {
  display: none;
}

.frm-show-form #frm_field_9_container {
  margin: 0;
}
.frm-show-form .form-spacer {
  margin-top: 30px !important;
}
.frm-show-form h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

*:not(.wp-block-code) > code {
  background-color: var(--wp--preset--color--neutral);
  font-size: var(--wp--preset--font-size--small);
  padding: 5px 8px;
}

/* -- Navigation -- */
.wp-block-navigation__responsive-container.is-menu-open {
  padding: var(--wp--custom--spacing--gap);
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
  padding-top: var(--wp--custom--spacing--gap);
}

.wp-block-navigation__responsive-container-close,
.wp-block-navigation__responsive-container-open {
  border: 1px solid currentColor;
  padding: 2px;
}

.has-background .wp-block-navigation__responsive-container-open:focus,
.has-background .wp-block-navigation__responsive-container-open:hover {
  color: var(--wp--preset--color--base);
}

/* -- Navigation Submenu -- */
.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
  background-color: var(--wp--preset--color--contrast);
  border: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  padding: 10px;
}

.wp-block-navigation :where(.wp-block-navigation__submenu-container) a {
  padding: 2px 10px;
}

.wp-block-cover h1 {
  color: var(--wp--preset--color--primary);
  font-size: var(--wp--preset--font-size--max-48);
  font-weight: var(--wp--custom--font-weight--bold);
}

@media (max-width: 960px) {
  .wp-block-cover {
    position: relative;
    display: block;
    text-align: center;
    padding: 0;
    min-height: auto !important;
  }
  .wp-block-cover .wp-block-cover__image-background {
    position: relative; /* Macht das Bild wieder Teil des normalen Flusses */
    width: 100%; /* Stellt sicher, dass das Bild die volle Breite einnimmt */
    height: auto; /* Behält das Seitenverhältnis bei */
    z-index: auto; /* Entfernt das Z-Index, um das normale Stapeln zu ermöglichen */
  }
  .wp-block-cover .wp-block-cover__gradient-overlay {
    display: none; /* Optional: Versteckt die Überlagerung auf kleineren Geräten */
  }
  .wp-block-cover .wp-block-cover__inner-container {
    position: relative; /* Entfernt die absolute Positionierung */
    z-index: 33; /* Normalisiert den Z-Index */
    margin-top: 1rem; /* Fügt etwas Abstand oberhalb des Textes hinzu */
    padding: 1rem; /* Sorgt für etwas Innenabstand */
  }
  .wp-block-cover .wp-block-cover__inner-container .wp-block-column:nth-child(2) {
    display: none;
  }
  .wp-block-cover .wp-block-button {
    margin-left: auto;
    margin-right: auto;
  }
}
.lightweight-accordion .lightweight-accordion-title {
  color: #fff;
  background-color: var(--wp--preset--color--primary);
}

.lightweight-accordion-body {
  background-color: var(--wp--preset--color--neutral) !important;
}

.speedlinks {
  position: fixed;
  z-index: 5;
  right: -100px;
  overflow: hidden;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease;
}
.speedlinks:hover {
  right: 0;
}
.speedlinks ul {
  margin: 0;
  padding: 0;
  width: 140px;
  overflow: hidden;
}
.speedlinks span {
  font-size: 1rem;
  color: #fff;
  white-space: nowrap;
  transition: opacity 0.5s ease;
}
.speedlinks li {
  list-style: none;
  display: block;
}
.speedlinks svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin: 0 15px 0 0;
  fill: #fff;
}
.speedlinks a {
  display: flex;
  padding: 5px 10px;
  align-items: center;
  text-decoration: none;
}
.speedlinks a:hover {
  opacity: 0.9;
}
.speedlinks .sl-first a {
  background: #000;
}
.speedlinks .sl-second a {
  background: var(--wp--preset--color--primary);
}
.speedlinks .sl-third a {
  background: #333;
}

.bg1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 480' fill='%23C4F4FF'%3E%3Cpath d='M480 0H240A240 240 0 0 0 0 240v240h240a240 240 0 0 0 240-240V0ZM360 240a120 120 0 0 1-120 120H120V240a120 120 0 0 1 120-120h120v120ZM480 0H240A240 240 0 0 0 0 240v240h240a240 240 0 0 0 240-240V0ZM360 240a120 120 0 0 1-120 120H120V240a120 120 0 0 1 120-120h120v120Z'%3E%3C/path%3E%3C/svg%3E");
  background-position: center right;
  background-repeat: no-repeat;
}

.bg2 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 480' fill='%23F6F7F6'%3E%3Cpath d='M240 120A120 120 0 0 1 120 0H0a240 240 0 0 0 240 240A240 240 0 0 0 0 480h120c0-66.3 53.7-120 120-120a120 120 0 1 0 0-240Z'%3E%3C/path%3E%3C/svg%3E");
}

/*# sourceMappingURL=style.css.map */
