/* WebZiw Tools - Homepage Specific Styles */

/* Theme Toggle Icon Styles */
.moon-icon {
    display: none;
}

.sun-icon {
    display: block;
}

/* Dark theme icon visibility */
body.dark-theme .moon-icon {
    display: block;
}

body.dark-theme .sun-icon {
    display: none;
}

/* SEO Description Section */
.seo-description-section {
    background: var(--card-bg);
    padding: 3rem 1rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.seo-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.seo-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.seo-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.seo-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .seo-description-section {
        padding: 2rem 1rem;
    }
    
    .seo-content h2 {
        font-size: 1.5rem;
    }
    
    .seo-content p {
        font-size: 1rem;
    }
}

/* Additional homepage-specific styles can be added here */
