/* Catholic-themed Archaic CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', Times, serif;
    background-color: #f5f0e6;
    color: #3a2c1c;
    line-height: 1.6;
}

/* Header & Navigation */
.site-header {
    background-color: #8b0000;
    background: linear-gradient(to bottom, #8b0000 0%, #5a0000 100%);
    border-bottom: 5px solid #d4af37;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-title {
    text-align: center;
    color: #f5f0e6;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
    letter-spacing: 2px;
    font-family: Georgia, Serif;
}

.archaic-nav {
    display: flex;
    justify-content: center;
    background: linear-gradient(to right, #5a0000, #8b0000, #5a0000);
    border: 2px solid #d4af37;
    border-radius: 5px;
    padding: 0px;
    margin: 8px 0;
}

.nav-link {
    color: #f5f0e6;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 5px;
    font-size: 1.1rem;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.nav-link:hover {
    background-color: #d4af37;
    color: #5a0000;
    transform: translateY(-2px);
}

/* Main Content */
.main-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 20px;
}

.content-card {
    background-color: #fffaf0;
    border: 2px solid #8b0000;
    border-radius: 5px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.content-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #8b0000, #d4af37, #8b0000);
}

/* Forms */
.archaic-form {
    background-color: #f8f4e9;
    border: 2px solid #8b0000;
    border-radius: 5px;
    padding: 2rem;
    max-width: 500px;
    margin: 2rem auto;
}

.form-title {
    color: #8b0000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #5a0000;
    font-weight: bold;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 2px solid #8b0000;
    border-radius: 3px;
    font-size: 1rem;
    background-color: #fff;
    font-family: 'Times New Roman', Times, serif;
}

.form-input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.btn-primary {
    background: linear-gradient(to bottom, #8b0000, #5a0000);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1.1rem;
    border-radius: 3px;
    cursor: pointer;
    width: 100%;
    font-family: Georgia, serif;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(to bottom, #a00000, #6a0000);
    transform: translateY(-2px);
}

/* Articles */
.article-card {
    background-color: #f8f4e9;
    border: 1px solid #d4b483;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 3px;
    position: relative;
}

.article-title {
    color: #8b0000;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.article-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #d4b483;
    padding-bottom: 0.5rem;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Comments */
.comments-section {
    margin-top: 2rem;
    border-top: 2px solid #d4af37;
    padding-top: 1rem;
}

.comment {
    background-color: #f8f4e9;
    border: 1px solid #d4b483;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 3px;
}

.comment-meta {
    color: #8b0000;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

/* Footer */
.site-footer {
    text-align: center;
    margin-bottom: 10px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: #d4af37; }
.text-red { color: #8b0000; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.p-2 { padding: 2rem; }

/* Decorative Elements */
.decorative-border {
    border: 10px solid transparent;
    border-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="%23d4af37" stroke-width="10"/></svg>') 30 stretch;
}

.illuminated-letter {
    font-size: 3rem;
    color: #d4af37;
    float: left;
    margin-right: 10px;
    font-family: 'Old English Text MT', serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .archaic-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-link {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }
    
    .site-title {
        font-size: 2rem;
    }
}