/* Stylizacja dla Doradcy Ras */

/* Navbar dla doradcy ras */
.navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo a:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

/* Adjustments for breed advisor layout */
.container {
    margin-top: 2rem;
}

/* Features list */
.features-list {
    margin: 2rem 0;
    text-align: left;
}

.feature-item {
    background: rgba(102, 126, 234, 0.1);
    padding: 0.8rem 1rem;
    margin: 0.5rem 0;
    border-radius: 0.5rem;
    border-left: 4px solid #667eea;
    font-weight: 500;
}

/* Recommendations styles */
.result-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #4a5568;
}

.recommendations {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.breed-recommendation {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.breed-recommendation:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.breed-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.breed-rank {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.breed-image {
    width: 80px;
    height: 80px;
    border-radius: 0.8rem;
    object-fit: cover;
    flex-shrink: 0;
}

.breed-info {
    flex: 1;
}

.breed-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.breed-match {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.breed-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.detail-item {
    background: #f8fafc;
    padding: 0.8rem;
    border-radius: 0.6rem;
    text-align: center;
}

.detail-label {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.detail-value {
    font-weight: 600;
    color: #2d3748;
}

.breed-description {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 0.6rem;
    border-left: 4px solid #667eea;
    line-height: 1.6;
    color: #4a5568;
}

.breed-care {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
}

/* Button enhancement for breed advisor */
.btn-outline {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

/* Responsive design for breed advisor */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }

    .breed-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .breed-details {
        grid-template-columns: 1fr;
    }

    .breed-recommendation {
        padding: 1rem;
    }

    .breed-image {
        width: 60px;
        height: 60px;
    }

    .breed-rank {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
}

/* Disclaimer section styles */
.disclaimer-section {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 0.8rem;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #f39c12;
}

.disclaimer-section h3 {
    color: #b8860b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.disclaimer-section p {
    color: #8b6914;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.disclaimer-section p:last-child {
    margin-bottom: 0;
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.8;
}

.disclaimer-section ul {
    color: #8b6914;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.disclaimer-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.disclaimer-section strong {
    color: #7a5c0a;
    font-weight: 600;
}

/* Responsive disclaimer */
@media (max-width: 768px) {
    .disclaimer-section {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .disclaimer-section h3 {
        font-size: 1rem;
    }

    .disclaimer-section ul {
        padding-left: 1rem;
    }
}
