/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.site-header h1 {
    text-align: center;
    font-size: 24px;
    color: #8c7851; /* Match your amulet gold theme */
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-header nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.site-header nav a {
    text-decoration: none;
    color: #4a5568;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.site-header nav a:hover {
    color: #8c7851;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: #1a202c; /* Dark professional footer */
    color: #ffffff;
    padding: 60px 0 30px 0;
    margin-top: 80px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-section h4 {
    color: #8c7851;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
    font-size: 13px;
    color: #718096;
}

/* --- Article & Educational Layout --- */
.article-page {
    background-color: #fdfcf8; /* Subtle cream/parchment background */
    color: #2d3436;
    line-height: 1.8;
}

.educational-content {
    max-width: 750px; /* Limits width so lines aren't too long to read */
    margin: 0 auto;
    padding: 40px 20px;
}

.article-header {
    text-align: center;
    margin-bottom: 50px;
}

.article-header h1 {
    font-size: 2.5rem;
    color: #8c7851; /* Elegant Gold/Bronze tone */
    line-height: 1.2;
}

.subtitle {
    font-size: 1.5rem;
    color: #636e72;
    font-weight: 300;
}

.intro-box {
    margin-top: 30px;
    padding: 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-style: italic;
    font-size: 1.1rem;
}

/* --- Content Sections --- */
.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    color: #8c7851;
    border-bottom: 2px solid #f1ece1;
    display: inline-block;
    margin-bottom: 20px;
}

/* --- Elegant Blockquotes --- */
.sacred-quote {
    margin: 40px 0;
    padding: 30px;
    background: #fcfaf2;
    border-left: 5px solid #8c7851;
    position: relative;
}

.sacred-quote p {
    font-size: 1.3rem;
    color: #2d3436;
    font-weight: 600;
    margin-bottom: 10px;
}

.sacred-quote footer {
    font-size: 0.95rem;
    color: #636e72;
}

/* --- Amulet Meaning Grid --- */
.amulet-types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.type-card {
    background: #fff;
    padding: 15px;
    border: 1px solid #f1ece1;
    border-radius: 6px;
    font-size: 0.95rem;
}

.type-card strong {
    display: block;
    color: #8c7851;
    margin-bottom: 5px;
}

.highlight-bg {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
}

/* --- Footer --- */
.article-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #f1ece1;
    text-align: center;
}

.final-thought {
    font-size: 1.2rem;
    color: #8c7851;
    margin-bottom: 20px;
}

.site-footer {
    background-color: #1a202c;
    color: #ffffff;
    padding: 50px 0 30px;
    margin-top: 60px;
    width: 100%;
    font-family: sans-serif;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 30px;
    padding: 0 20px;
}

.footer-section h4 {
    color: #8c7851; /* Gold theme color */
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-disclaimer {
    font-size: 11px;
    color: #718096;
    margin-top: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        text-align: center;
    }
}

