/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #37352f;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
header {
    margin-bottom: 4rem;
    padding-top: 2rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #37352f;
    margin-bottom: 0.5rem;
    text-transform: lowercase;
}

/* Section styles */
section {
    margin-bottom: 3rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #37352f;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 0.5rem;
    text-transform: lowercase;
}

h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #37352f;
    margin-bottom: 0.5rem;
    text-transform: lowercase;
}

/* Writings section */
.writings-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.writing-link {
    color: #37352f;
    text-decoration: underline;
    text-decoration-color: #d1d1d1;
    text-underline-offset: 2px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.writing-link:hover {
    color: #6b6b6b;
    text-decoration-color: #6b6b6b;
}

/* Podcasts section */
.podcasts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.podcast-link {
    color: #6b6b6b;
    text-decoration: underline;
    text-decoration-color: #d1d1d1;
    text-underline-offset: 2px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.podcast-link:hover {
    color: #37352f;
    text-decoration-color: #37352f;
}

/* Bullet points */
.bullet-points {
    list-style: none;
    padding-left: 0;
}

.bullet-points li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #37352f;
    font-size: 1rem;
    text-transform: lowercase;
}

.bullet-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6b6b6b;
    font-weight: bold;
}

.bullet-points a {
    color: #37352f;
    text-decoration: underline;
    text-decoration-color: #d1d1d1;
    text-underline-offset: 2px;
    transition: all 0.2s ease;
}

.bullet-points a:hover {
    color: #6b6b6b;
    text-decoration-color: #6b6b6b;
}

/* Social links */
.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-links a {
    color: #6b6b6b;
    text-decoration: none;
    font-weight: 400;
    padding: 0.5rem 1rem;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    background-color: #fafafa;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    text-transform: lowercase;
}

.social-links a:hover {
    background-color: #f0f0f0;
    border-color: #d1d1d1;
    color: #37352f;
    transform: translateY(-1px);
}

/* Essay page styles */
.essay-header {
    margin-bottom: 3rem;
    padding-top: 1rem;
}

.essay-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: lowercase;
}

.back-link {
    display: inline-block;
    color: #6b6b6b;
    text-decoration: none;
    font-weight: 400;
    margin-bottom: 1rem;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #37352f;
}

.essay-meta {
    display: flex;
    gap: 1rem;
    color: #9b9b9b;
    font-size: 0.9rem;
}

.reading-time {
    color: #9b9b9b;
}

.essay-content {
    max-width: 100%;
}

.essay-content article {
    line-height: 1.7;
}

.essay-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: none;
    padding-bottom: 0;
    text-transform: lowercase;
}

.essay-content h3 {
    font-size: 1.3rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-transform: lowercase;
}

.essay-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.essay-intro {
    font-size: 1.1rem;
    color: #37352f;
    font-weight: 500;
    margin-bottom: 2rem;
}

.quote-block {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #e8e8e8;
    border-radius: 0 8px 8px 0;
}

.quote-block h4 {
    font-size: 0.9rem;
    color: #6b6b6b;
    margin-bottom: 1rem;
    font-weight: 500;
}

.quote-block blockquote {
    margin: 0;
    padding: 0;
    border: none;
}

.quote-block blockquote p {
    margin-bottom: 0.75rem;
}

.arabic-text {
    font-family: 'Noto Naskh Arabic', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: right;
    direction: rtl;
    margin: 1rem 0;
    color: #37352f;
}

.essay-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.essay-content ol li {
    margin-bottom: 0.75rem;
    color: #37352f;
}

.essay-content hr {
    border: none;
    border-top: 1px solid #e8e8e8;
    margin: 3rem 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .essay-header h1 {
        font-size: 2rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-links a {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .quote-block {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .essay-content h2 {
        font-size: 1.5rem;
    }
    
    .essay-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.75rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    .essay-header h1 {
        font-size: 1.75rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .social-links a {
        text-align: center;
    }
    
    .essay-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .quote-block {
        padding: 0.75rem;
        margin: 1rem 0;
    }
    
    .arabic-text {
        font-size: 1rem;
    }
} 