

/* ------------------------------------------------------------------ */
/* ||  ||   /||\   ||      ||||||    //||      |\  ||  ||||||  ||||||
/* ||  ||  ||  ||  ||      ||       // ||      |\\ ||  ||        ||
/* ||/\||  ||  ||  ||      |||||   //  ||      ||\\||  |||||     ||
/* |//\\|  ||  ||  ||      ||          ||      || \\|  ||        ||
/* |/  \|   \||/   ||||||  ||          ||  ||  ||  \|  ||||||    ||
/* ------------------------------------------------------------------ */


/* ------------------------------------------------------------------ */
/* STYLESHEET FOR WOLF1.NET */
/* COPYRIGHT 2025 - MANUEL WOLF - ARNSTADT - GERMANY */
/* UNPERMITTED CONTENT USE FOR OWN PURPOSES IS PROHIBITED */
/* ------------------------------------------------------------------ */
	
	
/* ------------------------------------------------------------------ */
/* GENERAL */
/* ------------------------------------------------------------------ */

html {
    height: 100%;
    background: rgb(103,103,103);
    -webkit-text-size-adjust: 100%;
}
	
body {
    margin: 0;
    padding: 0;
    background: url(/bg.jpg) repeat;
    -webkit-text-size-adjust: 100%;
}

/* GENERAL MEDIA QUERIES */

@media (prefers-color-scheme: dark) {
    html {
        background: rgb(31,31,31);
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background: url(/bg_dark.jpg) repeat;
    }
}
	
/* ------------------------------------------------------------------ */
/* FONTS */
/* ------------------------------------------------------------------ */
	
/* HEADER FONTS */

h1 {
    font-family: 'Segoe UI', Calibri, Arial;
    font-size: 40px;
    color: rgb(48,48,48);
}
	
h2 {
    font-family: 'Segoe UI', Calibri, Arial;
    font-size: 30px;
    color: rgb(48,48,48);
}

h3 {
    font-family: 'Segoe UI', Calibri, Arial;
    font-size: 20px;
    color: rgb(48,48,48);
}

/* STANDARD FONTS */

p {
    font-family: 'Segoe UI', Calibri, Arial;
    font-size: 16px;
    line-height: 1.15;
    color: rgb(48,48,48);
}

b {
    font-family: 'Segoe UI', Calibri, Arial;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.15;
    color: rgb(48,48,48);
}

li {
    font-family: 'Segoe UI', Calibri, Arial;
    font-size: 16px;
    line-height: 1.15;
    color: rgb(48,48,48);
}

/* FOOTER FONTS */

footer b {
    font-family: 'Segoe UI', Calibri, Arial;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.15;
    color: rgb(255,255,255);
}

.footer h2 {
    font-weight: 500;
    color: rgb(255,255,255);
	margin: 0;
}

/* STARTPAGE VIEW FONTS */

.frontpage-infoview b,
.frontpage-linkview b,
.frontpage-galleryview b {
    font-family: 'Segoe UI', Calibri, Arial;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.15;
    color: rgb(255,255,255);
}

/* LINK FONTS */

a {
    font-family: 'Segoe UI', Calibri, Arial;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.15;
}

a:link {
    color: rgb(255,80,48);
    text-decoration: none;	
}
	
a:visited {
    color: rgb(255,80,48);	
    text-decoration: none;	
}
	
a:hover {
    color: rgb(255,80,48);
    text-decoration: none;
}
	
a:active {
    color: rgb(255,80,48);
    text-decoration: none;	
}

/* FONTS MEDIA QUERIES */

@media (prefers-color-scheme: dark) {

    /* HEADER FONTS */
    
    h1 {
        color: rgb(255,255,255);
    }

    h2 {
        color: rgb(255,255,255);
    }

    h3 {
        color: rgb(255,255,255);
    }
    
    /* STANDARD FONTS */
    
    p {
        color: rgb(255,255,255);
    }

    b {
        color: rgb(255,255,255);
    }

    li {
        color: rgb(255,255,255);
    }

}

/* ------------------------------------------------------------------ */
/* HEADER */
/* ------------------------------------------------------------------ */
	
.header {
    width: 100%;
    text-align: center;
    background: linear-gradient(0deg, rgba(0,0,0,0.40), rgba(0,0,0,0.60)), url(/bg.jpg) repeat;
}

