html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #fafafa;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-serif {
    font-family: 'Playfair Display', serif !important;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background: #fafafa;
}

.side-drawer {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 450px;
    height: 100vh;
    padding: 6rem 4rem;
    overflow-y: auto;
    background: #ebe6df;
}

.side-drawer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.side-drawer li {
    margin-bottom: 1.5rem;
}

.side-drawer a {
    display: inline-block;
    color: #222;
    font-size: 1.4rem;
    letter-spacing: 1px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.side-drawer a:hover {
    color: #8c7355;
    transform: translateX(10px);
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #4a331c;
    cursor: pointer;
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 1;
}

.footer {
    padding: 6rem 0 0;
    background: #111e1b;
    color: #fff;
}

.footer-top {
    padding-bottom: 5rem;
}

.footer-title {
    margin-bottom: 2rem;
    color: #7a948e;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    display: inline-block;
    color: #d0dcd9;
    font-size: 0.9rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-desc {
    margin-bottom: 2rem;
    color: #9bb3ae;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright {
    margin: 0;
    color: #7a948e;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .side-drawer {
        width: 90%;
        padding: 4rem 2rem;
    }
}
