/* ==========================================================
   PAOREEL STUDIOS V3
   LAYOUT
   ========================================================== */



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

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: var(--z-header);

    padding: 2rem var(--content-padding);

}



/* ==========================================================
   NAVBAR
   ========================================================== */

.navbar {

    display: flex;

    align-items: center;

    justify-content: space-between;

}



/* ==========================================================
   LOGO
   ========================================================== */

.logo {

    display: block;

}

.logo img {

    display: block;

    height: 42px;

    width: auto;

}



/* ==========================================================
   NAVIGATION
   ========================================================== */

.nav-links {

    display: flex;

    align-items: center;

    gap: 3rem;

    list-style: none;

}

.nav-links a {

    position: relative;

    font-size: 0.9rem;

    font-weight: 400;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    color: #ffffff;

    transition: opacity .35s ease;

}

.nav-links a:hover {

    opacity: .65;

}



/* ==========================================================
   MOBILE TOGGLE
   ========================================================== */

.mobile-toggle {

    display: none;

    color: #ffffff;

    font-size: 1.6rem;

    cursor: pointer;

}



/* ==========================================================
   MAIN
   ========================================================== */

main {

    width: 100%;

}



/* ==========================================================
   PAGE SPACING
   ========================================================== */

section {

    width: 100%;

}