.header img {
    height: 125px;
    margin-top: 25px;
    margin-bottom: 25px;
    display: inline;
}

/* HEADER MEDIA QUERIES */

@media (max-width: 600px) {

    .header img {
        height: 65px;
        margin-top: 15px;
        margin-bottom: 15px;
        display: inline;
    }

}

@media (prefers-color-scheme: dark) {

    .header {
        background: linear-gradient(0deg, rgba(0,0,0,0.865), rgba(0,0,0,1.00)), url(/bg.jpg) repeat;
    }

}

/* ------------------------------------------------------------------ */
/* CONTENT */
/* ------------------------------------------------------------------ */
	
.content {
    width: 100%;
    min-height: 75vh;
    margin-top: 1.5px;
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: left;
    background-color: rgba(200,200,200,0.33);
}
	
.content-area {
    width: 1200px;
    max-width: 92%;
    margin: 0 auto;
}

.text-area {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 7.5px; 
}

/* CONTENT MEDIA QUERIES */

@media (prefers-color-scheme: dark) {

    .content {
        background-color: rgba(50, 50, 50, 0.33);
    }

}

/* ------------------------------------------------------------------ */
/* FOOTER */
/* ------------------------------------------------------------------ */

.footer {
    background: linear-gradient(180deg, rgba(0,0,0,0.40), rgba(0,0,0,0.60)), url(/bg.jpg) repeat;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	width: 100%;
	text-align: left;
	font: bold 16px sans-serif;
	padding: 55px 50px;
}

.footer .footer-left,
.footer .footer-center,
.footer .footer-right {
	display: inline-block;
	vertical-align: top;
}

/* FOOTER LEFT */

.footer .footer-left {
	width: 40%;
}

.footer .footer-left .footer-url {
	color: rgb(255,255,255);
	margin: 20px 0 12px;
	padding: 0;
}

.footer .footer-left .footer-url a {
	display: inline-block;
	line-height: 1.8;
    font-size: 16px;
	text-decoration: none;
	color: inherit;
}

.footer .footer-left .footer-name {
	color: rgb(143,146,150);
	font-size: 16px;
	font-weight: normal;
	margin: 0;
}

.footer .footer-left .footer-icons {
	margin-top: 25px;
}

.footer .footer-left .footer-icons a {
	display: inline-block;
	width: 35px;
	height: 35px;
	cursor: pointer;
	background-color: rgb(255,80,48);
	border-radius: 20%;
	color: rgb(255,255,255);
	text-align: center;
    padding: 15px;
    margin-right: 5px;
}

.footer .footer-left .footer-icons a:hover {
    background: rgba(150,150,150,0.33);
    transition: all 0.3s ease-out;
}

.footer .footer-left .footer-icons i {
    font-size: 35px;
}

/* FOOTER CENTER */

.footer .footer-center {
	width: 35%;
}

.footer .footer-center i {
	background-color: rgb(255,80,48);
	color: rgb(255,255,255);
	font-size: 38px;
	width: 40px;
	height: 40px;
	border-radius: 40%;
	text-align: center;
	line-height: 42px;
	margin: 10px 15px;
	vertical-align: middle;
    padding: 5px;
}

.footer .footer-center i.fa-envelope,
.footer .footer-center i.fa-map-marker, 
.footer .footer-center i.fa-camera-retro {
	font-size: 20px;
    padding: 5px;
}

.footer .footer-center p {
	display: inline-block;
	color: rgb(255,255,255);
	vertical-align: middle;
	margin: 0;
}

.footer .footer-center p span {
	display: block;
	font-weight: normal;
	font-size: 16px;
	line-height: 1.15;
}

.footer .footer-center p a {
	color: rgb(255,255,255);
	text-decoration: none;
}


/* FOOTER RIGHT */

.footer .footer-right {
	width: 20%;
}

.footer .footer-copyright {
	line-height: 20px;
	color: rgb(255,255,255);
	font-size: 13px;
	font-weight: normal;
	margin: 0;
}

.footer .footer-copyright span {
	display: block;
	color: rgb(255,255,255);
	font-size: 16px;
	font-weight: bold;
}

.footer .footer-copyright a {
    font-size: 13px;
}

/* FOOTER MEDIA QUERIES */

