/*
 Theme Name:   Sauter Child Theme
 Template:     twentytwentyfive
 Version:      1.0.0
*/


:root {
  --color-dark: #384260;
  --color-font: #282f46;
  --color-blue: #95AFDD;
  --color-yellow: #E6D553;
  --color-white: #fff;
  --color-black: #000;
  --color-light-gray: #f5f5f5;
}

/********************************************************** Basics*/
html {
    scroll-behavior: smooth;
}

body {
    color: var(--color-font);
}

footer {
  margin: 0 !important;
}

b,
strong {
  font-weight: 500;
}

h1, 
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-font) !important;
}

p.is-style-serif-font {
    font-family: "Libre Bodoni";
}

header nav ul li {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.2s;
}

header nav ul li:hover {
    color: var(--color-yellow);
}

header nav ul li:hover a {
    text-decoration: none;
}

footer {
    margin-block-start: 0;
}

footer nav ul li {
    font-size: 14px;
}

footer figure img {
    object-fit: contain;
}

/********************************************************** Override Kadence Blocks*/

.kb-row-layout-wrap {
    margin-block-start: 0;
}

/********************************************************** Custom Classes*/

.fit-contain figure img {
    object-fit: contain !important;
}

.badge {
    background: var(--color-yellow);
    padding: 1rem 2px;
    width: max-content;
    font-family: "Libre Bodoni";
    position: relative;
}

.badge::after {
    content: "";
    display: block;
    background-color: var(--color-yellow);
    height: 100%;
    clip-path:circle(60% at 0 50%);
    width: 50px;
    position: absolute;
    right: -50px;
    top: 0;
}

.badge::before {
    content: "";
    display: block;
    background-color: var(--color-yellow);
    height: 100%;
    width: 70vw;
    position: absolute;
    right: 99%;
    top: 0;
}

/********************************************************** Import Fonts*/
/* libre-bodoni-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: 'Libre Bodoni';
  font-style: normal;
  font-weight: 400;
  src: url('./assers/fonts/libre-bodoni-regular') format('otf'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* libre-bodoni-italic - 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: 'Libre Bodoni';
  font-style: italic;
  font-weight: 400;
  src: url('./assers/fonts/libre-bodoni-italic') format('otf'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* libre-bodoni-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: 'Libre Bodoni';
  font-style: normal;
  font-weight: 700;
  src: url('./assers/fonts/libre-bodoni-700') format('otf'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* libre-bodoni-700italic - 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: 'Libre Bodoni';
  font-style: italic;
  font-weight: 700;
  src: url('./assers/fonts/libre-bodoni-700italic') format('otf'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Barroba Regular */
@font-face {
  font-display: swap;
  font-family: 'Barroba';
  font-style: normal;
  font-weight: 400;
  src: url('./assets/fonts/Barroba-Regular.otf') format('opentype');
}

/* Barroba Medium */
@font-face {
  font-display: swap;
  font-family: 'Barroba';
  font-style: normal;
  font-weight: 500;
  src: url('./assets/fonts/Barroba-Medium.otf') format('opentype');
}

/* Barroba SemiBold */
@font-face {
  font-display: swap;
  font-family: 'Barroba';
  font-style: normal;
  font-weight: 600;
  src: url('./assets/fonts/Barroba-SemiBold.otf') format('opentype');
}

/* Barroba Light */
@font-face {
  font-display: swap;
  font-family: 'Barroba';
  font-style: normal;
  font-weight: 300;
  src: url('./assets/fonts/Barroba-Light.otf') format('opentype');
}

