/*
Theme Name: Azara Tasks Theme
Theme URI: https://azaramedia.com
Author: Azara Media
Author URI: https://azaramedia.com
Description: A minimal theme designed specifically for the Azara Tasks plugin.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: azara-tasks-theme
Tags: tasks, project-management, minimal
*/

/* Reset and Base Styles */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #F3F4F6;
    background-color: #12151a;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

*, *:before, *:after {
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5em;
    font-weight: 700;
    line-height: 1.2;
    color: #F3F4F6;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.75em;
}

h3 {
    font-size: 1.5em;
}

h4 {
    font-size: 1.25em;
}

h5 {
    font-size: 1em;
}

h6 {
    font-size: 0.875em;
}

p {
    margin-bottom: 1em;
}

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

a:hover {
    color: #F3F4F6;
    text-decoration: underline;
}

strong, b {
    font-weight: 700;
}

em, i {
    font-style: italic;
}

/* Layout */
.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-header {
    background-color: #0b0f12;
	border-bottom: 1px solid #374151;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-title {
    font-weight: 700;
    margin: 0;
}

.site-title a {
    color: #F3F4F6;
    text-decoration: none;
	display: block;
  height: 40px;
}

.site-content {
    flex: 1;
    padding: 2rem;
    width: 100%;
    max-width: 100%;
}

.site-footer {
    background-color: #0b0f12;
    padding: 1rem;
    text-align: center;
    font-size: 0.875em;
    color: #666;
    border-top: 1px solid #374151;
}

/* Buttons */
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    display: inline-block;
    padding: 0.5em 1em;
    background: #273f88;
    color: #F3F4F6;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    transition: background 0.2s ease;
}

.button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background: #2c586b;
    color: #F3F4F6;
    text-decoration: none;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
    padding: 0.5em;
    border: 1px solid #374151;
    border-radius: 3px;
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
	color: #F3F4F6;
	background-color: #0a0e13;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus {
    border-color: #2d596c;
    outline: none;
}

/* WordPress Core */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.wp-caption {
    background: #191c23;
    border: 1px solid #374151;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Responsive */
@media screen and (max-width: 782px) {
    .site-content {
        padding: 1rem;
    }
}

/* Azara Tasks Plugin Compatibility */
.azara-tasks-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Ensure the plugin content takes full width */
.entry-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}
