/* General styles for the navigation bar */
.header-nav-main {
    display: flex;
    justify-content: space-between; /* Distribute items evenly */
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    align-items: center; /* Vertically align items */
}

.header-nav-main ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav-main ul li {
    margin: 0 10px;
}

.header-nav-main ul li a {
    text-decoration: none;
    color: #000;
    padding: 10px 15px;
    transition: background-color 0.3s ease;
}

.header-nav-main ul li a:hover {
    background-color: #f0f0f0; /* Add hover effect */
    border-radius: 5px; /* Optional for rounded corners */
}

/* Ensure the logo and navigation align properly */
.header-logo {
    flex: 1; /* Allow the logo to take its space */
    max-width: 300px; /* Adjust based on your logo's size */
}

.header-nav-main ul {
    flex: 2; /* Ensure navigation items are evenly spaced */
    justify-content: flex-end;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-nav-main {
        flex-direction: column; /* Stack items on smaller screens */
        align-items: flex-start;
    }
    .header-nav-main ul {
        flex-direction: column; /* Stack navigation links */
        align-items: flex-start;
    }
}

.logo {
    width: 300px; /* Set the width to 300px */
    height: auto; /* Maintain the aspect ratio */
    max-width: 100%; /* Ensure responsiveness */
    display: block; /* Prevent inline spacing issues */
    margin-left: 50px;
}
.header-column {
    margin-right: 50px;
}

/* Custom styles for the main slider */
#mainSliderCarousel .owl-carousel {
    height: 670px;
    background-color: #2E3136;
}

/* Custom styles for the latest posts carousel */
#latestPostsCarousel .owl-carousel {
    margin: 0 auto;
    padding: 10px;
}