@media (max-width: 880px) {

	.footer {
		font: bold 14px sans-serif;
	}

	.footer .footer-left,
	.footer .footer-center,
	.footer .footer-right {
		width: 100%;
		margin-bottom: 40px;
	}

	.footer .footer-center i {
		margin-left: 0;
	}

}

@media (max-width: 450px) {
    
    .footer h3 {
        font-size: 30px;
    }
    
    .footer .footer-name {
        font-size: 15px;
    }
    
    .footer .footer-icons a {
        width: 30px;
        height: 30px;
        padding: 10px;
    }
    
    .footer .footer-icons i {
        font-size: 30px;
    }
    
    .footer .footer-left .footer-url a {
        font-size: 15px;       
    }
    
    .footer .footer-center i {
        width: 30px;
        height: 30px;
        line-height: 42px;
    }
    
    .footer .footer-center i.fa-envelope,
    .footer .footer-center i.fa-map-marker, 
    .footer .footer-center i.fa-camera-retro {
        font-size: 20px;
        line-height: 32px;
    }

    .footer .footer-center p,
    .footer .footer-center p span, 
    .footer .footer-center a,
    .footer .footer-center p b {
        font-size: 15px;
    }
    
    .footer .footer-copyright span {
        font-size: 15px;
    }

}

@media (max-width: 350px) {
    
    .footer h3 {
        font-size: 25px;
    }
    
    .footer .footer-name {
        font-size: 13px;
    }
    
    .footer .footer-icons a {
        width: 20px;
        height: 20px;
        padding: 10px;
    }
    
    .footer .footer-icons i {
        font-size: 20px;
    }
    
    .footer .footer-left .footer-url a {
        font-size: 13px;       
    }
    
    .footer .footer-center i {
        width: 30px;
        height: 30px;
        line-height: 42px;
    }
    
    .footer .footer-center i.fa-envelope,
    .footer .footer-center i.fa-map-marker, 
    .footer .footer-center i.fa-camera-retro {
        font-size: 20px;
        line-height: 32px;
    }

    .footer .footer-center p,
    .footer .footer-center p span, 
    .footer .footer-center a,
    .footer .footer-center p b {
        font-size: 13px;
    }
    
    .footer .footer-copyright span {
        font-size: 13px;
    }

}

@media (prefers-color-scheme: dark) {

    .footer {
        background: linear-gradient(180deg, rgba(0,0,0,0.865), rgba(0,0,0,1.00)), url(/bg.jpg) repeat;
    }

}

/* ------------------------------------------------------------------ */
/* MENU */
/* ------------------------------------------------------------------ */

.menu {
    overflow: hidden;  
    width: 1200px;
    max-width: 92%;
    margin: 0 auto;
}

.menu a {
    float: left;
    display: block;
    color: rgb(255,255,255);
    text-align: center;
    padding: 14px 14px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
  }
  
  .menu a:hover {
    background-color: rgb(255,80,48);
    transition: all 0.3s ease-out;
    color: rgb(255,255,255);
  }
  
  .menu a.active {
    transition: all 0.3s ease-out;
    background-color: rgb(255,80,48);
  }
  
  .menu .icon {
    display: none;
    padding: 14px 14px;
  }
  
  @media screen and (max-width: 750px) {
    
    .menu {
        width: auto;
        max-width: 100%;
    }

  }
  
  @media screen and (max-width: 750px) {
    .menu a:not(:first-child) {display: none;}
    .menu a.icon {
      float: right;
      display: block;
    }

  }
  
  @media screen and (max-width: 750px) {
    .menu.responsive {position: relative;}
    .menu.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .menu.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
    .menu.responsive a.active {
        background-color: rgb(255,80,48);
        transition: all 0.3s ease-out;
    }

  }

/* ------------------------------------------------------------------ */
/* FRONTPAGE INFOAREA / FRONTPAGE LINKAREA */
/* ------------------------------------------------------------------ */

.frontpage-infoview,
.frontpage-linkview,
.frontpage-galleryview {
    width: calc(100%);    
    margin-top: 5px;    
    background: linear-gradient(0deg, rgba(0,0,0,0.40), rgba(0,0,0,0.60)), url(/bg.jpg) repeat;
    border-radius: 7.5px;
    display: inline-block;
}

