/* Styles */

/*--------------
1. Global Styles
---------------*/

/* Typography */
html {font-family: 'Roboto', Arial, Helvetica, sans-serif;}
body {
    margin: 0;
}
.display-xlg {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.25;
}
.display-lg {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
}
.display-md {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5;
}
.display-sm {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
}
.header-lg {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.5;
}
.header-md {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.5;
}
.header-sm {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing:2px
}
.body-large {
    font-size: 18px;
    font-weight: 300;
    line-height: 2.5em;
}
.body-regular {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.25;
}
.body-bold {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
}
.button-text {
    font-size: 16px;
    font-weight: 700;
}
.link-text {
    font-size: 14px;
    font-weight: 500;
}
.footer-text {
    font-size: 12px;
    font-weight: 500;
}
/* Colors */
/* :root allows for global changes instead of looking for each iteration of the color. Changing here will change across the entire site */
html:root {
    --site-primary:                #d48656;
    --site-primary-highlight:      #cc7641;
    --site-primary-shade:          #3f2d21;
    --site-secondary:              #4f4735;
    --site-white:                  #FFFFFF;
    --site-grey:                   #b4b9a8;
}
/* Columns */
.col-full {
    width: 100%;
}
.col-half {
    width: 50%;
}
.col-third {
    width: 33.33%;
}
.col-sixth {
    width: 16.665%;
}

/*--------------
2. Navigation & Logo
---------------*/

header {
    background: var(--site-white);
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 64px;
    padding-right: 64px;
}
.nav-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-btn {
    width: auto;
    padding: 8px 16px;
    color: var(--site-white);
    background: var(--site-secondary);
    border-radius: 24px;
    text-decoration: none;
    font-weight: 500;
}

.nav-btn:hover {
    text-decoration: none;
    background-color: var(--site-grey);
    color: var(--site-white);
}
.logo img{
   height: 80px;
}

/*--------------
3. Images
---------------*/
.hero-container {
    height: fit-content;
    margin: -8px;
    overflow: hidden;
}
img {
    width: 100%;
    object-fit: contain;
}
/*--------------
4. Title Section
---------------*/
.title-section {
    display: flex;
    justify-content: center;
    background-color: var(--site-primary-highlight);
    padding-top: 12px;
    padding-bottom: 48px;
    text-align: center;
}
.title {
    color: var(--site-white);
    margin-bottom: -24px;
}
.subtitle {
    color: var(--site-white);
    padding-bottom: 16px;
}
/* Button */
.tenant-btn {
    width: 160px;
    height: 52px;
    border-radius: 52px;
    padding: 8px;
    background-color: var(--site-white); 
    border: 2px solid var(--site-white);
    text-decoration: none;
    color: var(--site-secondary);
    font-weight: bold;
}
.tenant-btn:hover {
    background: var(--primary-highlight);
    color: var(--site-white);
    text-decoration: none;
    border: 2px solid var(--site-white);
}


/*--------------
5. Content Section
---------------*/

.content-section {
    display: flex;
    flex-direction: row;
    padding-top: 24px;
    padding-left: 48px;
    padding-bottom: 48px;
}
.content-section-mobile {
    display: none;
    visibility: hidden;
}
.divider-right {
    border-right: 1px solid var(--site-primary);
    margin-right: 24px;
    padding-right: 32px;
    padding-left: 15px;
}
.content {
    display: flex;
    word-wrap: break-word;
    padding-right: 24px;
}

/*--------------
6. Footer Section
---------------*/

footer {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 64px;
    padding-right: 64px;
}
.footer-info {
    color: var(--site-grey);
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/*--------------
7. Media Queries
---------------*/

@media screen and (max-width: 800px) and (min-width: 375px){
    .nav-bar-inner {
        justify-content: center;
    }
    .nav-btn  {
        display: none;
        visibility: hidden;
    }
    .hero-container {
        height: fit-content;
        margin: -8px;
        overflow: hidden;
    }
    .hero img {
        height: auto;
        object-fit: contain;
    }
    .content-section {
         display: none;
         visibility: hidden;
    }
    .content-section-mobile {
        display: flex;
        flex-direction: row;
        visibility: visible;
        padding-left: 24px;
        padding-right: 24px;
    }
    footer {
        padding-left: 24px;
        padding-right: 24px;
    }
}

