.hero-mid {
    width: 95%;
    min-height: 100vh;
    padding-bottom: 5vh;
    height: auto;
}

.hero-mid-top {
    /* background:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/kolacici.jpg');
    background-size: cover;
    background-position: center; */
    height:300px;
    display: flex;
    align-items: end;
    padding-bottom: 3vh;
    justify-content: center;
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.cookies-image{
    position: relative;
    width: 100%;
    height: 100%;
}

.cookies-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cookies-image h1{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.hero-mid-top h1 {
    font-size: 45px;
    font-weight: 500;
    letter-spacing: 10px;
    color: #fff;
}

@media (max-width: 1600px) 
{
    .hero-mid-top h1 {
        font-size: 40px;
    }
}
@media (max-width: 1400px) 
{
    .hero-mid-top h1 {
        font-size: 36px;
    }
}
@media (max-width: 1200px) 
{
    .hero-mid-top h1 {
        font-size: 32px;
    }
}

.container {
    display: flex;
    min-height: 40vh;
    height: auto;
    padding-bottom: 5vh;
}

.sidebar {
    width: 20%;
    background-color: #f4f4f4;
    padding: 20px;
    overflow-y: auto; /* Makes sidebar scrollable */
    position: relative; /* Required for absolute positioning inside */
    height: 55vh; /* Adjust based on your total viewport height needs */
}

.menu-item {
    margin-bottom: 20px;
    cursor: pointer;
    position: relative;
}

.menu-item:not(:last-child):after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6vh;
    height: 5vh;
    width: 1px; /* Width of the vertical line */
    background-color: black; /* Color of the vertical line */
    transform: translateX(-50%);
}

.menu-item h3 {
    font-size: 26px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 6vh;
}

@media (max-width: 1600px) 
{
    .menu-item h3 {
        font-size: 22px;
       
    }
}
@media (max-width: 1400px) 
{
    .menu-item h3 {
        font-size: 20px;
       
    }
}
@media (max-width: 1200px) 
{
    .menu-item h3 {
        font-size: 16px;
       
    }
}


.content {
    width: 80%;
    text-align: center;
    padding: 20px;
    overflow-y: auto;
    height: 50vh; /* Adjust based on your total viewport height needs */
}
.menu-item.active h3 {
    font-weight: 800; /* Makes the font bold for the active item */
}
@media only screen and (min-width: 768px) and (max-width: 1024px) 
{
    .hero-mid {
        width: 100%;
        min-height: 80vh;
        padding-bottom: 5vh;
        height: auto;
    }
    
    .hero-mid-top {
        background:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/kolacici.jpg');
        background-size: cover;
        background-position: center;
        height: 250px;
        display: flex;
        align-items: end;
        padding-bottom: 3vh;
        justify-content: center;
    }
    
    .hero-mid-top h1 {
        font-size: 45px;
        font-weight: 500;
        letter-spacing: 10px;
        color: #fff;
    }
    
    .container {
        display: flex;
        height: 40vh;
    }
    
    .sidebar {
        width: 30%;
        background-color: #f4f4f4;
        padding: 20px;
        overflow-y: auto; /* Makes sidebar scrollable */
        position: relative; /* Required for absolute positioning inside */
        height: 55vh; /* Adjust based on your total viewport height needs */
    }
    
    .menu-item {
        margin-bottom: 20px;
        cursor: pointer;
        position: relative;
    }
    
    .menu-item:not(:last-child):after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -6vh;
        height: 5vh;
        width: 1px; /* Width of the vertical line */
        background-color: black; /* Color of the vertical line */
        transform: translateX(-50%);
    }
    
    .menu-item h3 {
        font-size: 26px;
        text-align: center;
        font-weight: 500;
        margin-bottom: 6vh;
    }
    
    .content {
        width: 70%;
        text-align: center;
        padding: 20px;
        overflow-y: auto;
        height: 70vh; /* Adjust based on your total viewport height needs */
    }
    .menu-item.active h3 {
        font-weight: 800; /* Makes the font bold for the active item */
    } 
}

@media (max-width: 768px) 
{
    .hero-mid {
        width: 100%;
        min-height: 90vh;
        padding-bottom: 5vh;
        height: auto;
    }
    
    .hero-mid-top {
        background:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/kolacici.jpg');
        background-size: cover;
        background-position: center;
        height: 250px;
        display: flex;
        align-items: end;
        padding-bottom: 3vh;
        justify-content: center;
    }
    
    .hero-mid-top h1 {
        font-size: 35px;
        text-align: center;
        font-weight: 500;
        letter-spacing: 10px;
        color: #fff;
    }
    
    .container {
        display: flex;
        min-height: 40vh;
        height: auto;
    }
    
    .sidebar {
        text-align: center;
        width: 35%;
        background-color: #f4f4f4;
        padding: 20px;
        overflow-y: auto; /* Makes sidebar scrollable */
        position: relative; /* Required for absolute positioning inside */
        height: 55vh; /* Adjust based on your total viewport height needs */
    }
    
    .menu-item {
        margin-bottom: 20px;
        cursor: pointer;
        position: relative;
    }
    
    .menu-item:not(:last-child):after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -6vh;
        height: 5vh;
        width: 1px; /* Width of the vertical line */
        background-color: black; /* Color of the vertical line */
        transform: translateX(-50%);
    }
    
    .menu-item h3 {
        font-size: 18px;
        text-align: center;
        font-weight: 500;
        margin-bottom: 6vh;
    }
    
    .content {
        width: 65%;
        text-align: center;
        padding: 20px;
        overflow-y: auto;
        height: 70vh; /* Adjust based on your total viewport height needs */
    }
    .menu-item.active h3 {
        font-weight: 800; /* Makes the font bold for the active item */
    } 
}