/* 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: 500;
    line-height: 1.5;
}
.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 {
    --oldnyack-primary:                #c6af7b;
    --oldnyack-primary-highlight:      #d4b951;
    --oldnyack-primary-shade:          #BA9315;
    --oldnyack-secondary:              #353e4f;
    --oldnyack-white:                  #FFFFFF;
    --oldnyack-grey:                   #555555;
}
/* 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(--oldnyack-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;
    height: 36px;
    padding: 8px 16px;
    color: var(--oldnyack-white);
    background: var(--oldnyack-secondary);
    border-radius: 24px;
    text-decoration: none;
    font-weight: 500;
}

.nav-btn:hover {
    text-decoration: none;
    background-color: var(--oldnyack-primary);
    color: var(--oldnyack-secondary);
}
.logo img{
   height: 120px;
}

/*--------------
3. Images
---------------*/
*{box-sizing: boder-box;}
img {vertical-align: middle;}

.hero-container {
    height: 600px;
    margin: 0;
    overflow: hidden;
}

img {
    width: 100%;
    object-fit: contain;
}

.dot {
    visibility: hidden;
    display: none;
    height: 12px;
    width: 12px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    margin-bottom: -8px;
}
/*--------------
4. Title Section
---------------*/
.title-section {
    display: flex;
    justify-content: center;
    background-color: var(--oldnyack-primary-highlight);
    padding-top: 12px;
    padding-bottom: 48px;
    text-align: center;
}
.title {
    color: var(--oldnyack-white);
    margin-bottom: -24px;
}
.subtitle {
    color: var(--oldnyack-secondary);
    padding-bottom: 16px;
}
/* Button */
.tenant-btn {
    width: 150px;
    height: 48px;
    border-radius: 48px;
    padding: 8px;
    background-color: var(--oldnyack-primary-highlight); 
    border: 2px solid var(--oldnyack-secondary);
    text-decoration: none;
    color: var(--oldnyack-secondary);
    font-weight: bold;
}
.tenant-btn:hover {
    background: var(--oldnyack-secondary);
    color: var(--oldnyack-white);
    text-decoration: none;
}


/*--------------
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(--oldnyack-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(--oldnyack-grey);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*--------------
7. Media Queries
---------------*/
@media screen and (max-width: 1633px) {
    .hero-container {
        height: 600px;
        margin: 0;
        overflow: hidden;
    }
}



@media screen and (max-width: 1000px) and (min-width: 700px){
    .hero-container  {
        height: 500px;
        margin: 0;
        overflow: hidden;
    }
}
@media screen and (max-width: 768px){
    .hero-container  {
        height: 300px;
        margin: 0;
        overflow: hidden;
    }

    /* Content Changes */
    .content-section {
        display: flex;
        flex-direction: row;
        padding-top: 24px;
        padding-left: 48px;
        padding-right: 48px;
        padding-bottom: 48px;
        overflow: hidden;
    }
}
@media screen and (max-width: 414px) and (min-width: 400px){
    header {
        background: var(--oldnyack-white);
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 150px;
        padding-right: 85px;
        overflow: hidden;
    }
    .navigation{
        visibility: hidden;
    }
    .logo img {
        height: 250px;
    }
    
    /* Image changes */
    .slideshow-container {
        height: 300px;
        margin: 0;
        overflow: hidden;
    }
    /* Title Section changes */
    .title {
        font-size: 48px;
        color: var(--oldnyack-white);
        margin-bottom: -24px;
    }
    .subtitle {
        font-size: 18px;
        color: var(--oldnyack-secondary);
        padding-bottom: 16px;
    }
    /* Content Section */
    .content-section {
        display: none;
        visibility: hidden;
    }
    .content-section-mobile {
        display: flex;
        flex-direction: column;
        visibility: visible;
        padding-left: 24px;
        padding-right: 32px;
        padding-bottom: 32px;
    }
    .header-sm {
        margin-bottom: 0;
    }
    .divider-right {
        border: 0px;
    }

    /* Footer changes */
    footer {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 64px;
        padding-right: 64px;
    }
    .footer-info {
        color: var(--oldnyack-grey);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
}
@media screen and (max-width: 390px){
    header {
        background: var(--oldnyack-white);
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 140px;
        padding-right: 85px;
    }
    .navigation {
        visibility: hidden;
    }
    
    /* Image changes */
    .hero-container {
        height: 200px;
        margin: 0;
        overflow: hidden;
    }
    /* Title Section changes */
    .title {
        font-size: 48px;
        color: var(--oldnyack-white);
        margin-bottom: 0px;
    }
    .subtitle {
        font-size: 18px;
        color: var(--oldnyack-secondary);
        padding-bottom: 16px;
    }
    /* Content Section */
    .content-section {
        display: none;
        visibility: hidden;
    }
    .content-section-mobile {
        display: flex;
        flex-direction: column;
        visibility: visible;
        padding-left: 24px;
        padding-right: 32px;
        padding-bottom: 32px;
    }
    .header-sm {
        margin-bottom: 0;
    }
    .divider-right {
        border: 0px;
    }

    /* Footer changes */
    footer {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 64px;
        padding-right: 64px;
    }
    .footer-info {
        color: var(--oldnyack-grey);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
}
@media screen and (max-width: 375px){
    header {
        background: var(--oldnyack-white);
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 140px;
        padding-right: 85px;
    }
    .navigation {
        visibility: hidden;
    }
    /* Image changes */
    .hero-container {
        height: 250px;
        margin: 0;
        overflow: hidden;
    }
    /* Title Section changes */
    .title {
        font-size: 48px;
        color: var(--oldnyack-white);
    }
    .subtitle {
        font-size: 18px;
        color: var(--oldnyack-secondary);
        padding-bottom: 16px;
    }
    /* Content Section */
    .content-section {
        display: none;
        visibility: hidden;
    }
    .content-section-mobile {
        display: flex;
        flex-direction: column;
        visibility: visible;
        padding-left: 24px;
        padding-right: 32px;
        padding-bottom: 32px;
    }
    .header-sm {
        margin-bottom: 0;
    }
    .divider-right {
        border: 0px;
    }

    /* Footer changes */
    footer {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 64px;
        padding-right: 64px;
    }
    .footer-info {
        color: var(--oldnyack-grey);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
}