/* Font-Einbindung bleibt erhalten */

/* Tinos - 700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Tinos';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/tinos-v24-latin-700.woff2') format('woff2');
}

/* Source Sans 3 - Regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/source-sans-3-v15-latin-regular.woff2') format('woff2');
}

/* Grundlegendes Reset und Basiseinstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    color: #fff ;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 30px); /* 15px Abstand links und rechts */
    height: calc(100% - 30px); /* 15px Abstand oben und unten */
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 5px;
    will-change: transform;
}

.content {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}
.content.hidden {
    opacity: 0;
    
}

header {
    position: fixed;
    width: 100%;
    top: 35%;
    left: 0 ;
    text-align: center;
    mix-blend-mode: overlay;
}
header h1 {
    font-size: clamp(3rem, 5vw, 6rem);
    font-family: 'Tinos', serif;
    font-weight: 700 ;
    margin-bottom: 0rem;
    letter-spacing: 5px;
}

header p {
    font-size: clamp(1rem, 2vw, 2rem);
    letter-spacing: 1px;
}

footer {
    position: fixed;
    bottom: 30px;
    left: 0 ;
    width: 100%;
    mix-blend-mode: overlay;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
}
footer a {
    text-decoration: none;
    color: #e7e7e7;
    display: block;
    width: 32px;
    height: 32px;
    padding: 4px;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}
footer a:hover {
    color: #ffffff;
    transform: scale(1.1);
}
footer a svg {
    display: block ;
    width: 24px;
}