/* Existing code for context (no changes here) */
<nav id="navbar-main" class="{% if module.fixed %}headroom headroom--not-bottom headroom--pinned headroom--top{% endif %}">
	{# ... (rest of your HTML structure remains the same) ... #}
</nav>

{% require_css %}
<style>
    /* ... (rest of your existing CSS) ... */

    /* Adjust these values to increase the navbar height */
    .navbar-main {
        padding-top: 2.5rem; /* Increased top padding for overall height */
        padding-bottom: 1.5rem; /* Increased bottom padding for overall height */
        padding-left: 1rem; /* Keep existing left padding or adjust as needed */
        padding-right: 1rem; /* Keep existing right padding or adjust as needed */
    }

    @media (min-width: 1200px) {
        .navbar-main {
            padding-top: 2rem; /* Further increased top padding for larger screens */
            padding-bottom: 2rem; /* Further increased bottom padding for larger screens */
            padding-left: 5rem; /* Keep existing left padding or adjust as needed */
            padding-right: 5rem; /* Keep existing right padding or adjust as needed */
        }

        /* You might also want to increase the padding of the navigation links */
        .navbar-nav .nav-link {
            padding-top: 2.5rem; /* Increased top padding for nav links */
            padding-bottom: 2.5rem; /* Increased bottom padding for nav links */
            /* Keep existing left/right padding or adjust as needed */
        }
    }

    /* Optional: If the above changes aren't enough, consider a min-height */
    .navbar.navbar-main {
        min-height: 100px; /* Example: Set a minimum height for the main navbar container */
        display: flex; /* Ensure flexbox for vertical alignment if using min-height */
        align-items: center; /* Vertically center content within the navbar */
    }

    /* If you have a top bar, you might need to adjust its padding too */
    .top-bar {
        padding-top: 0.75rem; /* Example: Adjust top bar padding */
        padding-bottom: 0.75rem; /* Example: Adjust top bar padding */
    }

    /* ... (rest of your existing CSS) ... */
</style>
{% end_require_css %}