@font-face {
    font-family: 'Ade';
    src: url('Ade-Display.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
body {
    margin: 0;
}
.site-header {
    height: 82px;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8f4eb;
    border-bottom: 1px solid rgba(25, 72, 73, 0.15);
}

.site-logo {
    color: #3c6086;
    font-family: "Ade", serif;
    font-size: 25px;
    letter-spacing: 4px;
    text-decoration: none;
}

.menu-button {
    width: 45px;
    height: 45px;
    padding: 9px;
    background: transparent;
    border: 1px solid rgba(23, 73, 74, 0.3);
    border-radius: 50%;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background-color: #17494a;
    transition: 0.3s ease;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1998;
    background-color: rgba(10, 28, 29, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
}

.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1999;
    width: min(390px, 88vw);
    height: 100vh;
    padding: 90px 48px 42px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background-image:
        linear-gradient(
            rgba(248, 244, 235, 0.68),
            rgba(248, 244, 235, 0.82)
        ),
        url("images/navbar.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 20px 0 50px rgba(15, 45, 46, 0.2);
    transform: translateX(-105%);
    transition: transform 0.45s ease;
}

.side-menu.open {
    transform: translateX(0);
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.menu-close {
    position: absolute;
    top: 22px;
    right: 25px;
    width: 44px;
    height: 44px;
    color: #3c6086;
    background-color: rgba(248, 244, 235, 0.82);
    border: 1px solid rgba(23, 73, 74, 0.2);
    border-radius: 50%;
    font-family: Georgia, serif;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.side-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.side-menu-nav a {
    width: fit-content;
    padding: 10px 0;
    color: #3c6086;
    font-family: Georgia, serif;
    font-size: 31px;
    text-decoration: none;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.side-menu-nav a:hover {
    color: #e66f36;
    transform: translateX(8px);
}

.side-menu-note {
    max-width: 235px;
    margin-top: auto;
    margin-bottom: 0;
    color: #3c6086;
    font-size: 13px;
    line-height: 1.7;
}

body.menu-open {
    overflow: hidden;
}

.footer {

    margin: top 0;

    background:#faf7ef;
}

.footer-gradient{

    width:100%;
    height:5px;

    background:linear-gradient(
        90deg,
        #b35813,
        #e29420,
        #fef870,
        #a0bec3,
        #2e6789
    );
}

.footer-container{

    max-width:1200px;

    margin:auto;

    padding:70px 30px;

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:70px;
}

.footer-brand h2{

    margin:0;

    font-family:"Ade",serif;

    color:#2e6789;

    font-size:45px;

    font-weight:normal;
}

.footer-brand p{

    max-width:320px;

    margin-top:20px;

    color:#607278;

    line-height:1.8;
}

.footer-column{

    display:flex;

    flex-direction:column;

    gap:12px;
}

.footer-column h3{

    margin-bottom:8px;

    color:#2e6789;

    font-family:"Ade",serif;

    font-weight:normal;
}

.footer-column a{

    color:#607278;

    text-decoration:none;

    transition:.3s;
}

.footer-column a:hover{

    color:#e66f36;

    transform:translateX(5px);
}

.footer-bottom{

    max-width:1200px;

    margin:auto;

    padding:20px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-top:1px solid rgba(60,96,134,.15);
}

.footer-bottom p{

    margin:0;

    color:#708186;

    font-size:13px;
}

.signature{

    color:#708186;

    text-decoration:none;

    transition:.3s;
}

.signature span{

    font-size:22px;

    font-family:"Ade",serif;
}

.signature:hover{

    color:#e66f36;
}

@media(max-width:750px){

.footer-container{

grid-template-columns:1fr;

gap:45px;

}

.footer-bottom{

flex-direction:column;

gap:15px;

text-align:center;

}

}