:root{
    --main-color: #FFD700;
    --secondary-color: #000000;
    --active-color: #FFD700;
}

body{
    background-color: var(--secondary-color);
    color: #ffffff;
}

nav.navbar,.nav-link{
    background-color: var(--secondary-color);
    color: #ffffff;
    border-bottom: 2px solid #FFD700;
}

.bg-imageback {
    background-image: url(../img/brand/background.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    background-position: center;
}

.footer{
    color: #ffffff;
    background-color: #000000;
}
a{
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
}

a:hover {
    color: #FFD700;
}

i:hover,i:active{
    color: #FFD700;
}

.active{
    color: #FFD700 !important;
    font-weight: bold;
    background-color: rgba(255, 215, 0, 0.1);
}

.text-first{
    color: var(--main-color) !important;
}

.nav-link:hover{
    color: #FFD700;
}

#contact{
    background-color: var(--main-color) !important;
    color: #000000;
}

.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='whitesmoke' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

#bussinessnameh2{
    color: #ffffff !important;
}

.svg,.bi{
    height: 1em;
    width: 1em;
    vertical-align: -0.125em;
}

.status-bar {
    position: fixed;
    right: -300px;
    top: 90px;
    width: 250px;
    padding: 20px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: 2px solid #FFD700;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    transition: right 0.5s ease-in-out;
    z-index: 1000;
}

.status-bar.visible {
    right: 20px;
}

.status-bar h2 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #FFD700;
}

.status-bar p {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

/* Responsive design */
@media (max-width: 992px) {
    .bg-imageback {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .bg-imageback {
        height: 300px;
    }
    
    .status-bar {
        width: 200px;
        padding: 15px;
        top: 70px;
    }
    
    .status-bar h2 {
        font-size: 16px;
    }
    
    .status-bar p {
        font-size: 20px;
    }
    
    nav.navbar {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .bg-imageback {
        height: 200px;
    }
    
    .status-bar {
        width: 180px;
        padding: 10px;
        top: 60px;
        right: -200px;
    }
    
    .status-bar.visible {
        right: 10px;
    }
    
    .status-bar h2 {
        font-size: 14px;
    }
    
    .status-bar p {
        font-size: 18px;
    }
    
    body {
        font-size: 14px;
    }
}
