@charset "UTF-8";

/*--------------------------------------------------------------
    TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Settings: used with preprocessors and contain font, colors definitions, etc.
2.0 - Tools: globally used mixins and functions. Use for preprocessor only.
3.0 - Generic: reset and/or normalize styles, box-sizing definition, etc. 
4.0 - Elements: styling for bare/generic HTML elements 
        - Typography: Typography, Links, Address
5.0 - Objects: class-based selectors which define undecorated design patterns, building blocks
        - Framework
6.0 - Components: specific designed components
        - Nav
        - Hero 
        - Backgrounds & Spacing
        - Footer 
7.0 - Utilities: utilities and helper classes with ability to override anything which goes before in the triangle, eg. hide helper class
        - Screen Reader
--------------------------------------------------------------*/

@font-face {
  font-family: 'croquetesk';
  src:
    url('../fonts/Croquetesk-Regular.woff2') format('woff2'),
    url('../fonts/Croquetesk-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/*--------------------------------------------------------------
    3.0 - GENERIC
-------------------------------------------------------------- */
/* for some time, universal and html or body selector are all that will appear under here  */ 


/* ----- UNIVERSAL ----- */

* {
    -o-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background: #FF5400;
}


/*--------------------------------------------------------------
    4.0 - ELEMENTS
    - single (not contextual) element selectors only. No classes. No IDs. No contextual selectors. 
-------------------------------------------------------------- */

h1 {
    font-family: 'croquetesk';
    font-size: 42px;
    font-weight: 400;
    line-height: 44px;
    color: #fff;
    margin: 0 0 30px;
    text-align: center;
}

p {
    font-family: "B612 Mono", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    line-height: 20px;
    margin: 0;
    color: #993200;
    text-align: center;
}

a {
    text-decoration: none;
    color: #993200;
    transition: color 300ms linear;
}

a:hover {
    color: #231F20;
    transition: color 300ms linear;
}

/*--------------------------------------------------------------
    5.0 - OBJECTS
-------------------------------------------------------------- */
/* for some time, only .wrapper and .row are likely to appear under this category */ 

/* ----- FRAMEWORK ----- */
.wrapper {
    max-width: 1160px;
    margin: 0 auto;
}

.flex {
    display: flex;
}

.center {
    justify-content: center;
}

.column {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100svh;
    padding: 0 0 25px;
}


/*--------------------------------------------------------------
    6.0 - COMPONENTS
-------------------------------------------------------------- */
/* shared styles across components are grouped at the top, not under an individual component. Reduces repeated styles */ 

.content {
    min-height: 100svh;
    max-width: 1160px;
    padding: 0 25px;
}

.header {
    align-items: center;
}

.logo {
    display: block;
    width: 45px;
    margin: 0 20px 0 0;
}

/* ----- BACKGROUNDS AND SPACING ----- */


/*--------------------------------------------------------------
    7.0 - UTILITY
-------------------------------------------------------------- */
/* only classes that could be used on 'any' element should go here  */ 

.sr-only {
    position:absolute;
    left:-10000px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
}

.black {
    color: #231F20;
}

.btn {
    display: inline-block;
    padding: 24px 42px;
    border-radius: 0 50px;
    background: #231F20;
    color: #fff;
    font-family: "B612 Mono", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 11px;
    letter-spacing: .75px;
    transition: background 300ms linear;
}

.btn:hover {
    background: #993200;
    transition: background 300ms linear;
}

.italic {
    font-style: italic;
}

/* Desktop */
@media (min-width: 768px) {

    h1 {
        font-size: 86px;
        line-height: 88px;
        text-align: left;
    }

    p {
        font-size: 12px;
        text-align: left;
    }

    .column {
        padding: 0 0 40px;
        align-items: flex-start;
    }

    .content {
        padding: 0 100px;
    }

    div.center {
        justify-content: flex-start;
    }

    .btn {
        padding: 28px 46px;
        font-size: 13px;
    }

    .logo {
        width: 55px;
    }
}