/* assets/css/style.css */

/* Custom Typography details */
html {
    scroll-behavior: smooth;
}

/* Articles HTML Import Styling */
/* We reset or standardize arbitrary HTML that is imported via Drag & Drop */
.html-import-container {
    color: #374151; /* gray-700 */
    font-size: 1.125rem;
    line-height: 1.75;
}

.html-import-container h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827; /* gray-900 */
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.html-import-container h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.html-import-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.html-import-container p {
    margin-bottom: 1.25rem;
}

.html-import-container a {
    color: #005A36; /* FSC Koyu Yeşil */
    text-decoration: underline;
    font-weight: 500;
}

.html-import-container a:hover {
    color: #78B833;
}

.html-import-container ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.html-import-container ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.html-import-container li {
    margin-bottom: 0.5rem;
}

.html-import-container blockquote {
    border-left: 4px solid #78B833;
    padding-left: 1rem;
    font-style: italic;
    color: #4b5563; /* gray-600 */
    margin-bottom: 1.5rem;
    background-color: #f3f4f6; /* gray-100 */
    padding: 1rem;
    border-radius: 0.5rem;
}

.html-import-container img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.html-import-container strong, .html-import-container b {
    font-weight: 600;
    color: #111827;
}

/* Scrollbar customizations */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #005A36; 
}
