* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5dc;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c3c 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Navigation */
nav {
    background: #1a3d1a;
    padding: 1rem 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0.5rem 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
}

nav ul li a:hover {
    background: #3d6b3d;
}

/* Main Content */
main {
    padding: 2rem 0;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin: 1rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card h2 {
    color: #2d5a27;
    margin-bottom: 1rem;
}

.card p {
    margin-bottom: 1rem;
}

.breeds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.breed-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.breed-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #8bc34a 0%, #4caf50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.breed-info {
    padding: 1.5rem;
}

.breed-info h3 {
    color: #2d5a27;
    margin-bottom: 0.5rem;
}

.breed-info a {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: #2d5a27;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.breed-info a:hover {
    background: #1a3d1a;
}

/* Breed Page */
.breed-header {
    text-align: center;
    margin-bottom: 2rem;
}

.breed-header h1 {
    color: #2d5a27;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-item {
    background: #f0f8e8;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.info-item h4 {
    color: #2d5a27;
    margin-bottom: 0.5rem;
}

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

.gallery-item {
    background: linear-gradient(135deg, #8bc34a 0%, #4caf50 100%);
    height: 200px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

/* Footer */
footer {
    background: #1a3d1a;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

footer p {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .breeds-grid {
        grid-template-columns: 1fr;
    }
}
