* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #2E86AB 0%, #3A9B7A 100%);
    color: white;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.club-name {
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.breed-qualities {
    display: flex;
    gap: 30px;
    font-size: 1rem;
    font-weight: 500;
}

.quality {
    position: relative;
    padding: 8px 16px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.join-btn {
    background: #FF6B35;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.join-btn:hover {
    background: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,107,53,0.4);
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    top: 90px;
    left: 0;
    width: 250px;
    height: calc(100vh - 90px);
    background: linear-gradient(180deg, #2E86AB 0%, #3A9B7A 100%);
    padding: 30px 0;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.nav-menu {
    list-style: none;
}

.nav-item {
    margin: 5px 0;
}

.nav-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255,255,255,0.2);
    border-left-color: #FF6B35;
    transform: translateX(5px);
}

/* Main Content */
.main-content {
    margin-left: 250px;
    margin-top: 90px;
    padding: 40px;
    min-height: calc(100vh - 90px - 80px);
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.page-title {
    font-size: 2.5rem;
    color: #2E86AB;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.breed-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 5px solid #3A9B7A;
}

.breed-dogs {
    display: flex;
    gap: 20px;
}

.dog-illustration {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: transform 0.3s ease;
}

.dog-illustration:hover {
    transform: scale(1.05);
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    color: #2E86AB;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h3 {
    color: #3A9B7A;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #e9ecef;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.highlight-box {
    background: linear-gradient(135deg, #2E86AB10 0%, #3A9B7A10 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #3A9B7A;
    margin: 25px 0;
}
/* Footer */
.footer {
    background: linear-gradient(135deg, #2E86AB 0%, #3A9B7A 100%);
    color: white;
    padding: 30px 0;
    margin-left: 250px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.footer-info h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-info p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.social-icon {
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
    padding: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    background: #FF6B35;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
            
    .main-content,
    .footer {
        margin-left: 0;
    }
            
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
            
    .breed-qualities {
        gap: 15px;
        font-size: 0.9rem;
    }
            
    .breed-hero {
        flex-direction: column;
        text-align: center;
    }
    
/* Email Form */
.contact-form {
    display: flex;
    flex-direction: column;
    width: 400px;
    gap: 10px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
}
.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.contact-form button {
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

}
