/* Impressum Spezifische Styles */

/* Aktiver Navigation Link */
.nav-link.active {
    color: var(--primary-blue);
    background: rgba(0, 212, 255, 0.15);
}

/* Impressum Hero Sektion */
.impressum-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--darker-blue) 0%, var(--dark-blue) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-showcase {
    animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.showcase-logo {
    width: 300px;
    height: auto;
    filter: blur(2px) brightness(0.5);
}

.hero-content-impressum {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-title {
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 0 20px var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    border-radius: 2px;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--light-gray);
    opacity: 0.8;
}

/* Impressum Content */
.impressum-content {
    padding: 4rem 0;
    background: var(--dark-blue);
    position: relative;
    z-index: 1;
}

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

/* Info Cards */
.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }
.info-card:nth-child(5) { animation-delay: 0.5s; }
.info-card:nth-child(6) { animation-delay: 0.6s; }
.info-card:nth-child(7) { animation-delay: 0.7s; }
.info-card:nth-child(8) { animation-delay: 0.8s; }
.info-card:nth-child(9) { animation-delay: 0.9s; }
.info-card:nth-child(10) { animation-delay: 1s; }
.info-card:nth-child(11) { animation-delay: 1.1s; }

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 40px var(--shadow);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--primary-blue));
    display: inline-block;
}

.info-card h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.info-details p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.info-details ul {
    color: var(--light-gray);
    line-height: 1.8;
    margin-left: 2rem;
    margin-top: 0.5rem;
}

.info-details li {
    margin-bottom: 0.5rem;
}

.info-details p strong {
    color: var(--white);
    font-weight: 600;
}

.info-details a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-details a:hover {
    color: var(--green-accent);
    text-decoration: underline;
}

.highlight-text {
    color: var(--primary-blue);
    font-weight: bold;
    padding: 0.2rem 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 5px;
}

/* Server Info Card */
.server-info-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.1));
    border: 2px solid var(--primary-blue);
}

.server-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.server-info-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.9rem;
    color: var(--light-gray);
    opacity: 0.8;
}

.info-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--white);
}

/* Logo Gallery */
.logo-gallery {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
    animation-delay: 0.9s;
}

.logo-gallery h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px var(--shadow);
}

.gallery-item img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(5deg);
}

.gallery-item p {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Screenshot Gallery - NEU! */
.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.screenshot-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px var(--shadow);
}

.screenshot-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.screenshot-item:hover img {
    transform: scale(1.05);
}

.screenshot-item p {
    color: var(--light-gray);
    text-align: center;
    font-size: 0.95rem;
}

/* Changelog */
.changelog-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.changelog-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.changelog-date {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.changelog-content p {
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.changelog-content ul {
    margin-left: 1.5rem;
}

/* Quick Access */
.quick-access {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
    animation-delay: 1.2s;
}

.quick-access h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.quick-link-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px var(--shadow);
    background: rgba(0, 212, 255, 0.1);
}

.quick-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px var(--primary-blue));
}

.quick-link-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .showcase-logo {
        width: 200px;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-card h2 {
        font-size: 1.5rem;
    }
    
    .server-info-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid,
    .screenshot-gallery {
        grid-template-columns: 1fr;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}