/*
Theme Name: Wolves
Theme URI: https://wolfiltration.com
Author: Wolves
Description: Global Style Presets
Text Domain: wolves
Version: 1.0
*/

/* 1. Global */
:root {
    /* Fonts */
    --heading: 'Inter', 'Helvetica Neue', 'Arial', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    --body: 'Inter', 'Roboto', 'Helvetica Neue', 'Arial', 'PingFang SC', 'Microsoft YaHei', sans-serif;

    /* Color */
    --bg: #fefefe;
    --primary: #066aab;
    --heavy: #064C8A;
    --light: #e5f1f8;
    --gray: #edeff0;
    --accent: #FFB84D;
    --text: #333;

    /* Effects */
    --transition: all 0.3s ease;
    --border: 1px solid #e5e7eb;
    --brder-dashed: 1px dashed #e5e7eb;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 1rem;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
}

/* 2.Element */
h1,h2,h3 {
    font-family: var(--heading);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0.875em 0;
    color: var(--primary);
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0.75em 0;
}

h3 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0.625em 0;
}

p {
    margin: 0.5em 0;
}

a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

img {
    display: block;
    width: 100%;
    height: auto;
}

li {
    list-style: none;
}

i {
    vertical-align: middle; 
    line-height: inherit;
}

/* 3. Container */
.container {
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 4. Assistant */
.break {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
}

.absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.fa-solid {
    line-height: 1.6;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
}

.screen-reader-text:focus {
    position: static;
    width: auto;
    height: auto;
    padding: 1px;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background: var(--bg);
    color: var(--text);
}

blockquote {
    font-family: var(--body);
    border-left: 3px solid var(--primary);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: var(--text);
}

/* 5. Responsive */
@media (max-width:992px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.125rem;
    }

    body {
        font-size: 1rem;
    }

    .container {
        padding: 0 1rem;
    }
}