:root {
    --bg-pattern: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c19a5b' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

body {
    background-color: #F7F5F0;
    background-image: var(--bg-pattern);
    color: #2D2B2A;
}

.glass-panel {
    background: rgba(247, 245, 240, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(193, 154, 91, 0.2);
}

.magazine-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(193, 154, 91, 0.15);
    box-shadow: 0 10px 30px -10px rgba(26, 54, 45, 0.1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.magazine-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(26, 54, 45, 0.2);
    border-color: rgba(200, 90, 54, 0.4);
}

.title-gradient {
    background: linear-gradient(135deg, #1A362D 0%, #C85A36 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Highly Orchestrated Motion */
@keyframes revealUp {
    0% { opacity: 0; transform: translateY(50px) scale(0.98); filter: blur(4px); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.animate-reveal {
    opacity: 0;
    animation: revealUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Elegant hover underlines */
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #C85A36;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

.article-content h1 { font-family: 'Marcellus', serif; font-size: 2.5rem; color: #1A362D; margin-top: 2.5rem; margin-bottom: 1.25rem; font-weight: 700; line-height: 1.2; }
.article-content h2 { font-family: 'Marcellus', serif; font-size: 2rem; color: #1A362D; margin-top: 2rem; margin-bottom: 1rem; font-weight: 700; line-height: 1.3; }
.article-content h3 { font-family: 'Marcellus', serif; font-size: 1.5rem; color: #1A362D; margin-top: 1.5rem; margin-bottom: 0.75rem; font-weight: 600; line-height: 1.4; }
.article-content h4 { font-family: sans-serif; font-size: 1.25rem; color: #1A362D; margin-top: 1.5rem; margin-bottom: 0.5rem; font-weight: 600; line-height: 1.5; }
.article-content h5 { font-family: sans-serif; font-size: 1.125rem; color: #1A362D; margin-top: 1.5rem; margin-bottom: 0.5rem; font-weight: 600; line-height: 1.5; }
.article-content h6 { font-family: sans-serif; font-size: 1rem; color: #1A362D; margin-top: 1.5rem; margin-bottom: 0.5rem; font-weight: 600; line-height: 1.5; text-transform: uppercase; }
.article-content p { margin-bottom: 1.25rem; line-height: 1.8; }
.article-content ul { list-style-type: disc; margin-left: 2rem; margin-bottom: 1.25rem; padding-left: 1rem; }
.article-content ol { list-style-type: decimal; margin-left: 2rem; margin-bottom: 1.25rem; padding-left: 1rem; }
.article-content li { margin-bottom: 0.5rem; }
.article-content img { max-width: 100%; height: auto; border-radius: 0.75rem; margin: 2rem 0; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.article-content strong { color: #1A362D; font-weight: 600; }
.article-content blockquote { border-left: 4px solid #C19A5B; padding-left: 1.5rem; font-style: italic; color: #6b7280; margin: 2rem 0; }


.article-content a { color: #C85A36; text-decoration: underline; text-decoration-color: rgba(200, 90, 54, 0.4); text-underline-offset: 4px; transition: all 0.2s; }
.article-content a:hover { color: #8A3A23; text-decoration-color: #8A3A23; }
.article-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.article-content th, .article-content td { border: 1px solid #e5e7eb; padding: 0.75rem 1rem; text-align: left; }
.article-content th { background-color: #f9fafb; font-weight: 600; color: #1A362D; }
.article-content figure { margin: 2rem 0; }
.article-content figure img { margin: 0; }
.article-content figcaption { text-align: center; color: #6b7280; font-size: 0.875rem; margin-top: 0.5rem; font-style: italic; }

