/*
Theme Name: Eddyboat
Author: eloq GmbH
Author URI: https://eloq.swiss/
Description: Die eloq GmbH macht nicht einfach Internetseiten. Wir bieten Ihnen durchdachte Konzepte, mischen Designkompetenz mit technischem Können und streben so nach der perfekten Internet-Präsenz unseres Kunden. Das vorliegende Theme wurde von uns mit Passion und Freude handgefertigt. Wir hoffen, Ihnen gefällt unsere Arbeit!
Version: 1.5.7
*/

/* Imports */

@import url("css/typo.css");
@import url("css/utilities.css");
@import url("css/header.css");
@import url("css/footer.css");
/*
COLOR DEFINITIONS - GOES BELOW:
*/

:root {
  --primary-blue: #8cbeea;
  --background-blue: #e6f4ff;
  --grey: #a8aaac;
  --white: #fff;
  --black: #000;
}

/* === Theme Specific === */

/* ----- GENERAL ----- */

body {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  min-height: 100vh;
  background: var(--background-blue);
}

body > main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

section,
a {
  position: relative;
}

/* END GENERAL */

/* ----- WP ADMIN BAR ----- */

/*#wpadminbar {
    display: none;
  }*/

/* END WP ADMIN BAR */

/* ----- BUTTONS ----- */

/* Button classes:
        - btn_xyz_primary
        - btn_xyz_secondary 
*/

/* Button Reset */

button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
}

.btn {
  margin-top: 10px;
  margin-bottom: 30px;
  background: transparent;
  color: var(--black);
  border-radius: 5px;
  font-family: "Saira", sans-serif;
  text-transform: uppercase;
  display: flex;
  padding: 8px 14px;
  align-items: center;
  gap: 8px;
  transition: background 200ms ease-in-out;
}

.btn.btn_info {
  padding: 5px 0;
}

.btn:hover {
  text-decoration: none;
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}

.btn.btn_info:hover {
  border-color: transparent;
}

.btn svg {
  transition: all 200ms ease-in-out;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  border: 1px solid var(--black);
  border-radius: 5px;
}

.btn-primary:active,
.btn-primary:focus {
  background-color: var(--primary-blue) !important;
  border-color: black !important;
  color: black !important;
}

.btn-secondary {
  color: var(--primary-blue);
  border: none;
  padding: 0;
  text-decoration: none;
}

.btn-secondary:hover {
  color: var(--primary-blue);
}

.btn-slim {
  text-decoration: underline;
}

/* END BUTTONS */

/* ----- LAZYLOAD EFFECT ----- */

img.bg_static_cover {
  -webkit-filter: blur(3px);
  filter: blur(3px);
  transition: filter 500ms, -webkit-filter 500ms;
}

img.bg_static_cover.lazyloaded {
  -webkit-filter: blur(0);
  filter: blur(0);
}

/* END LAZYLOAD EFFECT */
