/* Custom styles beyond Tailwind */
body {
    font-family: 'Inter', sans-serif;
}

.menu-button {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.menu-button:hover {
    opacity: 0.8;
}

/* Additional responsive styles */
@media (max-width: 768px) {
    .navbar {
        display: block;
        width: 100%;
        max-width: 400px;
        background-color: #fff;
        position: fixed;
        top: 80px;
        right: -100%;
        bottom: 0;
        z-index: 100;
        border-top: 1px solid #0000000D;
        border-left: 6px solid #0000000D;
        box-shadow: 0px 2px 4px 0px #0000000D;
        transition: right 0.3s ease;
    }
    
    .navbar ul {
        margin-bottom: 30px;
    }
    .navbar ul li {
        width: 100%;
        border-bottom: 1px solid #0000000D;
    }
    
    .navbar ul a {
        display: block;
        padding: 12px 16px;
    }

    .mobile-menu.active {
        right: 0;
    }
}


header {
    box-shadow: 0px 2px 4px 0px #0000000D;
}