/* Hide titles on DE landing page */
.page-id-1093 .entry-title {
   display: none;
}
.page-id-1093 .site-header {
  display: none;
}
.page-id-1076 .entry-title {
  display: none;
}
.page-id-1368 .entry-title {
  display: none;
}
/* bring picture and text closer */
.wp-block-image.size-full {
  margin-bottom: 9px;
}
.wp-block-heading.has-text-align-center {
  margin-top: 9px;
	margin-bottom: 9px;
}
.has-text-align-center.has-small-font-size {
  margin-top: 0px;
	margin-bottom: 0px;
}
/* Hide comments area */
.comments-area {
  display: none;
}
/* Hide navigation under blog posts */
.nav-links {
display: none;
} 
/* Hide featured image on post page */
.single-post .wp-post-image {
	display:none;
}
/* Hide Categories Icon on Shop Page */
.woocommerce-products-header {
    display: none;
}
/* Border on product page thumbs */
.flex-viewport {
		margin-bottom: 10px;
}
/* Font size on product page */
.product_title.entry-title {
		font-size: 200%;
}
/* Set equal distance of text & price */
.product .woocommerce-loop-product__title {
  height: 70px; 
}
/* Hide headers of blog posts only */
.single-post .entry-title {
    display: none;
}
/* Move blog images closer together */
.category-en.category-short.type-post.post-has-image {
		margin-left: 30px; 
    margin-top: 10px;
    margin-bottom: 10px;
}
.category-en.category-full.type-post.post-has-image {
  	margin-left: 60px;   
	  margin-top: 10px;
    margin-bottom: 10px;
}
.category-de.category-short.type-post.post-has-image {
    margin-left: 30px; 
	  margin-top: 10px;
    margin-bottom: 10px;
}
.category-de.category-full.type-post.post-has-image {
	  margin-left: 60px; 
    margin-top: 10px;
    margin-bottom: 10px;
}
.category-de.category-poem.type-post.post-has-image {
	  margin-left: 0px; 
    margin-top: 10px;
    margin-bottom: 10px;
}
.category-en.category-poem.type-post.post-has-image {
    margin-left: 0px;  
	  margin-top: 10px;
    margin-bottom: 10px;
}
.category-en.category-meditation.type-post.post-has-image {
    margin-left: -30px;  
	  margin-top: 10px;
    margin-bottom: 10px;
}

/* Write Category to blog post */
.category-de.category-poem.type-post.post-has-image::before {
    content: "Verse";
    display: block;
    font-size: 1.1em;
    margin-bottom: 5px;
	  text-align: left;
    white-space: nowrap;
    color: gray; 
    transform: rotate(-45deg);
    position: absolute;
    left: -70px;
    top: 10px;
}
.category-en.category-poem.type-post.post-has-image::before {
    content: "Poem";
    display: block;
    font-size: 1.1em;
    margin-bottom: 5px;
	  text-align: left;
    white-space: nowrap;
    color: gray; 
    transform: rotate(-45deg);
    position: absolute;
    left: -70px;
    top: 10px;
}
.category-de.category-short.type-post.post-has-image::before {
    content: "Schnipsel";
    display: block;
    font-size: 1.1em;
    margin-bottom: 5px;
	  text-align: left;
    white-space: nowrap;
    color: gray; 
    transform: rotate(-45deg);
    position: absolute;
    left: -90px;
    top: 20px;
}
.category-en.category-short.type-post.post-has-image::before {
    content: "Snippet";
    display: block;
    font-size: 1.1em;
    margin-bottom: 5px;
	  text-align: left;
    white-space: nowrap;
    color: gray; 
    transform: rotate(-45deg);
    position: absolute;
    left: -70px;
    top: 10px;
}
.category-de.category-full.type-post.post-has-image::before {
    content: "Blog";
    display: block;
    font-size: 1.1em;
    margin-bottom: 5px;
	  text-align: left;
    white-space: nowrap;
    color: gray; 
    transform: rotate(-45deg);
    position: absolute;
    left: -70px;
    top: 10px;
}
.category-en.category-full.type-post.post-has-image::before {
    content: "Blog";
    display: block;
    font-size: 1.1em;
    margin-bottom: 5px;
	  text-align: left;
    white-space: nowrap;
    color: gray; 
    transform: rotate(-45deg);
    position: absolute;
    left: -70px;
    top: 10px;
}
.category-en.category-meditation.type-post.post-has-image::before {
    content: "Meditation";
    display: block;
    font-size: 1.1em;
    margin-bottom: 5px;
	  text-align: left;
    white-space: nowrap;
    color: gray; 
    transform: rotate(-45deg);
    position: absolute;
    left: -100px;
    top: 10px;
}

/* Fix Navigation Block (No Scrolling) */
.wp-block-navigation {
    position: fixed;
    top: 0px; /* Abstand oben */
    left: 50%;
    transform: translateX(-50%); /* Menü genau in die Mitte setzen */
    width: 100%;
    max-width: 1200px;
    height: 60px; /* Feste Höhe */
    background: white;
    z-index: 9999;
    display: flex;
    align-items: flex-end; /* unten */
    justify-content: center;
    padding-bottom: 0px; /* Abstand unten */
}
/* Platz für das feste Menü schaffen */
body {
    padding-top: 100px;
}