/* Impressum Sektion */
.impressum-section {
    background: rgba(10, 10, 10, 0.95);
    padding: 4rem 2rem;
}

.impressum-container {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(145deg, 
        rgba(255,255,255,0.05) 0%, 
        rgba(255,255,255,0.01) 100%);
    /* Rahmen entfernt */
    border-radius: 1rem;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.impressum-header {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.impless { 
text-align: center;
	height: auto;
    min-height: 100px;
    margin-bottom: 1rem; /* Verkleinerter Abstand */}

.impressum-header h1 {
    color: var(--gold);
    font-size: clamp(2rem, 3vw + 1rem, 3rem);
    letter-spacing: clamp(1px, 0.2vw, 2px);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
}

.impressum-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(150px, 50%);
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--gold);
    font-size: clamp(1.3rem, 2vw + 0.5rem, 1.8rem);
    letter-spacing: clamp(0.5px, 0.1vw, 2px);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    line-height: 1.4;
    word-wrap: break-word;
    hyphens: auto;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    color: var(--silver);
}

.detail-item strong {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.detail-item a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-item a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.disclaimer .last-update {
    color: rgba(212, 175, 55, 0.7);
    font-style: italic;
    margin-top: 1rem;
}

.legal-notice {
    text-align: center;
    color: var(--silver);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Hero Section für Impressum */
.impressum-header .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    z-index: 1;
}

.impressum-header .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.impressum-header .hero-content .logo {
    font-size: 4rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.impressum-header .hero-content .tagline {
    font-size: 1.5rem;
    color: var(--silver);
    letter-spacing: 0.2em;
}
.header {
	height: 60vh;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .impressum-container {
        padding: 2rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .impressum-header .hero-content .logo {
        font-size: 3rem;
    }

    .impressum-header .hero-content .tagline {
        font-size: 1.2rem;
    }
	.impressum-header h1 {
        padding: 0 1rem;
        margin-bottom: 0.75rem;
    }

    .legal-section h2 {
        margin-bottom: 1rem;
        padding-bottom: 0.3rem;
        padding-right: 1rem;
    }
}
@media (max-width: 480px) {
    .impressum-header h1 {
        padding: 0 0.5rem;
        margin-bottom: 0.5rem;
    }

    .legal-section h2 {
        margin-bottom: 0.75rem;
        padding-bottom: 0.25rem;
    }
}