/*
Theme Name: fwback-wp
Theme URI: http://underscores.me/
Author: brot & salz
Author URI: https://brotsalz.de/
Description: This is the custom theme for the Fitzek World Website.
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: fwback-wp
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

fwback-wp is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* * Fonts
* --------------------------------------------- */
/* space-mono-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  src: url('../fwback-wp/assets/fonts/space-mono/space-mono-v17-latin-regular.woff2')
    format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* space-mono-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 700;
  src: url('../fwback-wp/assets/fonts/space-mono/space-mono-v17-latin-700.woff2')
    format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: Yoko;
  font-style: normal;
  font-weight: 500;
  src:
    url('../fwback-wp/assets/fonts/yoko/yoko.woff2') format('woff2'),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url('../fwback-wp/assets/fonts/yoko.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* * Bootstrap container max-width overrides
* --------------------------------------------- */
/* Bootstrap 'xl' breakpoint starts at 1200px */
@media (min-width: 1200px) {
  .container-xl,
  .container {
    max-width: 1480px;
  }
}

/* If you also want to change 'xxl' (1400px+) */
@media (min-width: 1400px) {
  .container-xxl,
  .container {
    max-width: 1680px;
  }
}

/* * General
* --------------------------------------------- */
:root {
  --cWhite: #f7f2ea;
  --cBlack: #000000;
  --cRed: #ef1111;

  --fw-400: 400;
  --fw-500: 500;
  --fw-700: 700;
}

html {
  font-size: 18px;
}

body {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: var(--fw-400);
  color: var(--cWhite);
  background-color: var(--cBlack);
}

.h-4xl,
.h-3xl,
.h-2xl,
.h-xl,
.h-lg {
  font-family: Yoko, almaq-rough, sans-serif;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 1.5rem;
  line-height: 1.05;
  hyphens: auto;
}

.h-4xl {
  font-size: clamp(3.5rem, 6vw, 5rem);
}

.h-3xl {
  font-size: clamp(2.75rem, 5vw, 4rem);
}

.h-2xl {
  font-size: clamp(2.5rem, 4vw, 3rem);
  line-height: 1.1;
}

.h-xl {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.25;
}

.h-lg {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.25;
}

.section_indicator {
  background: var(--cRed);
  color: var(--cBlack);
  padding: 0.25rem 0.5rem;
  font-weight: var(--fw-700);
  width: fit-content;
  position: relative;
  margin-inline: 25px;
}

.section_indicator::after,
.section_indicator::before {
  content: '';
  display: block;
  width: 25px;
  height: 100%;
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.section_indicator::before {
  left: -25px;
  background-image: url('../fwback-wp/assets/imgs/fitzek-section-indicator-end-left.svg');
}

.section_indicator::after {
  right: -25px;
  background-image: url('../fwback-wp/assets/imgs/fitzek-section-indicator-end-right.svg');
}

/* * Book Single
* --------------------------------------------- */
/* .book_hero__content {
  margin-top: -600px;
} */

.accent_line hr {
  opacity: 1;
  margin: 0;
  width: 100%;
  height: 1px;
}