.frontpage-infoview-head,
.frontpage-linkview-head,
.frontpage-galleryview-head {
    width: calc(100% - 20px);
    padding: 10px;    
    /*background-color: rgba(0,0,0,0.2);*/
    font-family: 'Segoe UI', Calibri, Arial;
    font-size: 20px;
    font-weight: bold;
    color: rgb(255,255,255);
    border-bottom: 3px solid rgb(255,80,48);
    border-radius: 7.5px 7.5px 0px 0px;
}

.frontpage-infoview-content,
.frontpage-linkview-content,
.frontpage-galleryview-content {
    width: calc(100% - 10px);       
    padding: 5px;    
    background-color: rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Calibri, Arial;
    font-size: 16px;
    color: rgb(255,255,255);
    border-radius: 0px 0px 7.5px 7.5px;
    display: inline-block;
}

.frontpage-galleryview-content {
    margin-bottom: -5px;
}

.frontpage-infoview-label,
.frontpage-galleryview-label {
    width: calc(100% - 30px); 
    line-height: 1.15;
    margin: 5px;   
    padding: 10px;
    background-color: rgba(150,150,150,0.30);
    border-radius: 7.5px;
    float: left;
}

.frontpage-linkview-label {
    width: calc(50% - 30px); 
    line-height: 1.15;
    margin: 5px;  
    padding: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: rgba(150,150,150,0.30);
    border-radius: 7.5px;
    float: left;
}

.frontpage-infoview a,
.frontpage-linkview a,
.frontpage-galleryview a {
    font-size: 16px;
    font-weight: normal;
    color: rgb(255,255,255);
    text-decoration: none;
}

.frontpage-infoview a:hover,
.frontpage-linkview a:hover,
.frontpage-galleryview a:hover {
    font-size: 16px;
    color: rgb(255,255,255);
    text-decoration: none;
}

.frontpage-infoview a div:hover,
.frontpage-linkview a div:hover,
.frontpage-galleryview a div:hover {
    background-color: rgb(255,80,48);
    transition: all 0.3s ease-out;
}

.frontpage-galleryview img {
    border-radius: 7.5px;
}

/* FRONTPAGE MEDIA QUERIES */

@media (max-width: 350px) {
    
    .frontpage-linkview-label {
        width: calc(100% - 30px);
        padding-top: 10px;
        padding-bottom: 10px;
        float: none;
    }   
    
    .frontpage-linkview-content {
        margin-bottom: 0px;
    }

}

@media (prefers-color-scheme: dark) {
    
    .frontpage-infoview,
    .frontpage-linkview,
    .frontpage-galleryview {
        background: linear-gradient(0deg, rgba(0,0,0,0.85), rgba(0,0,0,1.00)), url(/bg.jpg) repeat;
    }

    .frontpage-infoview-label,
    .frontpage-linkview-label,
    .frontpage-galleryview-label {
        background-color: rgba(50,50,50,0.60);

    }
    
}

/* ------------------------------------------------------------------ */
/* NEWS / GUESTBOOK */
/* ------------------------------------------------------------------ */

.item {
    width: 100%;
    margin-top: 7.5px;
    background: linear-gradient(0deg, rgba(0,0,0,0.40), rgba(0,0,0,0.60)), url(/bg.jpg) repeat;
	text-align: left;
    border-radius: 7.5px;
}

.item-head {
    width: calc(100% - 50px);
    padding-top: 7.5px;
    padding-bottom: 7.5px;
    padding-right: 25px;
    padding-left: 25px;    
    background-color: rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Calibri, Arial;
    font-size: 20px;
    font-weight: bold;
    color: rgb(255,255,255);
    border-radius: 7.5px 7.5px 0px 0px;
}

.item-addition {
    width: calc(100% - 50px);
    margin-top: 2px;
    padding-top: 2.5px;
    padding-bottom: 2.5px;
    padding-right: 25px;
    padding-left: 25px;
    background-color: rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Calibri, Arial;
    font-size: 11px;
    font-style: italic;
    color: rgb(255,255,255);
}

.item-content {
    width: calc(100% - 50px);
    margin-top: 2px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 25px;
    padding-left: 25px;
    background-color: rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Calibri, Arial;
    font-size: 16px;
    color: rgb(255,255,255);
    border-radius: 0px 0px 7.5px 7.5px;
}

