@font-face {
	font-family: Inter;
	src: url('../fonts/Inter.ttf') format('truetype');
}


:root {
	/* Colors */
	--primary-color: #e74a17;
	--white-color: #fefefe;
	--font-color: #373737;
	--background-color: #f7f7f7;

	/* Border Radius */
	--border-radius: 5px;


	/* Breakpoints */
	--breakpoint-sm: 576px;
	--breakpoint-md: 768px;
	--breakpoint-lg: 992px;

	/* Spacing */
	--spacing-outer: 10%;
}

* {
	font-family: Inter, sans-serif;
	user-select: none;
	box-sizing: border-box;
	color: var(--font-color);
	scroll-behavior: smooth;
}


html,body {
	margin: 0;
	padding: 0;
	background-color: var(--background-color );
}

/* General */
.highlighted {
	color: var(--primary-color);
}

h1,h2,h3 {
	margin-bottom: 10px;
	text-transform: uppercase;
}
h2::after {
	content: "";
	display: block;
	height: 4px;
	width: 50px;
	background-color: var(--primary-color);
	margin: 5px 0 5px 0;
}

/* Header Styles */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	background-color: var(--background-color);
	padding: 10px var(--spacing-outer);
	z-index: 100;
}
@supports (-webkit-touch-callout: none) {
  header {
		z-index: 100;
	} 
}
header img {
	width: 200px;
}
header img:hover {
	cursor: pointer;
}
nav {
	display: none;
}
nav.open {
	display: flex;
	justify-content: center;
	background-color: var(--background-color);
	width: 100%;
	height: 100vh;
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 10;
	padding: 40px 0;
}
nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}
nav ul li a {
	text-decoration: none;
	font-weight: 500;
	color: var(--font-color);
}
.burger-menu:hover {
	cursor: pointer;
}
.burger-menu::before,
.burger-menu::after {
	content: '';
	display: block;
	width: 25px;
	height: 3px;
	background-color: var(--primary-color);
	margin: 5px 0;
	border-radius: var(--border-radius);
}
.close-button {
	position: absolute;
	top: 20px;
	right: 20px;
}
.close-button:hover {
	cursor: pointer;
}
.close-button::after {
	content: '';
	display: block;
	width: 25px;
	height: 3px;
	background-color: var(--primary-color);
	transform: rotate(45deg);
	position: absolute;
	top: 0px;
	right: 0px;
}
.close-button::before {
	content: '';
	display: block;
	width: 25px;
	height: 3px;
	background-color: var(--primary-color);
	transform: rotate(-45deg);
	position: absolute;
	top: 0px;
	right: 0px;
}
@media screen and (min-width: 768px) {
	nav {
		display: flex;
		position: static;
	}
	nav ul {
		list-style: none;
		padding: 0;
		margin: 0;
		display: flex;
		flex-direction: row;
		gap: 30px;
	}
	.burger-menu {
		display: none;
	}
	nav > .close-button {
		display: none;
	}
}

/* Hero Section */
.hero-section {
	padding: 50px 20px;
	background: url('../img/ai_hero_section.png');
	background-size:cover;
	background-position: center;
	background-repeat: no-repeat;

	padding-left: 10%;

	width: 100%;
	height: 500px;
}
.hero-section .actions {
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 200px;
}


/* Benefits Section */
.benefits {
	display: flex;
	flex-wrap: wrap;
	background-color: var(--font-color);
	gap: 2rem;
	padding: 15px var(--spacing-outer);
	margin-bottom: 2rem;
}
.benefits .benefit {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 1rem;
	width: 100%;
}
.benefits .benefit img {
	width: 45px;
}
.benefits .benefit .benefit-heading  {
	color: var(--white-color);
	/* text-transform: uppercase; */
	font-weight: 500;
	font-size: 16px;
}
@media screen and (min-width: 768px) {
	.benefits {
		justify-content: space-around;
	}
	.benefits .benefit {
		width: auto;
	}
}


/* Services Section */
.services {
	overflow: hidden;
	padding: 0 var(--spacing-outer);
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 80px;
}
.services h2::after {
	content: "";
	display: block;
	height: 4px;
	width: 50px;
	background-color: var(--primary-color);
	margin: 5px 0 5px 0;
}
.services-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 30px;
}
.services-container .service {
	background-color: var(--white-color);
	border-radius: calc(var(--border-radius) / 2);
	align-self: stretch;
	width: 100%;
	display: flex;
	padding: 5px 15px;
}
.services-container .service div {
	display: flex;
	flex-direction: column;
}
.services-container .service div p {
	flex-grow: 1;
}
.services-container .service div a {
	align-self: flex-end;
	margin: 10px 0;
}
.services-container .service img {
	display: none;
}
.services-container .service h3::first-letter {
	color: var(--primary-color);
}
@media screen and (min-width: 992px) {
	.services-container .service {
		flex: 1 0 25%;
		align-self: stretch;
	}
	.services-container .service img {
		display: block;
		width:  20%;
		height:fit-content;
	}
}

/* About Us Section */
.about-us {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 30px;
	padding: 50px var(--spacing-outer);
	background-color: var(--white-color);
}
.about-us img {
	width: 100%;
	border-radius: var(--border-radius);
}
@media screen and (min-width: 768px) {
	.about-us {
		flex-direction: row;
		flex-wrap: nowrap;

	}
	.about-us div {
		order: 2;
	}
	.about-us img {
		width: 35%;
		order: 1;
	}
}

