/* EduCore Branding Styles */

/* Main EduCore brand text style */
.educore-brand {
    font-family: var(--font-family-brand);
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

/* Large brand text (login pages, etc) */
.educore-brand-lg {
    font-size: var(--font-size-4xl);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Medium brand text (navbar) */
.educore-brand-md {
    font-size: 1.75rem;
}

/* Small brand text */
.educore-brand-sm {
    font-size: var(--font-size-xl);
}

/* School name subtitle */
.school-subtitle {
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-medium);
}

/* Navbar specific styling */
.navbar-brand .educore-brand {
    color: white !important;
}

/* Footer branding */
.powered-by-educore {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.powered-by-educore a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
}

.powered-by-educore a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .educore-brand-lg {
        font-size: var(--font-size-3xl);
    }

    .educore-brand-md {
        font-size: var(--font-size-2xl);
    }

    .navbar-brand .border-start {
        display: none !important;
    }
}
