
/*
Theme Name: Bhuiya Influencer Theme
Description: Custom influencer theme with responsive header and animated menu
Version: 3.8
*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.site-branding {
    text-align: center;
    margin: 10px 0;
}

.site-title {
    font-size: 24px;
    font-weight: bold;
}

.site-description {
    font-size: 14px;
    color: #666;
}

nav {
    text-align: center;
    background-color: #f5f5f5;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

nav li {
    margin: 10px;
    position: relative;
}

nav a {
    text-decoration: none;
    font-weight: bold;
    color: #000;
    padding: 5px 10px;
    position: relative;
}

nav a::after {
    content: "";
    display: block;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    text-align: center;
    margin: 10px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
    }

    nav ul.show {
        display: flex;
    }
}
