/* #region  FONTS */

@font-face {
  font-family: 'Pompiere';
  font-style: cursive;
  font-weight: 400;
  src:  url("../fonts/Pompiere-Regular.ttf") format("truetype");
 }
 
 @font-face {
   font-family: 'Nothing You Could Do';
   font-style: cursive;
   font-weight: 400;
   src:  url("../fonts/NothingYouCouldDo.ttf") format("truetype");
  }
 
 @font-face {
   font-family: 'Josefin Sans';
   font-style: normal;
   font-weight: 400;
   src:  url("../fonts/JosefinSans-Regular.ttf") format("truetype");
  }
  
 @font-face {
   font-family: 'Josefin Sans';
   font-style: italic;
   font-weight: 400;
   src:  url("../fonts/JosefinSans-Italic.ttf") format("truetype");
  }


	@font-face {
			font-family: 'Montserrat', sans-serif;
			font-style: normal;
			font-weight: 300;
			src:  url("../fonts/Montserrat-Light.ttf");
		}
	@font-face {
			font-family: 'Montserrat', sans-serif;
			font-style: italic;
			font-weight: 300;
			src:  url("../fonts/Montserrat-LightItalic.ttf");
		}
	@font-face {
			font-family: 'Montserrat', sans-serif;
			font-style: normal;
			font-weight: 500;
			src:  url("../fonts/Montserrat-Medium.ttf");
		}
	@font-face {
			font-family: 'Montserrat', sans-serif;
			font-style: italic;
			font-weight: 500;
			src: 
			 url("../fonts/Montserrat-MediumItalic.ttf");
		}
/* #endregion */

/* #region  FARBEN*/

.bg-red{
    background-color: #f00a3d;
}

.bg-yellow{
    background-color: #ffde00;
}

.bg-blue{
    background-color: #016a9f;
}

.bg-green{
    background-color: #7ab41d;
}


/* #endregion */

/* #region  VOREINSTELLUNGEN*/
	* {margin: 0;
		padding: 0;
		border: 0;
		border:  none;
		font-size: 100%;
		font: inherit;
		box-sizing: border-box;
	}

	body {
        position: relative;
        min-height: 100vh;
		width: 100%;
		margin: auto;
		padding-top: 0;
		font: normal 62.5%/160% 'Montserrat', sans-serif; 
		font-style: normal;
		font-size: 1rem;
		line-height: 1.5;
		letter-spacing: 0.05em;
		font-weight: 300;
		color: #000;
	}

    body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/daecher_2025.webp") center center / cover no-repeat;
    opacity: 0.9;
    z-index: -1; 
    }

/* #endregion */

/* #region  GRID */

    .wrapper {
		width: 100%;
        height: 100vh;
		margin: auto;
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: 110px auto 80px;
	}

	header {
		grid-column-start: 1;
		grid-column-end: 4;
		grid-row-start: 1;
		grid-row-end: 2;
		background: rgba(255,255,255, 0.8);
	}

	main {
		grid-column-start: 1;
		grid-column-end: 4;
		grid-row-start: 2;
		grid-row-end: 3;
	}

	footer {
		grid-column-start: 1;
		grid-column-end: 4;
		grid-row-start: 3;
		grid-row-end: 4;
	}
    
    
    a:focus, button:focus {
      outline: 3px solid #ffbf47;
      outline-offset: 2px;
    }

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

    header, main, footer {
      padding: 1rem;
    }

/* #endregion */

/* #region  HEADER MOBILE */

	.header-mobile {
		position: fixed;
		top: 0;
		left: 0;
		height: 110px;
		width: 100%;
        padding: 10px;
		display: flex;
		flex-direction: row;
		text-align: center;
		background: rgba(255,255,255, 0.6);
		-webkit-box-shadow: 0px 10px 13px 0px rgba(0,100,160,0.05), 0px 10px 13px 0px rgba(37, 110, 174,0.05); 
		box-shadow: 0px 10px 13px 0px rgba(0,100,160,0.05), 0px 10px 13px 0px rgba(37, 110, 174, 0.05);
	}

	.header-mobil-name {
		font-size: 6.5vw;
		font-style: normal;
		font-weight: 400;
		text-align: left;
		line-height: 100%;
        padding-top: 10px;
        padding-left: 10px;
	}

    .header-mobil-name-small {
        font-size: 4vw;
        font-variant: small-caps;
    }

	.mobile-logobox {
		height: 100%;
		width: 65px;
		padding:0;
	}

	.mobile-logobox a {
		text-decoration: none;
	}

	.mobile-logobox img {
		margin: auto;
		height: 60px;
		width: auto;
	}

/* #endregion */

/* #region  MOBILE DROPDOWN */
.header-desktop {
	display: none;
}

.dropdown {
	display: flex;
	position: fixed;
	top: 50px;
	right: 15px;
}

