﻿

.home-container {
    background-color: #f8f9fa;
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: flex-start;
    padding: 1.5rem 0 1rem;
    margin-top: 0.8rem;
 
}

.container {
    padding-bottom: 0 !important;
}

.system-intro {
    margin-bottom: 3rem;
}

.system-logo {
    max-height: 100px;
    margin-bottom: 1.5rem;
}

.system-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.system-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--medium-text);
    margin-bottom: 2rem;
}

.application-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    backdrop-filter: blur(8px);
    z-index: 2;
    position: relative;
    margin-bottom: 1rem;
}

    .application-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1), 0 15px 30px rgba(0, 0, 0, 0.12);
    }

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    background: rgba(26, 75, 140, 0.1);
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.card-description {
    font-size: 1rem;
    color: var(--medium-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-app {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

    .btn-app:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .home-container {
        padding: 2rem 0;
    }

    .system-title {
        font-size: 1.8rem;
    }

    .system-subtitle {
        font-size: 1.2rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-description {
        font-size: 0.95rem;
    }

    .application-card {
        padding: 2rem 1.5rem;
    }
}
