/* //HC */

:root {
	--primary-color: #00012D;
	--secondary-text-color: #00012dcc;
	--tertiary-text-color: #00012d99;
	--secondary-color: #C78500;
	--accent-color: #FFFFFF;
	--background-color: #F8F8F8;
	--background-black-color: #000000;
	--max-width: 1200px;
}

.inter-regular {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.inter-medium {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}

.inter-semi-bold {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
}

.inter-bold {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}

.manrope {
	font-family: "Manrope", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 500;
}

.manrope-bold {
	font-family: "Manrope", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}

html {
	scroll-behavior: smooth;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Inter, sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background-color: #FFFFFF;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

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

.full-width {
	position: relative;
}

.page-container {
	width: 100%;
	overflow-x: hidden;
}

.content-wrapper {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 20px;
}

.section-container {
	position: relative;
	max-width: 1000px;
	margin: 40px auto;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn {
	padding: 14px 24px;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s;
	border: none;
	background: var(--secondary-color);
	color: var(--accent-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn-secondary {
	padding: 14px 24px;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s;
	border: 1px solid var(--secondary-color);
	background: var(--accent-color);
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn-tertiary {
	padding: 14px 24px;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s;
	border: 1px solid var(--secondary-color);
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(3px);
	--webkit-backdrop-filter: blur(3px);
	color: var(--accent-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn:hover:not(.zaunarten-btn-container .btn) {
	background: var(--accent-color);
	color: var(--background-black-color);
	outline: 1px solid var(--secondary-color);
}

.btn-secondary:hover {
	background: var(--secondary-color);
	color: var(--accent-color);
}

.btn-large {
	padding: 12px 24px;
	font-size: 1.1rem;
}

.btn-accent {
	background: var(--accent-color);
	color: white;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.hidden {
	display: none !important;
}