nav {
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    font-family: 'Roboto Slab', serif;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: bold;
    color: #D30F23;
    letter-spacing: -1px;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    margin-left: 25px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover { color: #D30F23; }

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #D30F23;
    transition: 0.3s;
    border-radius: 2px;
}

@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.4s;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        padding-top: 50px;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 1.5rem;
        display: block;
    }

    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

*, *::before, *::after {
    font-family: 'Roboto Slab', serif !important;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #E4E1E3;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #A30B1B, #D30F23);
    border-radius: 6px;
    border: 2px solid #E4E1E3;
}

::-webkit-scrollbar-thumb:hover {
    background: #E03143;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #D30F23 #E4E1E3;
}
