/* ============================================================
   STYLE.CSS — Resets, variables, utilities, global layout
   ============================================================ */


/* Variables */

:root {
    --topH: 0px;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Source Serif Pro', serif;
    --border-gray: #303030;
    --text-gray: #c8c8c8;
    --background-gray: #1b1b1b;
    --green: rgb(0, 128, 0);
    --red: #D02D1F;
    --orange: #ED702E;
    --yellow: #F4B53F;
}


/* Reset */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    color: white;
}

div {
    display: block;
}

ul {
    list-style: none;
}


/* Global layout */

body {
    background: var(--background-gray);
}

header, main, footer {
    padding-left: 10px;
    padding-right: 10px;
}

@media (min-width: 600px) {
    header, main, footer {
        padding-left: 40px;
        padding-right: 40px;
    }
}

main {
    margin-top: 20px;
    margin-bottom: 20px;
}

footer {
    padding-top: 10px;
    margin-top: 20px;
    margin-bottom: 10px;
    border-top: var(--border-gray);
    font-size: 0.8rem;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--yellow);
}


/* Icon sizing */

.icon-container {
    height: 30px;
    width: 30px;
}

@media (max-width: 600px) {
    .icon-container,
    .filter-icon {
        height: 30px;
        width: 30px;
    }
}

.ai-icon-container {
    height: 45px;
    width: 45px;
}


/* See more button */

#see-more-button {
    height: 50px;
    width: 100%;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 3px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--orange);
    border: var(--border-gray) 1px solid;
    background-color: black;
    transition: background-color 0.2s ease;
}

/* @media (min-width: 600px) {
    #see-more-button {
        height: 50px;
        font-size: 1.25rem;
    }
} */

@media (hover: hover) {
    #see-more-button:hover {
        background-color: var(--background-gray);
    }
}


/* Utilities */

.muted {
    opacity: 0.75;
}

.hide {
    display: none;
}

.orange {
    color: var(--orange);
}

/* Debug */
.red   { border: 1px red solid; }
.green { border: 1px green solid; }
.blue  { border: 1px blue solid; }
