/* ====================================
   RASSE-DETAIL SEITEN - CLEAN & PROFESSIONAL
   ==================================== */

/* Back Button Section */
.back-section {
    padding: 2rem 2rem 1rem;
    background: #faf8f5;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background: #e0cdb2;
    color: #5e4b45;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.back-btn:hover {
    background: #d4c1a6;
    transform: translateX(-3px);
}

.back-btn ion-icon {
    font-size: 1.2rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #e0cdb2 0%, #d4c1a6 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    color: #5e4b45;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 600;
}

.page-header .lead {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #7a6860;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content Section */
.content-section {
    padding: 4rem 2rem;
    background: #f5f0e8;
    max-width: 1200px;
    margin: 0 auto;
}

.content-block {
    background: white;
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(94, 75, 69, 0.08);
}

.content-block:last-of-type {
    margin-bottom: 0;
}

.content-block.highlight {
    border-left: 4px solid #e0cdb2;
    background: linear-gradient(to right, #faf8f5 0%, white 100%);
}

.content-block h2 {
    color: #5e4b45;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e0cdb2;
}

.content-block h3 {
    color: #5e4b45;
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-block p {
    font-size: clamp(1rem, 1.5vw, 1.08rem);
    line-height: 1.8;
    color: #6d5d4d;
    margin-bottom: 1.5rem;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 1rem 0 1rem 3rem;
    position: relative;
    line-height: 1.7;
    color: #6d5d4d;
    border-bottom: 1px solid #f5f0e8;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1rem;
    width: 2rem;
    height: 2rem;
    background: #e0cdb2;
    color: #5e4b45;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-list li strong {
    color: #5e4b45;
    font-weight: 600;
}

/* Check and Cross Lists */
.check-list,
.cross-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.check-list li,
.cross-list li {
    padding: 0.75rem 0 0.75rem 2.5rem;
    position: relative;
    line-height: 1.7;
    color: #6d5d4d;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6aa84f;
    font-weight: bold;
    font-size: 1.3rem;
}

.cross-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #cc4125;
    font-weight: bold;
    font-size: 1.3rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 2rem;
    background: #faf8f5;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(94, 75, 69, 0.1);
    text-align: center;
    border: 3px solid #e0cdb2;
}

.cta-content h2 {
    color: #5e4b45;
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.8;
    color: #6d5d4d;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-block;
    padding: 15px 35px;
    background: #e0cdb2;
    color: #5e4b45;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-size: 1.05rem;
}

.btn-cta:hover {
    background: #d4c1a6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(94, 75, 69, 0.2);
}

.btn-cta.btn-secondary {
    background: white;
    color: #5e4b45;
    border: 2px solid #e0cdb2;
}

.btn-cta.btn-secondary:hover {
    background: #e0cdb2;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .content-section {
        padding: 3rem 1.5rem;
    }

    .content-block {
        padding: 2.5rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .back-section {
        padding: 1.5rem 1.5rem 0.75rem;
    }

    .page-header {
        padding: 3rem 1.5rem;
    }

    .content-section {
        padding: 3rem 1.5rem;
    }

    .content-block {
        padding: 2rem 1.5rem;
    }

    .content-block h2 {
        margin-bottom: 1.25rem;
    }

    .content-block h3 {
        margin-top: 1.5rem;
    }

    .cta-content {
        padding: 2rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .content-block {
        padding: 1.5rem;
    }

    .feature-list li {
        padding-left: 2.5rem;
    }

    .feature-list li::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 1rem;
    }

    .back-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
}

/* Print Styles */
@media print {
    .back-section,
    .cta-section {
        display: none;
    }

    .page-header {
        background: white;
        border-bottom: 2px solid #e0cdb2;
        padding: 2rem 0;
    }

    .content-section {
        padding: 1rem 0;
    }

    .content-block {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
        margin-bottom: 1.5rem;
    }

    .content-block.highlight {
        background: white;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
    background: #e0cdb2;
    color: #5e4b45;
}

::-moz-selection {
    background: #e0cdb2;
    color: #5e4b45;
}
