:root {     
    --base-color: #d39121;
    --medium-gray: #8d8987;
    --black: #282725;
    --dark-gray: #383632;
    --red: #d51f0f;
    --green: #46b57e;
    --very-light-gray: #f9f6f3;
    --yellow: #ECBA23;
    --alt-font: 'Bebas Neue', cursive;
    --primary-font: 'Schibsted Grotesk', sans-serif;
    --main-color:#959595;
    --text-color:rgb(218, 166, 11);
} 

body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background-color: #000000;
}

header .navbar-brand img {
    max-height: 200px;
}
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 200px;
    justify-content: center;
    margin-left: -10px;
    background-color: #000000;
}

.menu-cards {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 400px;
    aspect-ratio: 1/1;
    }

.menu-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #000;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: -15px;
}

.menu-card:hover {
    background-color: #212529; /* Darker background on hover */
}

.card-image {
    object-fit: contain;
    border-radius: 10px 10px 0 0; /* Rounded top corners */
}

.card-content {
    padding: 10px;
}

.card-title {
    color: #fff;
    margin-bottom: 0;
}

@media (max-width: 767px) {


    .container {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        margin-left: 0px;
        margin-top: -20px;
    }

    .menu-cards {
        flex-direction: column;
        width: 80%;
        height: auto;
    }
    

    .menu-card {
        width: 400px;
        height: 270px;
        display: flex;
        align-items: center;
    }

    

    .card-image {   
        max-width: 50%;
        object-fit: contain;
    }

    a.navbar-brand img {
        width: 800px; 
        height: auto; 
        margin-left: 55px;
    }

    header .navbar-brand img {
        max-height: 50px;
    }
}
