/**
 * Base styles for DIQ Theme
 */

/* Reset and Base */
*, *::before, *::after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --font-size-base: 16px;
    
    /* Colors */
    --color-primary: #3861fb;
    --color-secondary: #39ff14; /* Neon Green */
    --color-text: #333333;
    --color-text-light: #666666;
    --color-background: #f5f5f5;
    --color-white: #ffffff;
    --color-black: #111111;
    --color-gray-light: #eaeaea;
    --color-gray: #9e9e9e;
    --color-gray-dark: #555555;
    
    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;
    
    /* Borders */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.15);
    
    /* Container Widths */
    --container-max-width: 1280px;
    --container-padding: 20px;
}

html {
    font-size: var(--font-size-base);
    line-height: 1.5;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-background);
}

/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #111111;
    margin: 0;
    padding: 0;
}

a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #000;
}

/* Typography - Updated to include Montserrat usage examples */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 0.5em;
    color: var(--color-black);
}

h1 {
    font-size: 2.5rem; /* 40px */
    font-weight: 800;
    margin: 20px;
    margin-left: 10px;
}

h2 {
    font-size: 2rem; /* 32px */
    font-weight: 700;
}

p {
    margin: 0 0 15px;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #3861fb;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn:hover {
    background-color: #2d4ccc;
    color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Special Headings with Montserrat */
.featured-title {
    font-family: var(--font-secondary);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.special-heading {
    font-family: var(--font-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.entry-meta {
    margin-bottom: 20px;
}

