/*
Theme Name: BraveTech
Theme URI: https://example.com/yevhenry
Author: Anton Fesenko
Author URI: https://yevhenry.com
Description: A custom WordPress theme
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yevhenry
*/

/* Reset Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #444;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Remove default margin */
body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd {
    margin: 0;
}

/* Remove list styles */
ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Remove default padding */
figure {
    padding: 0;
}

/* Remove border on images inside links */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-style: none;
}

/* Remove underline from links */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove default button styles */
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

/* Remove default focus outline */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

/* Remove default table spacing */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Remove default fieldset styles */
fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

/* Remove default legend styles */
legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}

/* Remove default textarea resize */
textarea {
    resize: vertical;
}

/* Remove default hr styles */
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

/* Remove default pre styles */
pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Remove default code styles */
code, kbd, samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Remove default sub and sup styles */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
} 