@charset "UTF-8";
/*
Theme Name: 4 Linden Aachen Theme
Description:
Version: 1.0
Author: Talha Sariyürek
Template: kc-parent-theme
Author URI: https://konzeptcode.com
*/
/*
@include max($tablet) {
	height: 60px;
}
*/
/*
Beispiel:
@include default_text_specs(
    $css-variable-prepend: "kc-teaser-title",
    $font-weight: 700,
    $line-height: 1,
    $text-align: "center"
);
*/
/*
Beispiel:
@include default_h1_specs(
    $css-variable-prepend: "",
    $font-weight: 700,
    $line-height: 1,
    $text-align: "center"
);
*/
/*
Beispiel:
@include default_h2_specs(
    $css-variable-prepend: "",
    $font-weight: 700,
    $line-height: 1,
    $text-align: "center"
);
*/
/*
Beispiel:
@include css_variable_prepend(
    $property: "font-size",
    $prepend-string: 'kc-teaser-title',
    $default-value: 20px
);
*/
/*
@extend %transition;
*/
/*
@extend %transition-timing;
*/
/*
@include max($tablet) {
	height: 60px;
}
*/
:root {
  --white: #f8f9ff;
  --primary-color: #4a5d23;
  --primary-color-dark: #2c3e0a;
  --primary-color-light: #8fbc8f;
  --secondary-color: #6b4423;
  --secondary-color-light: #cc6b49;
  --secondary-color-lightest: #f7f3e9;
  --tertiary-color: #dab852;
  --grey: #7a7a7a;
  --primary-font: "IBM Plex Serif", sans-serif;
  --secondary-font: "Playfair Display", serif;
  --content-width: 1024px;
  --border-radius: 20px;
}

#header-main {
  display: flex;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding-left: var(--global-padding);
  padding-right: var(--global-padding);
}

#header-main-inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

#logo {
  display: block;
}
#logo img {
  display: block;
  width: 100%;
  height: auto;
}

#nav {
  display: flex;
  align-items: center;
}
#nav > .menu-item {
  display: block;
}
#nav > .menu-item a {
  white-space: nowrap;
}

#menu-burger {
  display: none;
}

html,
body {
  font-family: var(--p-font-family);
  font-weight: var(--p-font-weight);
  font-size: var(--p-font-size);
  line-height: 1.5;
  color: var(--text-color);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  background: radial-gradient(ellipse at top, var(--primary-color-lightest) 0%, #f8fafc 50%, #ffffff 100%);
}

*,
*::before,
*::after {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

/* 
.home-intro-prehead
.home-intro-cta
.home-intro-head
.home-intro-subhead

.button-primary

 */
#home-intro p.home-intro-prehead {
  font-size: 16px;
  color: var(--secondary-color-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  font-weight: 600;
}
#home-intro p.home-intro-cta {
  display: inline-block;
  background: var(--secondary-color-light);
  color: white;
  padding: 8px 24px;
  border-radius: 25px 5px 25px 5px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 24px;
  -webkit-animation: gentle-pulse 2s infinite;
          animation: gentle-pulse 2s infinite;
}
#home-intro h1.home-intro-head {
  font-size: 81px;
  line-height: 0.9;
  color: var(--primary-color-dark);
  margin-bottom: 16px;
  font-weight: normal;
}
#home-intro h1.home-intro-head mark {
  background-color: none !important;
  color: var(--secondary-color-light);
}
#home-intro p.home-intro-subhead {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 48px;
  line-height: 1.4;
  max-width: 580px;
}
#home-intro .image-container {
  background: linear-gradient(135deg, var(--moss-green), var(--sage-green));
  top: 10%;
  right: 20%;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  border-radius: 30% 70% 40% 60%;
  overflow: hidden;
  padding: 0;
}
#home-intro .image-container figure {
  height: 100%;
  margin: 0;
}
#home-intro .image-container figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#home-intro .image-container:nth-child(1) {
  width: 300px;
  height: 400px;
}
#home-intro .image-container:nth-child(2) {
  left: -30px;
  right: 0;
  width: 200px;
  height: 250px;
}
#home-intro .image-container:nth-child(3) {
  margin-left: auto;
  transform: translateX(30px);
  width: 150px;
  height: 200px;
}

#wrapper .wp-block-button .wp-element-button {
  padding: 16px 40px;
  border: none;
  font-size: 18px;
  text-decoration: none;
  border-radius: 50px 10px 50px 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-weight: 700;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
#wrapper .wp-block-button.primary .wp-element-button {
  background: var(--secondary-color-light);
  color: white;
  box-shadow: 0 8px 25px rgba(204, 107, 73, 0.3);
  border: none;
}