/* ====================================
   IMPRESSUM & DATENSCHUTZ
   Sauberes, professionelles Design
   ==================================== */

.impressum-page {
    width: 100%;
    background: #faf8f5;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: white;
}

.page-header h1 {
    color: #5e4b45;
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.page-header .subtitle {
    color: #7a6860;
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin: 0;
}

/* Hobby Notice Box */
.hobby-notice {
    padding: 2rem;
    background: #faf8f5;
}

.notice-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #e0cdb2 0%, #d4c1a6 100%);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(94, 75, 69, 0.15);
}

.notice-box ion-icon {
    font-size: 3rem;
    color: #5e4b45;
    flex-shrink: 0;
}

.notice-content h2 {
    color: #5e4b45;
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.notice-content p {
    color: #5e4b45;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.notice-content strong {
    font-weight: 700;
}

/* Content Section */
.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-box {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(94, 75, 69, 0.08);
    margin-bottom: 2rem;
}

.content-box:last-child {
    margin-bottom: 0;
}

.content-box h2 {
    color: #5e4b45;
    font-size: 1.8rem;
    margin: 0 0 1.5rem 0;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 3px solid #e0cdb2;
}

.content-box h3 {
    color: #5e4b45;
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    font-weight: 700;
}

.content-box h4 {
    color: #6d5d4d;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
    font-weight: 600;
}

.content-box p {
    color: #6d5d4d;
    line-height: 1.8;
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.content-box p:last-child {
    margin-bottom: 0;
}

.content-box ul {
    color: #6d5d4d;
    line-height: 1.8;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.content-box li {
    margin-bottom: 0.5rem;
}

.content-box a {
    color: #e0cdb2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.content-box a:hover {
    color: #d4c1a6;
    text-decoration: underline;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.info-item {
    background: #faf8f5;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #e0cdb2;
}

.info-item h3 {
    color: #5e4b45;
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.info-item p {
    color: #6d5d4d;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.info-item strong {
    color: #5e4b45;
    font-weight: 700;
}

/* Update Date */
.update-date {
    text-align: center;
    font-style: italic;
    color: #7a6860;
    padding-top: 1rem;
    border-top: 2px solid #f5f0e8;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .page-header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .hobby-notice {
        padding: 1.5rem;
    }

    .notice-box {
        flex-direction: column;
        padding: 1.5rem;
    }

    .notice-box ion-icon {
        font-size: 2.5rem;
    }

    .content-section {
        padding: 2rem 1.5rem;
    }

    .content-box {
        padding: 2rem 1.5rem;
    }

    .content-box h2 {
        font-size: 1.5rem;
    }

    .content-box h3 {
        font-size: 1.2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .content-box {
        padding: 1.5rem 1rem;
    }

    .content-box h2 {
        font-size: 1.3rem;
    }

    .info-item {
        padding: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .Banner,
    .header,
    footer,
    .nav__social {
        display: none;
    }

    .content-box {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }

    .notice-box {
        background: #f5f5f5;
        box-shadow: none;
        border: 2px solid #e0cdb2;
    }
}