/* headers.css */

/* 1. Default font family */
.santosh-css-header {
    font-family: Arial, sans-serif;
}

/* 2. Font weight for different header levels */
.santosh-css-header {
    font-weight: 700;
}
#santosh-css-h1, #santosh-css-h2 {
    font-weight: 800;
}
#santosh-css-h3, #santosh-css-h4 {
    font-weight: 700;
}
#santosh-css-h5, #santosh-css-h6 {
    font-weight: 600;
}

/* 3. Font size */
#santosh-css-h1 {
    font-size: 2.5em;
}
#santosh-css-h2 {
    font-size: 2em;
}
#santosh-css-h3 {
    font-size: 1.75em;
}
#santosh-css-h4 {
    font-size: 1.5em;
}
#santosh-css-h5 {
    font-size: 1.25em;
}
#santosh-css-h6 {
    font-size: 1em;
}

/* 4. Line height */
.santosh-css-header {
    line-height: 1.2;
}

/* 5. Margin */
.santosh-css-header {
    margin: 0.5em 0;
}

/* 6. Padding */
.santosh-css-header {
    padding: 0.2em 0;
}

/* 7. Text color */
.santosh-css-header {
    color: inherit;
}

/* 8. Text alignment */
.santosh-css-header {
    text-align: left;
}

/* 9. Text transform */
.santosh-css-header {
    text-transform: capitalize;
}

/* 10. Letter spacing */
.santosh-css-header {
    letter-spacing: 0.05em;
}

/* 11. Word spacing */
.santosh-css-header {
    word-spacing: 0.1em;
}

/* 12. Text shadow */
.santosh-css-header {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* 13. Background color */
.santosh-css-header {
    background-color: transparent;
}

/* 14. Border */
.santosh-css-header {
    border: none;
}

/* 15. Display */
.santosh-css-header {
    display: block;
}

/* 16. Box sizing */
.santosh-css-header {
    box-sizing: border-box;
}

/* 17. Font style */
.santosh-css-header {
    font-style: normal;
}

/* 18. Overflow */
.santosh-css-header {
    overflow: hidden;
}

/* 19. Text overflow */
.santosh-css-header {
    text-overflow: ellipsis;
}

/* 20. White space */
.santosh-css-header {
    white-space: nowrap;
}

/* 21. Max width */
.santosh-css-header {
    max-width: 100%;
}

/* 22. Responsive font size */
@media (max-width: 768px) {
    #santosh-css-h1 {
        font-size: 2em;
    }
    #santosh-css-h2 {
        font-size: 1.75em;
    }
    #santosh-css-h3 {
        font-size: 1.5em;
    }
    #santosh-css-h4 {
        font-size: 1.25em;
    }
    #santosh-css-h5 {
        font-size: 1em;
    }
    #santosh-css-h6 {
        font-size: 0.875em;
    }
}

/* 23. Hover effect */
.santosh-css-header:hover {
    color: #555;
    text-shadow: none;
}

/* 24. Transition */
.santosh-css-header {
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* 25. Accessibility: focus outline */
.santosh-css-header:focus {
    outline: 2px solid #4A90E2;
    outline-offset: 2px;
}
