/* Sanftere Typografie & Abstände */
body { font-family: 'Inter', sans-serif; line-height: 1.8; }
h1, h2 { font-weight: 300; color: #2c3e50; }
h2 {
  padding-bottom: 1rem;
}
/* Container-Maximierung für bessere Lesbarkeit auf Desktop */
.container-component { max-width: 1100px; margin: 0 auto; padding: 4rem 1rem; }

/* Hero-Sektion Styling (wenn auf Position 'top-a' genutzt) */
.container-top-a { background: #f8f9fa; padding: 100px 0; text-align: center; }

/* make the header logo and menu items appear on one line */
header { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

/* override header not being sticky on mobile*/
@media (width <= 991.98px) {
    .container-header {
        position: sticky !important;
    }
}

.container-header .container-nav {
    flex-direction: row-reverse;
    height: 60px;
    .navbar {
        flex-direction: row-reverse;
    }
}
@media (width <= 991.98px) {
	.container-header .navbar-collapse {
		position: absolute;
		background: #F9FAFB;
		width: 100vw;
		right: -32px;
		top: 64px;
		.mod-menu {
			color:black;
			padding-left: 20px;
			padding-top: 0;
			box-shadow: 0 4px 10px rgba(0,0,0,0.1);
			a {
				display: block;
				padding: 15px 0;
				color: #2C3E50; /* A soft dark blue/grey */
				text-decoration: none;
				font-size: 1.1rem;
			}
            li {
			    border-bottom: 1px solid #f0f0f0;
            }
			li:last-child {
			    border-bottom: none;
			}
			li.active {
				background-color: rgba(60, 90, 150, 0.05); /* Very faint blue tint */
				border-left: 4px solid #3C5A96;             /* Solid blue accent bar */
				color: #3C5A96;                            /* Match text to the accent */
				font-weight: 600;
				padding-left: 16px;                        /* Extra padding to clear the bar */
			}
		}
	}
}

.container-header .navbar-collapse.collapsing {
    height: 0px;
    transition: height .35s;
    overflow: hidden;
}

.container-header .navbar-toggler {
    border: 0;
}

.brand-logo img {
	width: 345px;
	min-width: 345px;
	@media (max-width: 450px) {
		width: 265px;
		min-width: 265px;
	}
}
.icon-menu { /* burger button */
    font-size: 1.8rem;
}

@media (max-width: 450px) {
	body.wrapper-fluid header>.grid-child {
		padding-left: 0;
		padding-right: 0;
	}

	body.wrapper-fluid header>.grid-child.container-nav {
		padding-right: 1em;
	}
	
	.container-header .navbar-collapse {
		.mod-menu {
			color: black;
			padding-left: 4px;
		}
	}
    .container-header .navbar-collapse {
        right: -16px;
        padding-left: 15px;
    }
}

@media (width <= 767.98px) {
	.container-header .container-nav nav {
		margin-top: 0;
	}
}
.container-header .container-nav nav {
    margin-top: 0; // set all navbar links to be at central height
}
.container-header .container-nav {
    padding-bottom: 0.5em;
}
.navbar {
    padding: 0px 5px;
}
.metismenu.mod-menu li.metismenu-item {
  padding: 0.5rem 1.5rem;
  }


/**/
/**/
/* Beitrag styling */
/**/
/**/
main div {
    text-align: center;
}
h1 {
	font-family: 'Playfair Display', serif;
	font-size: 3rem;
	color: var(--navy);
	margin-bottom: 0.5rem;
	font-weight: 400;
	line-height: 1.7;
  
    @media (max-width: 450px) {
        font-size:2rem;
    }
}
:root {
	/*--navy: #0f172a;*/
	/*--navy: #2c3e50;*/
	--navy: #243241;
	--sage: #607d8b;
	--cream: #f8fafc;
	--text: #334155;
	--border: #e2e8f0;
	--font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	--font-serif: "Georgia", "Times New Roman", serif;
}
.com-content-article__body {
    text-align: center;
    font-family: 'Inter', sans-serif;
  max-width: 900px;
  margin: auto;
  p {
    text-align: left;
  }
  li {
    text-align:left;
  }
}

p, .contact-info {
    font-size: 1.15rem;
    color: var(--text);
    max-width: 900px;
    margin: 0 auto 3rem;
}
p.headerImage {
  max-width:690px;
}
footer.footer {
	background-color: white;
	background-image: none;
	.grid-child {
		flex-direction: column;
	}
	p {
		text-align: center;
		font-size: 0.75rem;
		color: #64748b;
		margin: 0;
		padding: 0;
	}
  .footer-links a {
    text-decoration: none;
  }
  .footer-links a:hover {
    text-decoration: none;
    color: currentColor;
  }
  
}

.contact-info {
	border-top: 1px solid #cbd5e1;
	padding-top: 3rem;
}

.contact-info.contact-page {
  border: none;
}
.name {
	font-weight: 600;
	font-size: 1.5rem;
	display: block;
	margin-bottom: 1rem;
	line-height: 1.7rem;
}

.phone {
	display: block;
	text-decoration: none;
	color: var(--navy);
	font-size: 1.1rem;
}
.email {
	display: block;
	text-decoration: none;
	color: var(--navy);
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
}

.btn-email {
	display: inline-block;
	background: var(--navy);
	color: white;
	padding: 1rem 4rem;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 500;
	transition: transform 0.2s, background 0.2s;
}

.btn-email:hover {
	background: #334155;
	transform: translateY(-2px);
	color:white;
}
.headerImage {
    margin-bottom: 2.4rem;
}
.intro-text {
  line-height:2;
  text-align: center !important;
}

iframe {
    width:900px;
}

/**/
/**/
/**/
/* mobile sizing */
/**/
/**/
@media (max-width: 450px) {
    .container-component {
        padding:0 !important;
     }
    .intro-text {
        line-height: 1.6;
    }
    .site-grid {
        grid-gap: 0 !important;
    }
    .headerImage img {
        border-radius:0px !important;
    }
    p {
        padding-left: 1rem;
        padding-right: 1rem;
    }
p.headerImage {
        padding-left: 0;
        padding-right: 0;
}
    h1 {
        font-size:2.5rem;
        margin-bottom:1.5rem;
}
iframe {
    width:300px;
}

}
