/*
Theme Name:	PV4D Styles
Description: Theme for PV4D
Author:	Andi Heintzel
Author URI:	https://www.pixel-salon.de
Template:	twentytwentyfive
Version:	0.1
Text Domain:  pv4d-twentytwentyfive-child
*/


/* V A R I A B L E S */


 :root {
    --distanzblau: rgb(110,160,181);

 }


/* ! T Y P O G R A P H Y */
 
body, 
 input,
 textarea,
 button {
 }
  
h1 {
  font-size: 333%;
  font-weight: 600;
  text-align: center;
 }
body.home h1 {
  text-align: left;
}

h2 {
 font-size: 277%;
 font-weight: 600;
}


body.home h2 {
  font-size: 333%;
  }

h3 {
  font-size: 222%;
  font-weight: 600;
}

h4 {
  font-size: 133%;
  font-weight: 600;
}

#titelSubtitel p {
  font-size: 40px;
}

@media screen and (max-width: 800px) {
  h1 {
    font-size: 222%;
   }
  h2 {
    font-size: 185%;
  }
  body.home h2 {
    font-size: 222%;
  }
  
  h3 {
  font-size: 150%;
  }
  
  h4 {
  font-size: 112%;
  }
  
  #titelSubtitel p {
  font-size: 27px;
  } 
}

/* ! Silbentrennung */

body {
  hyphens: auto;
  hyphenate-limit-chars: 8 4 4;
}

h1, h2, h3, h4 {
  hyphens: none;
}

@media screen and (max-width: 800px) {
  h1, h2, h3, h4 {
    hyphens: auto;
    hyphenate-limit-chars: 8 4 4;
    -webkit-hyphenate-limit-after:4;
    -webkit-hyphenate-limit-before:4;
  }
}

 
/* ! Basic Layout */

/* #bannerMitDekor {
  padding-bottom: 200px;
  background-image: url(images/Schraffur_1.png);
  position: relative;
}


#bannerMitDekor figure {
  position: absolute;
  margin-top: -120px;
  width: 100%;
} */

/* #titelSubtitel {
  border: 5px solid black;
  background-color: white;
  padding: 60px 25px 120px 25px;  
} */

body:not(.home) #titelSubtitel p {
  display: none;
}

.entry-content>div {
  padding: 90px 25px;
}

@media screen and (max-width: 800px) {
  .entry-content>div {
    padding: 90px 10px;
  }
}

@media screen and (max-width: 600px) {
  .entry-content>div {
    padding: 90px 0px;
  }
}

.bildMitSchraffur {
  background-image: url(images/Schraffur_klein_grün.png);
  background-position: center bottom;
  background-repeat: no-repeat;
 }
.bildMitSchraffur.gelb {
   background-image: url(images/Schraffur_klein_gelb.png);
}

  
/* ! Basic Styling   */

.black-block {  
  background: black;
  color: white;
}

 
/* ! Buttons */

 /* ! Formulare  */
 
 textarea, 
 input[type=text],
 input[type=email] {
   width: 100%;
   /* background: var(--radioactiveBackgroundGradient); */
   background: transparent;
   border: 2px solid white;
   color: white;
   padding: 15px;
   border-radius: 15px;
 }
 
 input[type=submit] {
   position: relative;
   margin: 25px auto;
   display: block;
 }
 
form label:before {
  content: " ";
  display: inline-block;
  width: 10px;
}
 
.highlight input[type=submit] {
  background: white;
}



/* ! Inszenierung */

body{
  animation-duration: 500ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-name: fadeIn;
}

 @keyframes fadeIn {
   from { opacity: 0; }
   to { opacity: 1; }
 }
 
.wp-element-button {
   transition: transform 125ms ease-out;
 }
 
 .wp-element-button:hover {
   transform: scale(1.05);
 }
 
 .wp-element-button:active {
   transform: scale(0.95);
 }
