/* ====================================
   KATZEN SEITE - CLEAN & PROFESSIONAL
   ==================================== */

/* 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;
}

/* Intro Section */
.intro-section {
    padding: 3rem 2rem;
    background: #faf8f5;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(94, 75, 69, 0.08);
    border-left: 4px solid #e0cdb2;
}

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

/* Cats Section */
.cats-section {
    padding: 3rem 2rem;
    background: #f5f0e8;
}

/* Cat Card */
.cat-card {
    max-width: 1100px;
    margin: 0 auto 3rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(94, 75, 69, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(94, 75, 69, 0.15);
}

.cat-card:last-child {
    margin-bottom: 0;
}

/* Cat Image */
.cat-image {
    width: 100%;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
    background: #f5f0e8;
}

.cat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Cat Info */
.cat-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cat-info h2 {
    color: #5e4b45;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin-bottom: 1.5rem;
}

.cat-details {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f5f0e8;
}

.cat-details dt {
    color: #5e4b45;
    font-weight: 600;
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.cat-details dt:first-child {
    margin-top: 0;
}

.cat-details dd {
    color: #6d5d4d;
    margin-left: 0;
    padding-left: 1rem;
    border-left: 2px solid #e0cdb2;
    font-size: 1rem;
}

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

.cat-credit {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #7a6860;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f5f0e8;
    border-radius: 5px;
}

.cat-credit a {
    color: #5e4b45;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cat-credit a:hover {
    color: #e0cdb2;
}

.cat-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cat-info .btn,
.cat-info .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.5px;
}

.cat-info .btn {
    background: #e0cdb2;
    color: #5e4b45;
}

.cat-info .btn:hover {
    background: #d4c1a6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(94, 75, 69, 0.2);
}

.cat-info .btn-secondary {
    background: transparent;
    color: #e0cdb2;
    border: 2px solid #e0cdb2;
}

.cat-info .btn-secondary:hover {
    background: #e0cdb2;
    color: #5e4b45;
    transform: translateY(-2px);
}

/* Alternating Layout */
.cat-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
    direction: ltr;
}

.cat-card:nth-child(even) .cat-image {
    order: 2;
}

.cat-card:nth-child(even) .cat-info {
    order: 1;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .cat-card,
    .cat-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .cat-card:nth-child(even) .cat-image,
    .cat-card:nth-child(even) .cat-info {
        order: initial;
    }

    .cat-image {
        min-height: 400px;
    }

    .cat-info {
        padding: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .page-header {
        padding: 3rem 1.5rem;
    }

    .intro-section,
    .cats-section {
        padding: 2.5rem 1.5rem;
    }

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

    .cat-image {
        min-height: 350px;
    }

    .cat-info {
        padding: 2rem 1.5rem;
    }

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

    .cat-info .btn,
    .cat-info .btn-secondary {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .cat-image {
        min-height: 300px;
    }

    .cat-info {
        padding: 1.5rem;
    }

    .cat-info h2 {
        margin-bottom: 1rem;
    }

    .cat-description {
        margin-bottom: 1rem;
    }
}

/* Print Styles */
@media print {
    .page-header {
        background: white;
        border-bottom: 2px solid #e0cdb2;
    }

    .cat-card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }

    .cat-card,
    .cat-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .cat-buttons {
        display: none;
    }

    .intro-content {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
