/*
Theme Name: Blank Vanilla
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A minimal vanilla theme designed for custom applications
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blank-vanilla
Domain Path: /languages
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: forma-djr-micro, Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    flex: 1;
    padding: 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 1.5rem 0 1rem 0;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    color: #0052a3;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.skip-link:focus {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    padding: 10px;
    background: #000;
    color: #fff;
}

/* Responsive utilities */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 15px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}
