/* Responsive Header Styles */
.brand-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 2px;
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sidebar Logo Responsive */
.sidebar-brand-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.sidebar-brand-logo:hover {
    transform: scale(1.05);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .brand-logo {
        height: 30px;
    }

    .brand-title {
        font-size: 1rem;
    }

    .brand-title-mobile {
        font-size: 0.9rem;
        font-weight: 700;
        color: #2E7D32;
        margin-bottom: 1px;
        line-height: 1.1;
    }

    .brand-subtitle {
        font-size: 0.7rem;
    }

    /* Hide full title on very small screens */
    .brand-title-full {
        display: none;
    }

    .brand-title-short {
        display: block;
    }

    /* Sidebar responsive */
    .sidebar-brand-logo {
        width: 45px;
        height: 45px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .brand-logo {
        height: 36px;
    }

    .brand-title {
        font-size: 1.1rem;
    }

    .sidebar-brand-logo {
        width: 48px;
        height: 48px;
    }
}

/* Desktop Styles */
@media (min-width: 1025px) {
    .brand-title-full {
        display: block;
    }

    .brand-title-short {
        display: none;
    }
}

/* Extra small mobile */
@media (max-width: 576px) {
    .brand-logo {
        height: 26px;
    }

    .brand-title-mobile {
        font-size: 0.8rem;
    }

    .brand-subtitle {
        font-size: 0.65rem;
    }

    .sidebar-brand-logo {
        width: 40px;
        height: 40px;
    }
}

/* Navbar mobile adjustments */
@media (max-width: 768px) {
    .layout-navbar .navbar-nav {
        margin-right: 0.5rem;
    }

    .layout-navbar .container-xxl {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
