/*!
Theme Name: Consumer Connect
Theme URI: http://underscores.me/
Author: KnotCode
Author URI: https://knotcode.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: consumer_connect
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/*--------------------------------------------------------------
# Design Tokens (CSS Variables)
--------------------------------------------------------------*/

:root {
    /* Fonts */
    --font-primary: "Albert Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-secondary: "Fightree", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Type scale */
    --h1-size: 48px;
    --h2-size: 40px;
    --h3-size: 24px;
    --h4-size: 20px;
    --h5-size: 16px;
    --h6-size: 20px;
    --p-size: 16px;

    --h1-line: 58px;
    --h2-line: 50px;
    --h3-line: 30px;
    --h4-line: 26px;
    --h5-line: 20px;
    --h6-line: 26px;
    --p-line: 20px;

    /* Colors */
    --color-body-bg: #fafbfc;
    --color-body-text: #404040;
    --color-border: #ccc;
    --color-border-soft: #eee;
    --color-muted: #868d99;

    --color-link: #4169e1;
    --color-link-visited: #800080;
    --color-link-hover: #191970;

    /* Radii & Shadows */
    --radius-sm: 3px;
    --shadow-dropdown: 0 3px 3px rgba(0, 0, 0, 0.2);

    /* Layout */
    --content-spacing: 1.5em;

    /* Breakpoints */
    --bp-tablet-min: 768px;
    --bp-tablet-max: 991px;
    --bp-mobile-max: 767px;
}

/*--------------------------------------------------------------
# Generic / Reset & Box Sizing (normalize-style)
--------------------------------------------------------------*/

html {
    box-sizing: border-box;
    line-height: 1.15;           /* 1. Correct line-height */
    -webkit-text-size-adjust: 100%; /* 2. Fix iOS font-size adjustment */
    scroll-behavior: smooth;
}

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

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: var(--color-body-bg);
    color: var(--color-body-text);
    font-family: var(--font-primary);
    font-size: var(--p-size);
    line-height: 1.5;
}

/* Render `main` consistently */
main {
    display: block;
}

/* Grouping content */

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: var(--content-spacing);
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Text-level semantics */

a {
    background-color: transparent;
    color: var(--color-link);
    text-decoration: none;
}

a:visited {
    color: var(--color-link-visited);
}

a:hover,
a:focus,
a:active {
    color: var(--color-link-hover);
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
}

b,
strong {
    font-weight: bolder;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline dotted;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content */

img {
    border-style: none;
    height: auto;
    max-width: 100%;
}

/* Forms – generic normalize */

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
    width: 100%;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

/* Interactive */

details {
    display: block;
}

summary {
    display: list-item;
}

/* Misc */

template {
    display: none;
}

[hidden] {
    display: none;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    margin: 0 0 0.5em;
}

/* Headline font: primary */
h1,
h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: -1px;
}

/* Secondary font for smaller headings, body alt use */
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
}

/* Base sizes */

h1 {
    font-size: var(--h1-size);
    line-height: var(--h1-line);
}

h1 span {
    color: var(--color-muted);
}

h2 {
    font-size: var(--h2-size);
    line-height: var(--h2-line);
}

h3 {
    font-size: var(--h3-size);
    font-weight: 600;
    line-height: var(--h3-line);
}

h4 {
    font-size: var(--h4-size);
    font-weight: 600;
    line-height: var(--h4-line);
}

h5 {
    font-size: var(--h5-size);
    font-weight: 600;
    line-height: var(--h5-line);
}

h6 {
    font-size: var(--h6-size);
    font-weight: 400;
    line-height: var(--h6-line);
}

p {
    font-family: var(--font-secondary);
    font-size: var(--p-size);
    font-weight: 400;
    line-height: var(--p-line);
    margin: 0 0 var(--content-spacing);
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 var(--content-spacing);
}

address {
    margin: 0 0 var(--content-spacing);
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", courier, monospace;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}

/* Responsive type */

@media (min-width: 768px) and (max-width: 991px) {
    h1,
    h2 {
        font-size: 32px;
        line-height: 42px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 16px;
    }

    h5,
    p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    h1,
    h2 {
        font-size: 26px;
        line-height: 32px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 16px;
    }

    h5,
    p {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/

ul,
ol {
    margin: 0 0 var(--content-spacing) 3em;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: 700;
}

dd {
    margin: 0 1.5em var(--content-spacing);
}

/* Media & figures */

embed,
iframe,
object {
    max-width: 100%;
}

figure {
    margin: 1em 0;
}

table {
    margin: 0 0 var(--content-spacing);
    width: 100%;
}

/* Buttons & Inputs (theme styling) */

a,
button {
    cursor: pointer;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px solid;
    border-color: var(--color-border) var(--color-border) #bbb;
    border-radius: var(--radius-sm);
    background: #e6e6e6;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1;
    padding: 0.6em 1em 0.4em;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    border-color: var(--color-border) #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
    border-color: #aaa #bbb #bbb;
}

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 {
    color: #666;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 3px 6px;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
    color: #111;
    outline: none;
    border-color: var(--color-link);
}

select {
    border: 1px solid var(--color-border);
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

.main-navigation {
    display: block;
    width: 100%;
}

.main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation ul ul {
    box-shadow: var(--shadow-dropdown);
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
    display: block;
    left: auto;
}

.main-navigation ul ul a {
    width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
    left: auto;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
}

/* Small menu */
.menu-toggle,
.main-navigation.toggled ul {
    display: block;
}

@media screen and (min-width: 37.5em) {
    .menu-toggle {
        display: none;
    }

    .main-navigation ul {
        display: flex;
        gap: 1.5rem;
    }
}

/* Post navigation */

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 var(--content-spacing);
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
    display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    text-align: end;
    flex: 1 0 50%;
}

/*--------------------------------------------------------------
# Posts & Pages
--------------------------------------------------------------*/

.sticky {
    display: block;
}

.post,
.page {
    margin: 0 0 var(--content-spacing);
}

.updated:not(.published) {
    display: none;
}

.page-content,
.entry-content,
.entry-summary {
    margin: var(--content-spacing) 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 var(--content-spacing);
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/

.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/

.widget {
    margin: 0 0 var(--content-spacing);
}

.widget select {
    max-width: 100%;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Logo link wraps logo */
.custom-logo-link {
    display: inline-block;
}

/*--------------------------------------------------------------
# Captions
--------------------------------------------------------------*/

.wp-caption {
    margin-bottom: var(--content-spacing);
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/*--------------------------------------------------------------
# Galleries
--------------------------------------------------------------*/

.gallery {
    margin-bottom: var(--content-spacing);
    display: grid;
    grid-gap: var(--content-spacing);
}

.gallery-item {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.gallery-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
    display: block;
}

/*--------------------------------------------------------------
# Plugins – Jetpack Infinite Scroll
--------------------------------------------------------------*/

.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
    display: none;
}

.infinity-end.neverending .site-footer {
    display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Alignments */

.alignleft {
    float: left; /* rtl:ignore */
    margin-right: var(--content-spacing); /* rtl:ignore */
    margin-bottom: var(--content-spacing);
}

.alignright {
    float: right; /* rtl:ignore */
    margin-left: var(--content-spacing); /* rtl:ignore */
    margin-bottom: var(--content-spacing);
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--content-spacing);
}
