/* Grundlegende Stile */
.katzenrassen-page {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background: #4ecdc4;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #3ab9b1;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Breed Header */
.breed-header {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 50px;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: white;
}

.header-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.available-btn {
    background: #ff6b6b;
    font-size: 1.2rem;
    padding: 15px 30px;
    margin-top: 20px;
}

.available-btn:hover {
    background: #e55a5a;
}

/* Breed Info Section */
.breed-info-section {
    padding: 60px 0;
}

.breed-info-section .container {
    display: flex;
    gap: 40px;
}

.breed-description {
    flex: 3;
}

.breed-image-sidebar {
    flex: 2;
}

.breed-image-sidebar img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.breed-characteristics {
    margin: 30px 0;
}

.breed-characteristics ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.breed-characteristics li {
    background: #f7f9f9;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Our Guarantee */
.our-guarantee {
    background: linear-gradient(135deg, #4ecdc4, #ff6b6b);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.our-guarantee h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Available Kittens */
.available-kittens {
    padding: 60px 0;
    background: #f9f9f9;
}

.kittens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.kitten-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.kitten-card:hover {
    transform: translateY(-10px);
}

.kitten-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.kitten-info {
    padding: 15px;
}

.kitten-info h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.price {
    font-weight: bold;
    color: #4ecdc4;
    margin-bottom: 10px;
}

.availability {
    margin-top: 10px;
}

.available-badge, .not-available-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.available-badge {
    background: #4caf50;
    color: white;
}

.not-available-badge {
    background: #f44336;
    color: white;
}

.no-kittens {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    font-size: 1.2rem;
}

/* Breed Footer CTA */
.breed-footer-cta {
    padding: 60px 0;
    text-align: center;
    background: #292f36;
    color: white;
}

.breed-footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.breed-footer-cta .btn {
    background: #ffd166;
    color: #292f36;
    margin-top: 20px;
}

.breed-footer-cta .btn:hover {
    background: #e5bc5c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .breed-info-section .container {
        flex-direction: column;
    }
    
    .breed-header {
        height: 400px;
    }
    
    .header-overlay h1 {
        font-size: 2.5rem;
    }
}