.menuebtn {
	border: none;
	cursor: pointer;
	height: 40px;
	width: 40px;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 300;
	z-index: 5;
	font-size: 1.5rem;
	color: white;
	border: 2px solid white;
	-webkit-box-shadow: 2px 3px 6px 2px rgba(0,0,0,0.3); 
	box-shadow: 2px 3px 6px 2px rgba(0,0,0,0.3);
	text-decoration: none;
}

.menuebtn:hover {
	box-shadow: 2px 2px 2px rgba(0,0,0,0.3) inset;
}
	

.dropdown-content {
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		text-align: left;
		background-color: white;
		z-index: 1;
	}
	
.dropdown-content a {
		padding: 10px 20px 10px 50px;
		text-decoration: none;
		display: block;
		border-bottom: 1px solid #333;
		font-family: 'Montserrat', sans-serif;
		font-style: normal;
		font-weight: 300;
		
		
		-webkit-transition: all 0.3s ease-out; 
		-moz-transition: all 0.3s ease-out;
		-ms-transition: all 0.3s ease-out;
		-o-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}
	
.dropdown-content a:hover {
		text-decoration: none;
		box-shadow: 2px 2px 10px hsla(300,15%,25%,0.3) inset;
	}

.show {display: block;}

.slider {
	overflow-y: hidden;
	max-height: 500px; /* approximate max height */

	transition-property: all;
	transition-duration: 0.75s;
	transition-timing-function: cubic-bezier(1, 1, 1, 1);
}
	
.slider.closed {
	max-height: 0;
}	

.scroller {
	position: relative; 
	top: -22px; 
	height: 1px; 
	background-color: white; 
	width: 1px;
}

.active {
	box-shadow: none;
	border: 2px solid #eb0031; 
	color: #035781;
}

/* #endregion */

/* #region  MAIN*/

.start-main-box {
    margin: 150px auto;
    padding: 10px;
    max-width: 400px;
    border-radius: 10%;
    height: auto;
    text-align: center;
    background: rgba(0, 0, 0, 0.5) center/cover no-repeat;
}

.glueck{
		font-size: 1.8rem;
		font-variant: small-caps;
        color: white;
}

.stueck{
		font-size: 1.8rem;
		font-variant: small-caps;
        color: white;
}

.florian img {
	opacity: 1.0;
	filter: alpha(opacity=100);
	-moz-opacity:1.0;
    width: 80px;
    height: auto;
}


/* #endregion */

/* #region  MOBILE FOOTER */


.footer {	
    margin-bottom: 0;
    margin: auto; 
    height: auto; 
	text-align: center;
    font-size: 1rem;
    color: white;
}

.footer a {
	text-decoration: none;
	color:white;
	transition: all ease-in-out 0.3s;
}

.footer a:hover {
	text-decoration: underline;
	color:lightblue;
}
/* #endregion */



/* #region LEISTUNGEN*/

section{
    padding: 20px 10px 20px 10px;
}

h2#leistungen-heading {
  font-size: 1.5em; /* entspricht etwa 24–28px */
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.leistungen-bezirksgebunden {
  margin: 0;                      
  padding-left: 1.5rem;   
  list-style-position: outside;  
}

.hinweis {
  font-style: italic;
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.leistungen-strassennamen-flexbox {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-content: flex-start;
		padding: 4px;
        background-color: #eb0031;
    }

.leistungen-strassennamen-flexbox  ul{
        text-align: left;
		padding: 10px;
        background-color: pink;
        list-style-type: disc;
        list-style-position: inside;
        background-color: white;
    }

.leistungen-strassenverzeichnis {
    font-size: 1.4rem;
}

.leistungen-stadt {
    font-size: 1.2rem;
    padding: 10px;
}

.bakum-dinklage {
    width: 100%;
}

.essen {
    width: 100%;
    margin: auto;
    margin-top: 10px;
}

.dinklage {
    max-width: 100%;
    margin: auto;
    margin-top: 10px;
}

.bakum {
    max-width: 90%;
    margin: auto;
    margin-top: 10px;
}


/* #endregion */

/* #region  GESETZ */
#gesetz, #gesetz2 {
  margin: 2rem 0;
  font-size: 1rem;
  line-height: 1.6;
  width: 90%;
  max-width: 800px;
  margin: auto;
  background-color: white;
}
.gesetz-header {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.6;
}
.gesetz-sub {
  font-size: 0.9rem;
}
.gesetz-paragraph {
  margin-top: 1rem;
}
.paragraf {
  font-weight: bold;
  margin-top: 1.5rem;
}
.paragraf-table,
.gebuehren-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.paragraf-table td,
.gebuehren-table th,
.gebuehren-table td {
  border: 1px solid #ccc;
  padding: 0.5rem;
}
.paragraf-table .num {
  width: 2rem;
}
.gebuehren-verzeichnis h4 {
  font-size: 1.1rem;
  margin-top: 2rem;
}
.gesetz-hr {
  width: 90%;
  margin: 2rem auto;
  border: none;
  height: 1px;
  background: #000;
}
.gesetz-signature {
  font-size: 0.9rem;
  text-align: right;
  margin: 1rem 0;
}
.gesetz-attachment {
  font-weight: 600;
  text-align: right;
  margin-top: 2rem;
}
a:focus, button:focus {
  outline: 3px solid #005fa3;
  outline-offset: 2px;
}



