@font-face {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/bebas-neue-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('fonts/inter.woff2') format('woff2');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('fonts/open-sans.woff2') format('woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    background: #0a0a0a;
    color: #fff;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #d4af37;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger-Menü */
.hamburger-menu {
    display: none;
    width: 32px;
    height: 18px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 3px;
    background: #d4af37;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu span:nth-child(1) {
    top: 0;
    width: 100%;
}

.hamburger-menu span:nth-child(2) {
    bottom: 0;
    width: 60%;
}

.hamburger-menu.active span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    bottom: 8px;
    width: 100%;
    transform: rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-menu-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-menu-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-menu-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-menu-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-menu-links li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu-overlay.active .mobile-menu-links li:nth-child(5) { transition-delay: 0.5s; }

.mobile-menu-links a {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu-links a:hover {
    color: #d4af37;
}

/* Language Switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 1rem;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.lang-btn.active {
    color: #fff;
}

.lang-btn:hover {
    color: #fff;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.lang-switch-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.lang-switch-mobile .lang-btn {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4);
}

.lang-switch-mobile .lang-btn.active {
    color: #d4af37;
}

.lang-switch-mobile .lang-btn:hover {
    color: #d4af37;
}

.lang-switch-mobile .lang-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
}

/* Back Link (shared) */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4af37;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    transition: gap 0.3s ease;
}

.back-link:hover {
    gap: 1rem;
}

/* Datenschutz */
.datenschutz-page {
    min-height: 100vh;
    padding: 10rem 5% 5rem;
}

.datenschutz-header {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.datenschutz-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: #fff;
    line-height: 1;
}

.datenschutz-content {
    max-width: 1000px;
    margin: 0 auto;
}

.datenschutz-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #1a1a1a;
}

.datenschutz-section:last-child {
    border-bottom: none;
}

.datenschutz-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #d4af37;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.datenschutz-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.datenschutz-section p,
.datenschutz-section li {
    color: #999;
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 1rem;
}

.datenschutz-section ul {
    list-style: none;
    padding-left: 0;
}

.datenschutz-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.datenschutz-section ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.datenschutz-section p:last-child {
    margin-bottom: 0;
}

.datenschutz-section a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.datenschutz-section a:hover {
    color: #fff;
}

.update-date {
    color: #555;
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Impressum */
.impressum-page {
    min-height: 100vh;
    padding: 10rem 5% 5rem;
}

.impressum-header {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.impressum-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    color: #fff;
    line-height: 1;
}

.impressum-content {
    max-width: 1000px;
    margin: 0 auto;
}

.impressum-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #1a1a1a;
}

.impressum-section:last-child {
    border-bottom: none;
}

.impressum-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #d4af37;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.impressum-section p {
    color: #999;
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 1rem;
}

.impressum-section p:last-child {
    margin-bottom: 0;
}

.impressum-section a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-section a:hover {
    color: #fff;
}

/* Footer */
footer {
    padding: 3rem 5%;
    background: #050505;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid #1a1a1a;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #d4af37;
}

.footer-text {
    color: #888;
    font-size: 0.8rem;
}

.footer-social {
    color: #555;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-social:hover {
    color: #d4af37;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links,
    .nav-lang-switch {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .datenschutz-page,
    .impressum-page {
        padding: 8rem 5% 3rem;
    }

    .mobile-menu-links a {
        font-size: 2.2rem;
    }
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

@media (prefers-contrast: more) {
    body { background: #000; color: #fff; }
    .datenschutz-section p,
    .datenschutz-section li,
    .impressum-section p { color: #ccc; }
    .footer-text { color: #aaa; }
    .footer-social { color: #aaa; }
}
