/* colors */
/*St. Lorenz Navy*/
/*#002D4D*/
/*Blue*/
/*#00508A*/
/*Light Blue*/
/*#368DCF*/
/*St. Lorenz Gold*/
/*#FAB51B*/

.headerContainer .header {
    border-top: 3em solid #002D4D;
    border-bottom: 1em solid #002D4D;
    background-color: white;
    padding-left: 25px;
    padding-top: 1em;
    padding-bottom: 1em;
}

.portalLink {
    padding-left: 1em;
    font-size: 25px;
}

/* Portal Items Styling */
.items {
    margin-top: 2rem;
}

.items .row {
    margin-bottom: 0;
}

.items .col {
    margin-bottom: 1.5rem;
    flex: 1;
    min-width: 0;
}

.item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 12px;
    padding: 2rem;
    min-height: 160px;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .items .col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .item {
        min-height: 120px;
        padding: 1.5rem;
    }

    .item p {
        font-size: 1.1rem;
    }
}


.item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.item p {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

/* Color Variants */
.item0 {
    background: linear-gradient(135deg, #FAB51B 0%, #e6a315 100%);
}

.item0:hover {
    background: linear-gradient(135deg, #e6a315 0%, #FAB51B 100%);
}

.item1 {
    background: linear-gradient(135deg, #002D4D 0%, #001a2d 100%);
}

.item1:hover {
    background: linear-gradient(135deg, #003d66 0%, #002D4D 100%);
}

.item2 {
    background: linear-gradient(135deg, #00508A 0%, #003d66 100%);
}

.item2:hover {
    background: linear-gradient(135deg, #0066a3 0%, #00508A 100%);
}

.item3 {
    background: linear-gradient(135deg, #368DCF 0%, #2a75b8 100%);
}

.item3:hover {
    background: linear-gradient(135deg, #4da3e3 0%, #368DCF 100%);
}
