/* Arisat Journal - Vera Damen | Unique Editorial Style 2026
   Clean, modern, text-first, color-accented, fully responsive
   No inline styles in HTML, all external
*/

:root {
    --bg-cream: #F8F1E9;
    --sand: #E8DFD0;
    --sage: #6B8E6B;
    --terracotta: #C17F59;
    --text-dark: #2D2D2D;
    --text-muted: #5A5A5A;
    --border-subtle: #E0D9CE;
    --white: #FFFFFF;
}

/* Base enhancements for editorial feel */
body {
    font-feature-settings: "kern" "liga" "tnum";
    -webkit-font-smoothing: antialiased;
}

/* Asymmetric editorial cards */
.editorial-card {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    border-radius: 20px;
}

.editorial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
}

/* Unique section divider */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #E0D9CE, transparent);
}

/* Accent left border for cards - different per theme */
.card-accent-sage { border-left: 5px solid #6B8E6B; }
.card-accent-terra { border-left: 5px solid #C17F59; }
.card-accent-sand { border-left: 5px solid #D4A373; }

/* Hero decorative elements */
.hero-accent {
    position: relative;
}

.hero-accent::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 10%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(107,142,107,0.12) 0%, transparent 70%);
    border-radius: 9999px;
    pointer-events: none;
}

.hero-accent::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(193,127,89,0.1) 0%, transparent 70%);
    border-radius: 9999px;
    pointer-events: none;
}

/* Typography polish for long reading */
.article-body h2 {
    font-size: 1.35rem;
    line-height: 1.3;
    margin-top: 2.25rem;
    margin-bottom: 1rem;
    color: #2D2D2D;
    font-weight: 700;
    letter-spacing: -0.015em;
}

.article-body p {
    margin-bottom: 1.35rem;
    color: #3F3F3F;
    line-height: 1.75;
}

.article-body ul {
    margin: 1.5rem 0;
    padding-left: 1.25rem;
}

.article-body li {
    margin-bottom: 0.65rem;
    color: #3F3F3F;
    line-height: 1.7;
}

/* Button styles - unique pill with subtle lift */
.btn-primary {
    background-color: #6B8E6B;
    color: white;
    padding: 14px 32px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgb(107 142 107 / 0.2);
}

.btn-primary:hover {
    background-color: #5A7A5A;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgb(107 142 107 / 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: #6B8E6B;
    padding: 14px 28px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid #6B8E6B;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background-color: #6B8E6B;
    color: white;
}

/* Form styling */
.form-input {
    background-color: #FFFFFF;
    border: 1px solid #E0D9CE;
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: #6B8E6B;
    box-shadow: 0 0 0 4px rgba(107, 142, 107, 0.08);
}

textarea.form-input {
    min-height: 140px;
    resize: vertical;
}

/* Mobile menu overlay - elegant full screen */
#mobile-menu {
    background: rgba(248, 241, 233, 0.98);
    backdrop-filter: blur(12px);
}

/* Legal pages nice reading */
.legal-body {
    max-width: 720px;
    margin: 0 auto;
}

.legal-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: #2D2D2D;
}

.legal-body p, .legal-body li {
    color: #444444;
    line-height: 1.8;
}

/* Footer unique styling */
.footer-link {
    color: #5A5A5A;
    transition: color 0.15s ease;
}

.footer-link:hover {
    color: #6B8E6B;
}

/* Reading time badge */
.read-badge {
    font-size: 0.75rem;
    padding: 2px 10px;
    background: #E8DFD0;
    color: #5A5A5A;
    border-radius: 9999px;
    font-weight: 500;
}

/* Quote block unique */
.quote-block {
    border-left: 4px solid #C17F59;
    background: linear-gradient(to right, #F8F1E9, transparent);
    padding: 1.75rem 2rem;
    font-style: italic;
    color: #4A4A4A;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .editorial-card {
        border-radius: 16px;
    }
    
    .hero-accent::before,
    .hero-accent::after {
        display: none;
    }
}