body,
html {
	height: 100%;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}

body {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 400;
	/* color: #74806F; */
	color: #647162;
	line-height: 1.3em;
	scroll-behavior: smooth;
	background-color: #EEEADE;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #333;
	color: white;
	z-index: 1000;
	font-size: 20px;

}

nav {
	display: flex;
	justify-content: center;
	padding: 1em;
}

nav a {
	color: white;
	text-decoration: none;
	margin: 0 1em;
	transition: color 0.3s;
}

nav a:hover {
	color: #ff6600;
}

/* Burger-Button */
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 20px;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	height: 3px;
	background: white;
	border-radius: 2px;
}

/* Standardmenü */
.nav-links {
	display: flex;
}

/* Responsive */
@media (max-width: 768px) {
	nav {
		justify-content: space-between;
		align-items: center;
		padding: 1em;
	}

	.menu-toggle {
		display: flex;
	}

	.nav-links {
		display: none;
		flex-direction: column;
		width: 100%;
		background: #333;
		position: absolute;
		top: 60px;
		left: 0;
	}

	.nav-links a {
		padding: 1em;
		border-top: 1px solid #444;
		text-align: center;
	}

	.nav-links.active {
		display: flex;
	}
}

/* chagpt wegen float: */
#home .innerbox {
	display: flex;
	flex-wrap: wrap;
	/* bei kleinen Screens umbrechen */
	align-items: flex-start;
	gap: 2rem;
	/* Abstand zwischen Text und Bild */
}

#home .textblock {
	flex: 1 1 60%;
	/* nimmt ca. 60% Breite */
	min-width: 300px;
}

#home .fotogross {
	flex: 0 0 300px;
	/* feste Breite fürs Bild (z. B. 300px) */
	max-width: 35%;
	/* nicht breiter als 35% */
}

#home .fotogross img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 15px;

}

#home h1,
#home h2,
#home ul,
#home p {
	flex: 1 1 55%;
	/* Textteil füllt den Rest */
}


.logodiv {
	width: 100%;
	background-color: #eeeade;
}


.logodiv img {
	display: block;
	width: 800px;
	height: auto;
	margin: 0 auto;
}

section {
	min-height: calc(100vh - 250px);
	/* 190px ist dein Header+Logo-Bereich */
	padding: 30px 20px 20px;
	scroll-margin-top: 200px;
	/* damit beim Scrollen nix unter den Header rutscht */
}

#services ul {
	font-size: 18px;
	line-height: 1.6em;
}

#services li {
	margin-top: 20px;
}

.praxisfotos {
	--gap: 1rem;
	/* eine Variable für den Abstand */
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
	justify-content: center;
}

.praxisfotos img {
	flex: 1 1 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
	height: auto;
	border-radius: 4px;
}

@media (max-width: 700px) {
	.praxisfotos img {
		flex-basis: 100%;
		max-width: 100%;
	}
}

#home {
	/* background: #f4f4f4; */
	padding-top: 175px;
	/* Platz für den fixen Header */
	min-height: calc(100vh - 255px);
}

#about {
	/* background: #ddd; */
}

#services {
	/* background: #bbb; */
}

#contact {
	/* background: #999; */
}

/* ab hier ich */

h1,
h2,
h3,
h4 {
	font-weight: normal;
}

h2 {
	font-size: 1.3em;
}

h1 {
	margin-block: 0.67em;
	font-size: 1.6em;
	line-height: 1.5em;
}

.inhli {
	max-width: 1000px;
	margin: 50px auto;
	width: 90%;
	/* padding: 50px 30px; */
	scroll-behavior: smooth;
	background-color: #73806f;
	/* background-color: #e80000; */
	/* padding: 20px; */
	padding: 20px 0px 20px 20px;
	border-radius: 15px 0px 0px 15px;

}

.kasten {
	padding: 20px;
	color: black;
	flex: 1;
	display: flex;
	overflow: hidden;
	flex-wrap: wrap;
	min-height: 0px;
}

/* Für alle Boxen */
.textbox {
	text-align: left;
	background-color: rgba(255, 255, 255, 1.0);
	padding: 35px;
	/* border:3px solid #9F3A43;
*/
	border-radius: 15px;
	color: black;
	overflow: hidden;
	flex: 1;
	display: flex;
	overflow: hidden;
	flex-wrap: wrap;
	min-height: 0px;
	align-self: center;
}

.innerbox {
	background-color: white;
	border-radius: 15px 0px 0px 15px;
	padding: 15px;
}

.impwhite {
	background-color: #74806F;
	color: white;
	font-size: 14px;
}

.impwhite a {
	color: white;
}

.email-copy {
	margin-left: .5rem;
	padding: .3rem .6rem;
	border-radius: .5rem;
	border: 1px solid #ccc;
	background: #f7f7f7;
	cursor: pointer;
}

.email-copy:hover {
	background: #eee;
}