/*
Theme Name: FindApart
Theme URI: https://findapart.com
Author: FindApart
Description: Custom FindApart Theme
Version: 1.0
Text Domain: findapart
*/

/* ==========================================================
   RESET
========================================================== */

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

html{
    scroll-behavior:smooth;
}

body{

    background:#071018;
    color:#ffffff;

    font-family:
        Inter,
        Segoe UI,
        Arial,
        sans-serif;

    font-size:16px;
    line-height:1.6;

}

/* ==========================================================
   CONTAINER
========================================================== */

.fa-container{

    width:min(1400px,94%);
    margin:auto;

}

/* ==========================================================
   HEADER
========================================================== */

.fa-site-header{

    position:absolute;

    top:0;
    left:0;
    right:0;

    z-index:9999;

    padding:30px 0;

    background:transparent;

}

.fa-site-header .fa-container{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.fa-logo img{

    max-height:82px;
    width:auto;

}

.fa-nav ul{

    display:flex;
    gap:40px;

    list-style:none;

}

.fa-nav a{

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.25s;

}

.fa-nav a:hover{

    color:#ffcc22;

}

/* ==========================================================
   FOOTER
========================================================== */

.fa-footer{

    background:#050b12;

    border-top:1px solid rgba(255,255,255,.08);

    padding:50px 0;

    text-align:center;

    color:#9aa7b4;

}

/* ==========================================================
   HERO PLACEHOLDER
========================================================== */

.fa-home-hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#08131d;

}
