html{
    scroll-behavior: smooth;
}

.page-body {
    background: linear-gradient(135deg, #FFF8EA 0%, #9E7676 100%);
    background-attachment: fixed;
    color: #594545;
    margin: 0;
    min-height: 100vh;
}

.navbar {
    background: #FFFFFF1A;
    backdrop-filter: blur(15px) saturate(120%);
    -webkit-backdrop-filter: blur(15px) saturate(120%);
    border: 1px solid #FFFFFF4D;
    box-shadow: 0 8px 32px 0 #00000015;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 999px;
    width: 90%;
    max-width: 1200px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #594545;
    font-family: 'Silkscreen', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.nav-link:hover {
    background: #815B5B;
    color: #FFF8EA;
    transform: translateY(-2px);
}

.logo-img {
    width: 50px;
    height: 50px;
    display: block;
}

.container {
    width: 100%;
    min-height: 100vh;
}