/* Monochrome styling for division pages */
.hero-video {
    filter: grayscale(100%) brightness(35%) !important;
}

.division-icon {
    color: #000 !important;
}

.division-card {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0)) !important;
}

.topic-card {
    background: white !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.topic-card i {
    color: #000 !important;
}

/* Hero alignment fixes */
.hero-content {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.hero-video-container {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Buttons in monochrome */
.cta-button {
    background: black !important;
    color: white !important;
    border: 1px solid black !important;
    transition: all 0.3s ease !important;
}

.cta-button:hover {
    background: white !important;
    color: black !important;
}

.cta-button-outline {
    background: transparent !important;
    color: white !important;
    border: 1px solid white !important;
}

.cta-button-outline:hover {
    background: white !important;
    color: black !important;
}

/* Monochrome gradients */
.gradient-bg {
    background: linear-gradient(to right, #000, #333) !important;
}

.card-gradient {
    background: linear-gradient(to bottom right, #fff, #f5f5f5) !important;
}

@media (max-width: 768px) {
    .hero-video-container {
        height: 100vh;
    }

    .hero-content {
        height: 100vh;
        padding: 4rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
}
