/*
Theme Name: NCAA Conference Tournaments
Author: Matt Zilley
Description: Custom theme for NCAA Conference Tournament Brackets
Version: 1.0.1
Text Domain: ncaa-conference-tournaments
License: GNU General Public License v3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: custom-menu, custom-logo, threaded-comments, translation-ready
*/


:root {
    /* Colors */
    --body-bg: #f4f4f4;
    --border-color: rgba(20, 20, 20, 0.15);
    --text-color: #202121;
    --white: #fefefe;
    --gray-100: #f0f0f0;
    --gray-200: #d8d8d8;
    --gray-300: #c0c0c0;
    --gray-400: #a8a8a8;
    --gray-500: #A0A0A0;
    --gray-600: #787878;
    --gray-700: #606060;
    --gray-800: #484848;
    --gray-900: #303030;
    --green: #198754;
    --green-light: #d1e7dd;
    --red: #dc3545;
    --cream: #FFF4D8;
    --orange: #FE5038;
    --orange-light: #FFEBE6;
    --black-transparent-20: rgba(0, 0, 0, 0.20);

    /* Dimensions */
    --team-slot-height: 39px;

    /* Typography */
    --basset-one: "basset-one", sans-serif;
    --basset-three: "basset-three", sans-serif;
    --basset-four: "basset-four", sans-serif;
    --basset-five: "basset-five", sans-serif;
    --basset-six: "basset-six", sans-serif;
    --font-size-base: .825rem;
    --font-size-small: .75rem;
    --font-size-medium: .875rem;
    --font-size-large: 1.125rem;
    --font-size-x-large: 1.5rem;
    --font-size-xx-large: 2rem;
    --font-size-xxx-large: 2.5rem;
    --font-size-xxxx-large: 3rem;
    --font-size-xxxxx-large: 3.5rem;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "indivisible", sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Screen Reader Only */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Main Content */

.home {
    .content-area {
        padding-bottom: 0;
    }
}

.content-area {
    max-width: 1200px;
    margin: 1rem auto 0;
    padding: 0 1rem;
}

/* Footer */
.site-footer {
    background: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 0 1rem;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0!important;
}

.site-footer p {
    margin: 0;
    color: #666;
}

@media (max-width: 768px) {
    .container {
        padding: 0;
    }
}

/* Beta Version Badge */
.beta-version-badge {
    position: fixed;
    bottom: 2rem;
    left: 1rem;
    padding: 0.25rem 0.5rem;
    background: var(--orange-light);
    border: 1px solid var(--orange);
    color: var(--orange);
    font-size: .7rem;
    font-weight: 500;
    z-index: 9999;
    pointer-events: none;
}