@font-face {
    font-family: "Geist";
    src: url("Geist[wght].ttf") format("truetype-variations");
    font-weight: 100 900;
    font-style: normal;
}

body {
    background: #03120A;
    margin: 0;
    font-family: 'Geist', sans-serif;
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#navbar {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 12px 16px;
}

.navbar-section {
    display: flex;
    align-items: center;
    gap: 24px;
}

.navbar-title, .navbar-logo-mobile {
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
    color: #edf5ce;
    white-space: nowrap;
}
/*.navbar-section a*/
.navbar-logo {
    display: none;
}

.navbar-title:hover, .navbar-logo-mobile:hover {
    color: #c1c7ab;
    cursor: pointer;
}

main {
    padding-left: 16px;
    padding-right: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

footer {
    height: 80px;
    background: #03120A;
    border-top: rgba(255, 255, 255, 0.1) 1px solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;

}

.footer-section {
    display: flex;
    align-items: center;
    gap: 12px;

}

#copyright {
    color: #A7AF87;
    font-size: 12px;
}

.social-link {
    text-decoration: none;
    color: #A7AF87;

}

.social-link svg {
    height: 32px; /* force same physical height */
    width: auto; /* preserve aspect ratio */
    vertical-align: middle;
}

.linkedin-icon {
    height: 30px !important;
}

.mail-icon {
    height: 36px !important;
    padding-left: 3px;
}
/* BREAKPOINTS */

/* TABLET */
@media (width >= 48rem) {
    #navbar {
        gap: 96px;
        padding: 12px 36px;
    }
    .navbar-logo {
        display: none;
    }
    .navbar-logo-mobile {
        font-size: 48px;
    }

    .navbar-section {
        gap: 56px;
    }

    /*.navbar-section a*/
    .navbar-title {
        font-size: 48px;
    }

    main {
        padding-left: 36px;
        padding-right: 36px;
    }

    footer {
        height: 96px;
        padding-left: 52px;
        padding-right: 52px;

    }

    .footer-section {
        gap: 24px;
    }

    #copyright {
        font-size: 18px;
    }

    .social-link svg {
        height: 48px; /* force same physical height */
    }

    .linkedin-icon {
        height: 44px !important;
    }

    .mail-icon {
        height: 52px !important;
    }
}

/* DESKTOP */
@media (width >= 96rem) {
    #navbar {
        gap: 96px;
        padding: 12px 52px;
    }

    .navbar-section {
        gap: 64px;
    }

    /*.navbar-section a*/
    .navbar-title {
        font-size: 74px;

    }
    .navbar-logo {
        display: block;
    }
    .navbar-logo-mobile {
        display: none;
    }

    main {
        padding-left: 52px;
        padding-right: 52px;
    }

    footer {
        height: 96px;
        padding-left: 52px;
        padding-right: 52px;

    }<

    .footer-section {
        gap: 32px;
    }

    #copyright {
        font-size: 18px;
    }

    .social-link svg {
        height: 48px; /* force same physical height */
    }

    .linkedin-icon {
        height: 44px;
    }

}