/* #endregion */

/* #region  WIR ÜBER UNS */
.handwerk{
	position: relative;
	top: 2;
	left: 0;
	font-family: 'Nothing You Could Do', cursive;
	font-size: 13pt;
	color: black;
}

.schornsteinfegerueberuns {
	font-size: 12pt;
	font-style: italic;
	color: green;
	text-align: center;
}

#team {
  margin: 2rem 0;
  font-size: 1rem;
  line-height: 1.6;
}

#team-heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.team-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-image {
  max-width: 100px;
  width: 100%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.team-text p {
  margin-bottom: 1rem;
}

.team-note {
  font-style: italic;
  font-weight: 600;
}

.team-signature {
  text-align: center;
  margin-top: 2rem;
  font-weight: 600;
}

a {
  color: #005fa3;
  text-decoration: underline;
}
a:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}



/* #endregion */


/* #region  KONTAKT */

#michaelstalfortkontakt {
	position: relative;
	top: 20px;
	width: 430px;
	height: 220px;
	border: 1px solid #333;
	opacity: 0.97;
	filter: alpha(opacity=97);
	-moz-opacity:0.97;
	background-color: white;
	color: black;
	padding: 10px;
	padding-top: 20px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 12pt;
	line-height: 140%;
}
/* #endregion */

/* #region  Umbruch bei 520 */
 @media (min-width: 520px) {

    .leistungen-strassennamen-flexbox {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-content: flex-start;
		padding: 4px;
        background-color: #eb0031;
    }

.bakum-dinklage {
    width: 50%;
}

.essen {
    width: 100%;
    margin: auto;
    margin: 20px;
}

.dinklage {
    max-width: 100%;
    margin: auto;
    margin: 20px;
}

.bakum {
    max-width: 100%;
    margin: auto;
    margin: 20px;
}



    }

/* #endregion */
/* #region  Umbruch bei 768 */
 @media (min-width: 768px) {

    a:focus, button:focus {
      outline: 3px solid #ffbf47;
      outline-offset: 2px;
    }

    .wrapper {
		width: 100%;
        height: 100vh;
		margin: auto;
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: 130px auto 100px;
	}

    .header-mobile{
        display: none;
    }

   	.header-desktop {
		display: grid;
		position: fixed;
		width: 100%;
		max-width: 1600px;
		-webkit-box-shadow: 0px 10px 13px 0px rgba(17,8,255,0.05), 0px 10px 13px 0px rgba(17,8,255,0.05); 
		box-shadow: 0px 10px 13px 0px rgba(17,8,255,0.05), 0px 10px 13px 0px rgba(17,8,255,0.05);
	}

    .header-desktop-flexbox {
        width: 100%;
        height: 60px;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: start;
		align-content: flex-start;
    }

	.header-logo {
		display: inline-flex;
		width: 60px;
		height:60px;
		padding: 0; 
	}

	.header-logo a {
		text-decoration: none;
	}

	.header-name-desktop {
		padding: 30px;
		padding-top: 5px;
		font-size: 3vw;
		font-weight: 400;
	}

	.menu-flexboxcontainer {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-around;
		align-content: flex-start;
		font-family: 'Montserrat', sans-serif;
		font-style: normal;
		font-weight: 500;
		padding: 4px;
	}

	.header-logo img {
		width: 60px;
		height: 60px;
	}

	.menu-flexboxcontainer a:link, a:visited {
		flex-grow: 1;
		padding-top: 0;
		margin: 0 5px 0 5px;
		text-align: center;
		text-decoration: none;
        color: #000;
		transition: color 0.3s;
	}

	.menu-flexboxcontainer a:hover, a:active {
        color: #3e5c0d;
        text-decoration: underline;
	}

	.menu--fontsize {
		font-size: 1rem;
	}

    .start-main-box {
        margin: 100px auto;
        width: 500px;
        padding: 10px;
        border-radius: 10%;
        height: auto;
        text-align: center;
        background: rgba(0, 0, 0, 0.8) center/cover no-repeat;
    }


    .glueck{
        font-size: 1.8rem;
        font-variant: small-caps;
        color: white;
    }

    .stueck{
        font-size: 1.8rem;
        font-variant: small-caps;
        color: white;
    }

    .florian img {
        opacity: 1.0;
        filter: alpha(opacity=100);
        -moz-opacity:1.0;
        width: 80px;
        height: auto;
    }

  .team-text a[href^="tel:"] {
    display: block;
    margin-top: 0.5rem;
  }
}



/* #endregion */

/* #region  Umbruch bei 769 */
 @media (min-width: 1280px) {

	.header-name-desktop {
		font-size: 2.8rem;
	}




 }

/* #endregion */



