/*!
Theme Name: Black Tide
Theme URI: https://blacktidecap.com/
Author: Underscores.me
Author URI: https://blacktidecap.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: black-tide
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

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

*,
a {
    -webkit-tap-highlight-color: transparent !important;
}

body,
html {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

:root {
    --primary-color: #231F20;
    --secondary-color: #144D38;
}


.blacktide-splash {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-position: top center !important;
    background-size: 100% 120% !important;
}

.blacktide-wrap {
    height: calc(100vh - 40px);
    display: flex;
    align-items: center;
}

.container {
    max-width: 1360px;
    width: calc(100% - 2rem);
    margin: 0px auto
}

.logo{
    display: inline-block;
    max-width: 700px;
    width: 66%;
}

.logo > img{
    width: 100%;
}

.info {
    color: var(--primary-color);
    font-family: "Figtree", sans-serif;
    font-weight: 300;
    font-size: 31px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 58px;
}

.tagline {
    color: var(--secondary-color);
    font-family: "Figtree", sans-serif;
    font-weight: 500;
    font-size: 25px;
    line-height: 100%;
    letter-spacing: 6%;
    text-transform: uppercase;
    margin-bottom: 58px;
}

.content {
    max-width: 776px;
}

.divider {
    width: 46px;
    height: 1px;
    background-color: var(--secondary-color);
    margin-bottom: 50px;
}

.contact .name {
    font-family: "Figtree", sans-serif;
    font-weight: 300;
    font-size: 25px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--primary-color);
}

.contact a {
    font-family: "Figtree", sans-serif;
    color: var(--primary-color);
    font-weight: 300;
    font-size: 25px;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: underline;
}

.legal {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
}

.legal span {
    font-family: "Figtree", sans-serif;
    color: var(--primary-color);
    font-weight: 300;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}

.legal a {
    font-family: "Figtree", sans-serif;
    color: var(--primary-color);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: underline;
    margin-left: 12px;
}

.wrapper {
    max-width: 988px;
    margin: auto;
}

@media (max-width: 1550px){
    .legal span{
        display: block;
    }

    .legal a{
        margin-left: 0;
    }

    .blacktide-splash{
        background-size:  cover !important;
    }
}


@media (max-width: 1422px) {
     .logo{
        margin-top: -5%;
        width: 40vw;
     }
     .info{
        margin-bottom: 30px;
        font-size: 24px;
     }

     .tagline{
        margin-bottom: 30px;
        font-size: 22px;
     }

     .divider{
        margin-bottom: 30px;
     }

     .contact .name,
     .contact a{
        font-size: 22px;
     }

     .content {
        max-width: 656px;
    }
}


@media (max-width: 1024px) {
    .container{
        max-width: 1000px;
    }

    .logo{
        width: 70vw;
        margin-bottom: 15px;
    }

    .info{
        font-size: 28px;
    }

    .tagline{
        font-size: 22px;
    }

    .contact .name,
    .contact a{
        font-size: 22px;
    }

    .blacktide-wrap {
        height: calc(100vh - 150px);
    }

    .legal {
        margin-right: 30%;
    }
}




@media (max-width: 991px) and (orientation: landscape){
    .logo {
        width: 46%;
    }
    .blacktide-wrap {
        height: auto;
    }
    .blacktide-splash{
        height: auto;
        padding: 30px 0;
    }

    .content {
        max-width: 76%;
    }

    .contact {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px){
    .info {
        font-size: 22px;
    }

    .tagline {
        font-size: 18px;
    }

    .contact .name, .contact a{
        font-size: 18px;
    }

    .legal span{
        font-size: 14px;
        line-height: 120%;
    }
}


@media (max-width: 575px){
    .contact .name, .contact a {
        font-size: 16px;
    }
}