/* Contact Section */
.contact {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px var(--spacing-outer);
	background-color: var(--font-color);
}
.contact h2, 
.contact > p {
	color: var(--white-color);
}
.contact .actions {
	width: 100%;
}
.contact .actions button {
	width: 100%;
}
.contact-form {
	display: flex;
	flex-direction: column;
	max-width: 800px;
	gap: 5px;
	margin-top: 20px;
}
.contact-form input,
.contact-form textarea {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: calc(var(--border-radius) / 2);
	font-size: 16px;
	margin-bottom: 20px;
	resize: none;
}
.contact-form textarea {
	min-height: 150px;
}
.contact-form label {
	color: var(--white-color);
	font-weight: 500;
}
.contact-form label span {
	color: var(--primary-color);
}
@media screen and (min-width: 768px) {
	.contact .actions {
		width: 300px;
	}
}


/* Reviews */
.google-reviews-container {
	margin: 20px 0px 60px 0px;
	
}
.google-reviews-container h2 {
	padding: 20px var(--spacing-outer);
}
.google-reviews {
	display: flex;
	gap: 30px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	/* padding: 20px var(--spacing-outer); */
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.google-reviews::-webkit-scrollbar {
	display: none;
}
.google-reviews .review {
	background-color: var(--white-color);
	/* border: 1px solid var(--font-color); */
	padding: 20px;
	border-radius: var(--border-radius);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	min-width: 280px;
	max-width: 350px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 14px;
	flex-shrink: 0;
}
.google-reviews .review .review-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}
.google-reviews .review .profile-pic {
	flex-shrink: 0;
}
.google-reviews .review .review-info .reviewer-name {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
}
.google-reviews .review .stars {
	display: flex;
	margin-top: 5px;
}
.google-reviews .review .stars .filled {
	color: #FFD700;
	font-size: 16px;
	margin-right: 2px;
}
.google-reviews .review .stars .empty {
	color: #ccc;
	font-size: 16px;
	margin-right: 2px;
}
.google-reviews .review p {
	margin: 0;
	line-height: 1.5;
	color: var(--font-color);
}


/* Footer */
footer {
	display: flex;
	flex-direction: column;
	padding: 20px var(--spacing-outer);
	background: url('../img/logo_without_text_gray.png');
	background-color: rgba(255, 255, 255, 0.983);
  background-blend-mode: lighten;
	background-size: 300px;
	background-repeat: no-repeat;
	background-position: center 75%;
	margin-top: 70px;
}
footer img {
	width: 300px;
}
footer * {
	user-select: text;
}


/* Button */
button {
	background-color: var(--primary-color);
	color: var(--white-color);
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	border-radius: calc(var(--border-radius) / 2);
	cursor: pointer;
}
button:hover {
	filter: brightness(98%);
}
button.secondary {
	background-color: var(--white-color);
	color: var(--font-color);
	border: 1px solid var(--font-color);
}
button.transparent {
	background-color: transparent;
	color: var(--white-color);
	border: 1px solid var(--white-color);
}
a {
	text-decoration: none;
	color: var(--primary-color);
	font-weight: 500;
}
button.whatsapp {
	background-color: #25D366;
	color: var(--white-color);
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	border-radius: calc(var(--border-radius) / 2);
	display: flex;
	align-items: center;
	justify-content: center;
}
button.whatsapp::before {
	content: '';
	display: inline-block;
	background-image: url('../img/icons/icon_whatsapp.svg');
	background-size: contain;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	margin-right: 10px;
	vertical-align: middle;
}

/* Impressum & Datenschutz */
div.datenschutz, div.impressum {
	padding: 20px var(--spacing-outer);
}
div.datenschutz p,
div.impressum p {
	white-space: pre-line;
	user-select: text;
}




/* Modal */
div.modal-container {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.144);
	backdrop-filter: blur(1px);
	position: fixed;
	top: 0px; left: 0px;
	z-index: 100;
	overflow: hidden;
	display: none;
	align-items: center;
	justify-content: center;
}
div.modal-container.open {
	display: flex;
}
div.modal {
	background-color: var(--background-color);
	border-radius: var(--border-radius);
	padding: 0px 50px 0px 20px;
	color: var(--font-color);
	border: 1px solid var(--font-color);
	position: relative;
	max-width: 60%;
}
div.modal .close-button {
	right: 10px;
	top: 20px;
}


/* References Styles */
.references {
	padding: 20px var(--spacing-outer);
	background-color: var(--font-color);
}
.references * {
	color: var(--white-color);
}
.references .content {
	display: flex;
	flex-direction: column;
}
.references .content div {
	width: 100%;
}
.references .content div.text {
	width: 100%;
}
.references h1 {

}
.references h1::after {
	content: "";
	display: block;
	height: 4px;
	width: 50px;
	background-color: var(--primary-color);
	margin: 5px 0 5px 0;
}
@media screen and (min-width: 768px) {
	.references .content div.text {
		order: 2;
	}
	.references .content {
		display: flex;
		flex-direction: row;
	}
	.references .content div {
		width: 70%;
	}
	.references .content div.text {
		width: 30%;
	}
}





/* Animations */
.animation--delay-1 { animation-delay: 0.2s; }
.animation--delay-2 { animation-delay: 0.4s; }
.animation--delay-3 { animation-delay: 0.6s; }

.animation--slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.6s ease forwards;
}
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animation--fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.animation--slide-right {
  opacity: 0;
  transform: translateX(-60px);
  animation: slideUp 0.6s ease forwards;
}
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* for observer */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}