/* Grundlegende Reset-Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Grundlegende Stile */
body {
    font-family: "Liter", serif;
    color: white;
    line-height: 1.6;
    background-color: #000;
}

/* Basic Floating Text Styles */
.floating-text {
    position: fixed;
    top: 20px;  /* Initially set 20px from the top */
    left: 20px;
    font-size: 1.5rem;
    color: white;
    font-weight: regular;
    letter-spacing: 2px;
    z-index: 10; /* Ensure the text is on top of the video */
    font-family: 'Liter', sans-serif;
    text-shadow: 0px 0px 2px rgba(10, 10, 10, 0.25);
    transition: top 0.6s ease; /* Smooth transition for scrolling */
}

/* Style for the floating gif next to the text */
.floating-gif {
    width: 100px; /* Adjust the size of the gif */
    margin-right: 10px; /* Space between the text and gif */
    height: auto; /* Keep the aspect ratio of the gif */
}

/* Optional: Add some hover effect */
.floating-text:hover {
    color: transparent;
    cursor: pointer;
}


/* Hintergrundvideo für jede Hero-Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content p {
    font-size: 1.5rem;
}

/* Stil für die neue Zeile oberhalb des Footers */
.footer-line {
    display: flex;                  /* Flexbox für nebeneinander */
    align-items: center;            /* Vertikale Ausrichtung der Elemente */
    justify-content: center; /* Elemente gleichmäßig verteilen */
    padding: 10px;
    background-color: #b6cd18;      /* Hellgrüne Hintergrundfarbe */
    color: white;                   /* Weißer Text */
}

.footer-line img {
    width: 150px;      /* Bildgröße (kann angepasst werden) */
    height: auto;     /* Bildseitenverhältnis beibehalten */
    margin-right: 10px;  /* Abstand zum Text */
}

.footer-line-text {
    margin: 0; /* Kein extra Abstand rund um den Text */
    padding-right: 20px;
    font-size: 16px;
    font-weight: bolder;

.footer-link {
    color: #ffffff;  /* Weißer Link */
    text-decoration: none;  /* Entfernt die Unterstreichung */
}

/* Wenn der Benutzer mit der Maus über den Link fährt (Hover-Zustand) */
.footer-link:hover {
    color: #a2ad1d;  /* Hellgrün bei Hover */
}

/* Wenn der Benutzer den Link anklickt (Aktiver Zustand) */
.footer-link:active {
    color: #939393;  /* Ein dunkleres Grün, wenn der Link angeklickt wird */
}
}
/* Footer */
footer {
    background-color: white;
    color: black;
    padding: 20px 0;
    width: 100%;
    font-size: 1,1rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left p {
    margin: 0;
}

.footer-right {
    text-align: right;
}

.footer-right p {
    margin: 5px 0;
}

.footer-right a {
    color: black;
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}

/* Sicherstellen, dass der Footer immer unten bleibt */
footer {
    position: relative;
    bottom: 0;
}
