/* Standalone CSS for Legal Pages (Impressum & Datenschutz) */
/* This file is in /public and will be served as-is, no build process needed */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #030712;
    color: #e5e7eb;
}

/* Font Classes */
.font-poppins {
    font-family: 'Poppins', sans-serif;
}

/* Color Classes */
.bg-gray-950 {
    background-color: #030712;
}

.text-gray-200 {
    color: #e5e7eb;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #6b7280;
}

.text-white {
    color: #ffffff;
}

.bg-gray-900 {
    background-color: #111827;
}

.bg-card-bg {
    background-color: rgba(17, 24, 39, 0.5);
}

.border-white\/10 {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Utility Classes */
.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.selection\:bg-primary::selection {
    background-color: #e4a817;
}

.selection\:text-black::selection {
    color: #000000;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

/* Layout Classes */
.fixed {
    position: fixed;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

/* Header Styles */
header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(40px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header .container {
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header a {
    text-decoration: none;
    color: inherit;
}

header .flex {
    display: flex;
}

header .items-center {
    align-items: center;
}

header .gap-2 {
    gap: 0.5rem;
}

header img {
    height: 2rem;
    width: auto;
    transition: transform 0.3s;
}

header a:hover img {
    transform: rotate(12deg);
}

header .font-bold {
    font-weight: 700;
}

header .tracking-wide {
    letter-spacing: 0.025em;
}

/* Main Content */
main {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.max-w-5xl {
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.border {
    border-width: 1px;
}

/* Footer Styles */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #030712;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

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

footer .text-sm {
    font-size: 0.875rem;
}

footer a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: #e4a817;
}

.transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Privacy Content Specific Styles */
.privacy-content {
    padding: 2rem;
}

@media (min-width: 768px) {
    .privacy-content {
        padding: 3rem;
    }
}