/* Hugo-inspired Theme */

:root {
    /* Colors */
    --hugo-primary: #db2777;
    --hugo-secondary: #0594CB;
    --hugo-dark: #222;
    --hugo-light: #FFFFFF;
    --hugo-gray: #666;
    --hugo-light-gray: #F5F5F5;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--hugo-primary) 0%, var(--hugo-secondary) 100%);
    --gradient-health: linear-gradient(135deg, #FF4088 0%, #FF9B11 100%);
    --gradient-tech: linear-gradient(135deg, #0594CB 0%, #0A35BA 100%);
    --gradient-growth: linear-gradient(135deg, #00CD98 0%, #00A65B 100%);
    --gradient-lifestyle: linear-gradient(135deg, #FF4088 0%, #FF9B11 100%);
    --gradient-business: linear-gradient(135deg, #0594CB 0%, #0A35BA 100%);
}

/* Header Styles */
.site-header {
    background-color: var(--hugo-dark);
    color: var(--hugo-light);
    border-bottom: none;
}

.site-logo {
    color: var(--hugo-light);
    font-weight: 700;
    font-size: 1.5rem;
}

.desktop-nav a {
    color: var(--hugo-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--hugo-primary);
}

/* Category Cards */
.category-card {
    background: var(--hugo-light);
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--hugo-primary);
}

.category-content {
    padding: 2rem;
}

.category-icon {
    color: var(--hugo-primary);
}

.category-card h3 {
    color: var(--hugo-dark);
    font-weight: 700;
    margin: 1rem 0;
}

.category-card p {
    color: var(--hugo-gray);
}

/* Sidebar */
.sidebar-widget {
    background: var(--hugo-light);
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.widget-title {
    color: var(--hugo-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.category-item {
    background: var(--hugo-light-gray);
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.category-item:hover {
    background: var(--hugo-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.subscribe-form button {
    background: var(--hugo-primary);
    color: var(--hugo-light);
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.subscribe-form button:hover {
    background: var(--hugo-secondary);
    transform: translateY(-1px);
}

/* Post Cards */
.post-card {
    background: var(--hugo-light);
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Post Category Badge */
.post-category-badge {
    background: var(--hugo-primary);
    color: var(--hugo-light);
    border-radius: 4px;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
}