/* Savannah Kittens Plugin Styles */
.savannah-generation {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

.generation-hero {
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    color: white;
    padding: 20px;
    z-index: 2;
}

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

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.generation-description {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.generation-description h2 {
    color: #1a472a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4af37;
}

.generation-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.detail-card {
    background: #f8f8f0;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #c19a6b;
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-card i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 15px;
    display: block;
}

.detail-card h3 {
    color: #1a472a;
    margin-bottom: 15px;
}

.legal-section {
    background: #e9f2e9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #1a472a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.legal-section h2 i {
    margin-right: 10px;
    color: #d4af37;
}

.available-kittens {
    margin-bottom: 40px;
}

.available-kittens h2 {
    color: #1a472a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4af37;
}

.kittens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

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

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

.kitten-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.kitten-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kitten-card:hover .kitten-image img {
    transform: scale(1.05);
}

.stock-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    color: white;
    font-size: 0.9rem;
}

.stock-badge.available {
    background: #28a745;
}

.stock-badge.reserved {
    background: #ffc107;
    color: #333;
}

.stock-badge.unavailable {
    background: #dc3545;
}

.kitten-details {
    padding: 20px;
}

.kitten-details h3 {
    color: #1a472a;
    margin-bottom: 10px;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #c19a6b;
    margin-bottom: 15px;
}

.attributes p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.attributes i {
    margin-right: 10px;
    color: #d4af37;
    width: 20px;
    text-align: center;
}

.breeder-info {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.breeder-info h2 {
    color: #1a472a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4af37;
}

.certifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.cert-card {
    text-align: center;
    padding: 20px 15px;
    background: #f8f8f0;
    border-radius: 8px;
}

.cert-card i {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.cert-card h3 {
    color: #1a472a;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #d4af37;
    color: #1a472a;
}

.btn-primary:hover {
    background: #c19a6b;
    color: white;
}

.btn-secondary {
    background: #1a472a;
    color: white;
    display: block;
    width: 100%;
    margin-top: 15px;
}

.btn-secondary:hover {
    background: #2d6b44;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .generation-hero {
        height: 350px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .kittens-grid {
        grid-template-columns: 1fr;
    }
}