@font-face {
    font-family: 'Voga';
    src: url('../fonts/Voga-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bodoni 72';
    src: url('../fonts/bodoni-72-book.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #001140;
}

/* Common container styles */
.privacy-container,
.impressum-container,
.press-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    color: #fff;
    text-align: center;
}

/* Common heading styles */
.privacy-container h1,
.impressum-container h1,
.press-container h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 5.875rem;
    font-family: 'Voga', 'Bodoni MT', serif;
    letter-spacing: 2px;
    font-weight: 500;
}

.privacy-container h2,
.impressum-container h2,
.press-container h2 {
    margin-top: 60px;
    margin-bottom: 30px;
    font-size: 2.625rem;
    font-family: 'Bodoni 72', serif;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
}

/* Common paragraph styles */
.privacy-container p,
.impressum-container p,
.press-container p {
    margin-bottom: 30px;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* List styles for privacy policy */
.privacy-container ul {
    margin: 30px auto;
    padding-left: 0;
    list-style-position: inside;
    max-width: 600px;
}

.privacy-container li {
    margin-bottom: 15px;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

/* Press page specific styles */
.press-release {
    margin-bottom: 60px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-align: left;
}

.press-release h3 {
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Bodoni 72', serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.4;
}

.press-release .date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.press-contact {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
    margin: 60px auto;
    max-width: 600px;
}

/* Header and navigation styles */
.header {
    text-align: center;
    padding: 20px;
    position: relative;
}

.logo {
    width: 260px;
    height: 175px;
    margin: 20px 0;
}

.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
}

.language-switcher__current {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.language-switcher__current:hover {
    background: rgba(255, 255, 255, 0.3);
}

.language-switcher__current span {
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-transform: lowercase;
}

.language-switcher__dropdown {
    display: none;
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    right: 0;
    top: 120%;
    padding: 8px;
    z-index: 1000;
}

.language-switcher__dropdown.active {
    display: block;
}


.language-switcher__option:hover {
    background: rgba(255, 255, 255, 0.3);
}

.language-switcher__option.active {
    background: rgba(255, 255, 255, 0.3);
}

/* Back link styles */
.back-link {
    display: block;
    text-align: center;
    margin-top: 40px;
    color: #001140;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

.back-link:hover {
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
    .privacy-container h1,
    .impressum-container h1,
    .press-container h1 {
        font-size: 3.5rem;
        margin-bottom: 30px;
        line-height: 1.1;
    }

    .privacy-container h2,
    .impressum-container h2,
    .press-container h2 {
        font-size: 1.8rem;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .privacy-container p,
    .impressum-container p,
    .press-container p,
    .privacy-container li {
        font-size: 1rem;
        line-height: 1.6;
    }

    .press-release {
        margin-bottom: 40px;
        padding: 20px;
    }

    .press-release h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .press-release .date {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .press-contact {
        padding: 30px;
        margin: 40px auto;
    }

    .logo {
        width: 180px;
        height: 120px;
        margin: 0 0 30px 0;
        position: relative;
        z-index: 2;
    }
}

@media (max-width: 480px) {
    .privacy-container h1,
    .impressum-container h1,
    .press-container h1 {
        font-size: 2.8rem;
    }

    .privacy-container h2,
    .impressum-container h2,
    .press-container h2 {
        font-size: 1.5rem;
    }

    .privacy-container p,
    .impressum-container p,
    .press-container p,
    .privacy-container li {
        font-size: 0.9rem;
    }

    .press-release h3 {
        font-size: 1.3rem;
    }

    .press-release .date {
        font-size: 0.8rem;
    }

    .press-contact {
        padding: 20px;
        margin: 30px auto;
    }

    .logo {
        width: 150px;
        height: 100px;
        margin: 0 0 20px 0;
    }
}

/* Landscape mode optimization */
@media (max-height: 600px) and (orientation: landscape) {
    .logo {
        width: 120px;
        height: 80px;
        margin: 0 0 15px 0;
    }
}

.performance-container {
    width: 100%;
    padding: 40px 20px;
    position: relative;
    background-color: #001140;
    margin-top: 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 0px;
}

.social-link {
    display: flex;
    width: 34px;
    height: 34px;
    align-items: center;
}

.social-icon {
    width: 34px;
    height: 34px;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.social-icon:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

.divider {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.3);
}

.footer-links {
    margin-top: 20px;
    text-align: center;
}

.footer-links a {
    color: white !important;
    text-decoration: none;
    margin: 0 15px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .performance-container {
        padding: 20px;
    }

    .social-links {
        gap: 20px;
        margin-bottom: 10px;
    }

    .divider {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-links a {
        margin: 0;
    }
} 