/* BV Menu Banner - Frontend Styles */

/* Menu Styles */
/*.bv-menu {
    background-color: #f8f9fa;
    padding: 0;
    margin: 0;
}

.navcontainer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 10px 0;
    gap: 10px;
}

.navcontainer a {
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

!* Hover effect *!
.navcontainer a:hover {
    background-color: #e9ecef;
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

!* Active link styles *!
.navcontainer a.navactive {
    background-color: #007bff;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,123,255,0.3);
}

.navcontainer a.navactive::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #0056b3;
}

.navcontainer a.navactive:hover {
    background-color: #0056b3;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,123,255,0.4);
}*/

/* Banner Styles */
.bv-banner-container {
    margin: 20px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.bv-banner-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bv-banner-container a:hover .bv-banner-image {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Loading animation for images */
.bv-banner-image {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
/*    .navcontainer {
        justify-content: center;
    }*/
}

@media (max-width: 768px) {

/*    .navcontainer {
        padding: 5px 0;
        gap: 5px;
    }
    
    .navcontainer a {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .navcontainer a.navactive::after {
        height: 2px;
    }*/
    
    .bv-banner-container {
        margin: 10px 0;
    }
    
    .bv-banner-image {
        border-radius: 4px;
        padding: 0 10px;
    }
    
    .bv-banner-container a:hover .bv-banner-image {
        transform: none;
    }
}

@media (max-width: 576px) {

/*    .navcontainer a {
        padding: 6px 12px;
        font-size: 13px;
    }

    .navcontainer {
        gap: 3px;
    }*/

    .bv-banner-image {
        padding: 0;
        border-radius: 0;
    }
}