.red-item {
    width: 100%;
    margin-top: 7.5px;
    background: linear-gradient(0deg, rgba(0,0,0,0.40), rgba(0,0,0,0.60)), url(/bg.jpg) repeat;
    text-align: left;
    border-radius: 7.5px;
}

.red-item-head {
    width: calc(100% - 50px);
    padding-top: 7.5px;
    padding-bottom: 7.5px;
    padding-right: 25px;
    padding-left: 25px;
    background-color: rgba(255,80,48,0.9);
    font-family: 'Segoe UI', Calibri, Arial;
    font-size: 20px;
    font-weight: bold;
    color: rgb(255,255,255);
    border-radius: 7.5px 7.5px 0px 0px;
}

.red-item-addition {
    width: calc(100% - 50px);
    margin-top: 1px;
    padding-top: 2.5px;
    padding-bottom: 2.5px;
    padding-right: 25px;
    padding-left: 25px;    
    background-color: rgba(255,80,48,0.9);
    font-family: 'Segoe UI', Calibri, Arial;
    font-size: 11px;
    font-style: italic;
    color: rgb(255,255,255);
}

.red-item-content {
    width: calc(100% - 50px);
    margin-top: 1px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 25px;
    padding-left: 25px;
    background-color: rgba(255,80,48,0.9);
    font-family: 'Segoe UI', Calibri, Arial;
    font-size: 16px;
    color: rgb(255,255,255);
    border-radius: 0px 0px 7.5px 7.5px;
}

.item-spacer,
.red-item-spacer {
    width: 100%;
    margin-top: 7.5px;
    background: linear-gradient(0deg, rgba(0,0,0,0.40), rgba(0,0,0,0.60)), url(/bg.jpg) repeat;
	text-align: left;
    border-radius: 7.5px;
}

.item-spacer-content {
    width: calc(100% - 50px);
    padding-top: 7.5px;
    padding-bottom: 7.5px;
    padding-right: 25px;
    padding-left: 25px;    
    background-color: rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Calibri, Arial;
    font-size: 20px;
    font-weight: bold;
    color: rgb(255,255,255);
    border-radius: 7.5px;
}

.red-item-spacer-content {
    width: calc(100% - 50px);
    padding-top: 7.5px;
    padding-bottom: 7.5px;
    padding-right: 25px;
    padding-left: 25px;    
    background-color: rgba(255,80,48,0.9);
    font-family: 'Segoe UI', Calibri, Arial;
    font-size: 20px;
    font-weight: bold;
    color: rgb(255,255,255);
    border-radius: 7.5px;
}

.item a,
.red-item a {
    color: rgb(255,255,255);
}
	
.item a:hover,
.red-item a:hover {
    color: rgb(255,80,48);
    text-decoration: none;
}

.item b,
.red-item b {
    font-family: 'Segoe UI', Calibri, Arial;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.15;
    color: rgb(255,255,255);
}

/* NEWS / GUESTBOOK MEDIA QUERIES */

@media (prefers-color-scheme: dark) {

    .item {
        background: linear-gradient(0deg, rgba(0,0,0,0.85), rgba(0,0,0,1.00)), url(/bg.jpg) repeat;
    }

    .item-spacer {
        background: linear-gradient(0deg, rgba(0,0,0,0.85), rgba(0,0,0,1.00)), url(/bg.jpg) repeat;
    }

}
	
/* ------------------------------------------------------------------ */
/* PICTURE OPTIONS / PICTURE DESCRIPTION */
/* ------------------------------------------------------------------ */

figure {
    width: 100%;
    max-width: 1200px;
    margin: 0px auto;
    font-family: 'Segoe UI', Calibri, Arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    color: rgb(255,255,255);
}

figcaption {
    width: calc(100% - 10px);
    max-width: 1200px;
    margin-bottom: 7.5px;
    padding-top: 7.5px;
    padding-bottom: 7.5px;
    padding-left: 10px;
    background: linear-gradient(0deg, rgba(0,0,0,0.40), rgba(0,0,0,0.60)), url(/bg.jpg) repeat;
    text-align: left;
    border-top: 4px solid rgb(255,80,48);
    border-radius: 0px 0px 7.5px 7.5px;

}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a img {
    width: auto;
}

#footer img {
    width: 45px;
    margin-bottom: -10px;
    margin-top: -5px;
}

