        html,
        body {
            height: 100%;
        }

        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            font-family: 'Gilroy heavy', sans-serif;
        }

        main {
            flex: 1;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .hover\:text-orange-200:hover {
            color: #bc6e19;
        }

        .bg-cream {
            background-color: #FFF8E7;
        }

        .text-brown {
            color: #4A2C20;
        }

        .bg-brown {
            background-color: #4A2C20;
        }

        .text-amber-500 {
            color: #bc6e19;
        }

        .bg-orange-500 {
            background-color: #D17A22;
        }

        .text-cream-500 {
            color: #f2eddb;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(10px);
            animation: fadeInUp 0.5s ease-in-out forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Active Category Button Style */
        .active-category {
            color: #bc6e19 !important;
        }
		
        .custom-pagination {
            margin-top: 0px; 
            margin-bottom: 110px; 
        }	
		
.menu-hero-section {
    height: 900px; /* Super laki! You can change this to whatever you like */
    background-position: center;
    background-size: cover;
    position: relative;
    margin-top: 64px; /* Space for fixed navbar */
}

.menu-title {
    font-size: 6rem; /* Big title */
    line-height: 1.1;
    text-align: center; /* Center the title horizontally */
}




/* Mobile responsiveness */
@media (max-width: 768px) {
    .menu-title {
        font-size: 3.5rem;
    }

    .menu-subtitle {
        font-size: 1.25rem;
    }

 }

