/* Custom styles for Gobierno Transparente Chile */

/* Color scheme - Chilean inspired */
:root {
    --primary: #0033a0;      /* Chilean blue */
    --secondary: #d52b1e;    /* Chilean red */
    --accent: #ffd100;       /* Gold accent */
    --dark: #1a1a2e;
    --light: #f8fafc;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Card hover effects */
.silo-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.silo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0, 51, 160, 0.2);
}

/* Navigation underline effect */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Breadcrumb styling */
.breadcrumb a:hover {
    text-decoration: underline;
}

/* Article content styling */
.article-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.article-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.article-content ul, .article-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

/* Quick action buttons */
.quick-action {
    transition: all 0.3s ease;
}

.quick-action:hover {
    transform: scale(1.02);
}

/* Footer styling */
footer a:hover {
    text-decoration: underline;
}

/* Mobile menu */
@media (max-width: 768px) {
    .mobile-menu {
        display: none;
    }
    .mobile-menu.active {
        display: block;
    }
}
