/* Schriftarten definieren */
@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

/* Allgemeine Styles */
body {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: normal; /* Standard: Poppins Regular */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600; /* Poppins SemiBold */
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding-top: 20px;
    min-height: 70px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .logo {
    float: left;
    height: 50px;
}

header nav {
    float: right;
    margin-top: 10px;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600; /* Poppins SemiBold */
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#heroVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding-top: 15%;
}

.hero-content h2 {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600; /* Poppins SemiBold */
    font-size: 4em;
    margin-bottom: 20px;
}

.hero-content p {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 200; /* Poppins ExtraLight */
    font-size: 1.8em;
    line-height: 1.8;
}

.hero-logo {
    height: 145px;
    vertical-align: middle;
}

/* About Section */
.about {
    padding: 50px 0;
    background: #f4f4f4;
}

.about h2 {
    text-align: center;
    margin-bottom: 20px;
}

.about p {
    text-align: justify;
}

/* Services Section */
.services {
    padding: 50px 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
}

/* Footer */
footer {
    background: #f8f8f8;
    color: #333;
    padding: 50px 0;
    margin-top: 50px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    margin: 0 10px;
    display: flex;
    align-items: center;
}

.footer-item {
    display: flex;
    align-items: center;
}

.footer-item .icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    flex-shrink: 0;
}

.footer-item p {
    margin: 0;
    font-size: 1.1em;
    line-height: 1.6;
}

.impressum-link {
    color: #333;
    text-decoration: none;
    font-weight: normal;
}

.impressum-link:hover {
    text-decoration: underline;
}

/* Impressum Section */
.impressum {
    padding-top: 100px;
    padding-bottom: 50px;
    background: #f4f4f4;
}

.impressum h2 {
    text-align: left;
    margin-bottom: 20px;
    padding-left: 10%;
}

.impressum p {
    text-align: left;
    line-height: 1.8;
    max-width: 80%;
    margin: 0 auto;
}