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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Header & Navigation */
header {
    background: rgba(41, 37, 35, 0.95);
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4a76a;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d4a76a;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #2c1810 0%, #5d4037 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 60px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #d4a76a;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn {
    display: inline-block;
    background: #d4a76a;
    color: #2c1810;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn:hover {
    background: #c49659;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Breeds Section */
.breeds {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.breeds h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c1810;
}

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

.breed-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.breed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.breed-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    color: #fff;
}

.breed-card h3 {
    color: #2c1810;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.breed-card p {
    margin-bottom: 1rem;
    color: #555;
}

.breed-card ul {
    list-style: none;
    color: #666;
}

.breed-card li {
    padding: 0.3rem 0;
}

/* Contacts Section */
.contacts {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c1810 0%, #5d4037 100%);
    color: #fff;
    text-align: center;
}

.contacts h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #d4a76a;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item .icon {
    font-size: 2rem;
}

.contact-item h4 {
    color: #d4a76a;
    margin-bottom: 0.3rem;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-item a:hover {
    color: #d4a76a;
}

/* Footer */
footer {
    background: #1a0f0a;
    color: #888;
    text-align: center;
    padding: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .breeds-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
}
