
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #E0E0E0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.text-accent {
    color: #D4AF37;
}

.bg-accent {
    background-color: #D4AF37;
}

.border-accent {
    border-color: #D4AF37;
}

.nav-link {
    position: relative;
    padding-bottom: 8px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #D4AF37;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #D4AF37;
    transition: width 0.3s ease-in-out;
}

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

.article-card {
    background-color: #1E1E1E;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2a2a2a;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
}

.prose {
    color: #E0E0E0;
}

.prose h2 {
    font-size: 1.875rem; /* 30px */
    color: #FFFFFF;
    margin-top: 2em;
    margin-bottom: 1em;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #444;
}

.prose h3 {
    font-size: 1.5rem; /* 24px */
    color: #FFFFFF;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
}

.prose p {
    line-height: 1.8;
}

.prose a {
    color: #D4AF37;
    text-decoration: underline;
    transition: color 0.2s;
}

.prose a:hover {
    color: #FFFFFF;
}