figure img {
    border-radius: 7.5px 7.5px 0px 0px;
}

.grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
    background-color: #2196F3;
    padding: 10px;
  }
  .grid-item {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.8);
    padding: 20px;
    font-size: 30px;
    text-align: center;
  }

  .grid-container img {
      width: 100%;
  }

/* PICTURE OPTIONS / PICTURE DESCRIPTION MEDIA QUERIES */

  @media (prefers-color-scheme: dark) {

    figcaption {
        background: linear-gradient(0deg, rgba(0,0,0,0.85), rgba(0,0,0,1.00)), url(/bg.jpg) repeat; 
    }

  }

/* ------------------------------------------------------------------ */
/* DECORATIVE ELEMENTS */
/* ------------------------------------------------------------------ */

.designlabel {
    width: 100%;
    height: 3px;
    background-color: rgb(255,80,48);
    float: left;
}
	
.placeholder {
    width: 100%;
    height: 10px;
}
	
hr {
    border: 0;
    height: 1px;
    width: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.05));
    box-align: center;
}

/* ------------------------------------------------------------------ */
/* SCROLL TOP BUTTON */
/* ------------------------------------------------------------------ */

.scroll-to-top {
  background: rgba(100, 100, 100, 0.25);
  color: rgb(255,255,255);
  bottom: 3%;
  cursor: pointer;
  display: none;
  position: fixed;
  right: 20px;
  z-index: 999;
  font-size: 20px;
  text-align: center;
  line-height: 50px;
  width: 50px;
  border-radius: 15%;
  -webkit-transition: background-color 0.4s linear;
     -moz-transition: background-color 0.4s linear;
       -o-transition: background-color 0.4s linear;
          transition: background-color 0.4s linear;
}
.scroll-to-top:hover {
  background: rgb(255,80,48);
  opacity: 0.8;
}

/* SCROLL TOP BUTTON MEDIA QUERIES */

@media (max-width: 880px) {
    
    .scroll-to-top {
        bottom: 3%;
        line-height: 55px;
        width: 55px;
    }
    
}
	
/* ------------------------------------------------------------------ */
/* HIDE CONTACT DATA */
/* ------------------------------------------------------------------ */

/* HIDE ADDRESS */

span#displayname::before {content: "Man";}
span#placeholdername {display: none;}
span#displayname::after {content: "uel Wolf";}

span#displaystreet::before {content: "Müh";}
span#placeholderstreet {display: none;}
span#displaystreet::after {content: "lberger Straße 9";}

span#displaycity::before {content: "993";}
span#placeholdercity {display: none;}
span#displaycity::after {content: "10 Arnstadt";}

span#displayregion::before {content: "Thü";}
span#placeholderregion {display: none;}
span#displayregion::after {content: "ringen, Deutschland";}

/* HIDE CONTACT DATA */

span#displaymail::before {content: "inf";}
span#placeholdermail {display: none;}
span#displaymail::after {content: "o(at)wolf1.net";}

span#displayphone::before {content: "+49 (0) 36";}
span#placeholderphone {display: none;}
span#displayphone::after {content: "28 661 3556";}

/* FOOTER HIDE ADDRESS */

span#footerdisplayname::before {content: "Man";}
span#footerplaceholdername {display: none;}
span#footerdisplayname::after {content: "uel Wolf";}

span#footerdisplaycityandregion::before {content: "Arnstadt,";}
span#footerplaceholdercityandregion {display: none;}
span#footerdisplaycityandregion::after {content: " Thüringen";}
span#footerdisplaycityandregion::before {font-weight: bold;}
span#footerdisplaycityandregion::after {font-weight: bold;}

/* FOOTER HIDE CONTACT DATA */

span#footerdisplaymail::before {content: "inf";}
span#footerplaceholdermail {display: none;}
span#footerdisplaymail::after {content: "o(at)wolf1.net";}
span#footerdisplaymail::before {font-weight: bold;}
span#footerdisplaymail::after {font-weight: bold;}

/* ------------------------------------------------------------------ */
/* STYLESHEET FOR WOLF1.NET */
/* COPYRIGHT 2025 - MANUEL WOLF - ARNSTADT - GERMANY */
/* UNPERMITTED CONTENT USE FOR OWN PURPOSES IS PROHIBITED */
/* ------------------------------------------------------------------ */