/*
Theme Name: ANS Music
Author: ANS Music Pte. Ltd.
*/

:root {
    --ans-blue: #00d2ff;
    --ans-dark: #0a0a0a;
}

body {
    background-color: #000; /* ব্যাকগ্রাউন্ড কালো রাখলে লোগো ফুটে উঠবে */
    color: #fff;
}

.main-logo {
    height: 45px; /* লোগোর সাইজ পিসি অনুযায়ী */
    width: auto;
}

.ans-navbar {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 10px 15px !important;
}

.dropdown-menu {
    background: #1a1a1a;
    border: 1px solid #333;
}

.dropdown-item {
    color: #ccc;
}

.dropdown-item:hover {
    background: var(--ans-blue);
    color: #000;
}

.btn-client {
    background: var(--ans-blue);
    color: #000 !important;
    border-radius: 5px;
    font-weight: 700;
    margin-left: 15px;
    padding: 8px 20px !important;
}

/* Mobile Specific */
@media (max-width: 991px) {
    .main-logo {
        height: 35px; /* মোবাইলে একটু ছোট লোগো */
    }
    .btn-client {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
    }
}

/* Footer Styling */
.ans-footer {
    background-color: #050505; /* Deep black bg from image */
    padding: 80px 0 30px;
    color: #ffffff;
    font-size: 14px;
}

.footer-logo {
    max-height: 40px;
}

.about-text {
    line-height: 1.6;
    color: #cccccc;
    font-size: 13px;
    text-align: justify;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    color: #bbbbbb;
}

.footer-links li a {
    color: #bbbbbb;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links li a:hover {
    color: #00d2ff;
    padding-left: 5px;
}

/* Social Icons */
.social-icons a {
    color: #fff;
    background: rgba(255,255,255,0.1);
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #00d2ff;
    color: #000;
}

.copyright {
    color: #999;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 991px) {
    .ans-footer {
        text-align: center;
        padding-top: 50px;
    }
    .ps-lg-5 {
        padding-left: 0 !important;
    }
    .footer-links li a:hover {
        padding-left: 0;
    }
    .social-icons {
        justify-content: center;
        display: flex;
    }
}