/*
Theme Name: NewspaperTaSty
Description: Child theme for Newspaper with TaSty Unified System integration
Author: TaSty2025 Team
Template: Newspaper
Version: 4.1 - Unified System Compatible
*/

/* Import parent theme styles */
@import url("../Newspaper/style.css");

/* TaSty site navigation styles */
.tasty-site-navigation {
    margin: 1rem 0;
}

.tasty-site-navigation ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.tasty-site-navigation li {
    margin: 0;
}

.tasty-site-navigation a {
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.tasty-site-navigation li.active a {
    background-color: #007cba;
    color: white;
    border-color: #005a87;
}

.tasty-site-navigation a:hover {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    transform: translateY(-1px);
}

.tasty-site-navigation li.active a:hover {
    background-color: #005a87;
    color: white;
}

/* Recipe integration styles */
.tasty-recipe-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tasty-recipe-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tasty-recipe-meta span {
    background: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    color: #6c757d;
}

/* Category management styles */
.tasty-category-info {
    background: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 4px;
    padding: 0.75rem;
    margin: 1rem 0;
}

.tasty-category-info h4 {
    margin: 0 0 0.5rem 0;
    color: #004085;
}

/* WPML language switcher integration */
.tasty-language-switcher {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
}

.tasty-language-switcher a {
    padding: 0.25rem 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.tasty-language-switcher a.active {
    background: #007cba;
    color: white;
    border-color: #007cba;
}

.tasty-language-switcher a:hover {
    background: #f8f9fa;
}

.tasty-language-switcher a.active:hover {
    background: #005a87;
}