﻿/* ===== Reset / base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #ffb347, #fff0e1, #ac6b2c);
    min-height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #332211;
}

/* ===== Main Container ===== */
.mpr-container {
    width: 100%;
    max-width: 520px;
    max-height: 80vh;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -2.5rem;
}


/* ===== Logo Image ===== */
.logo-top {
    display: block;
    /* width: 60%; */
    max-width: 220px;
    /* margin: 0 auto 1rem auto; */
    /* max-height: 80vh; */
}

/* ===== Card Wrapper ===== */
.mpr-card {
    width: 100%;
    background: rgba(255, 248, 240, 0.8);
    border: 2px solid #ffb347;
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem 1.5rem; /* 👈 Reduced padding */
    text-align: center;
    overflow-y: auto; /* 👈 In case content overflows on small screens */
}


/* ===== Title Styling ===== */
.portal-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    padding: 1rem;
    border: 2px solid #ffb347;
    border-radius: 0.75rem;
    background-color: rgba(255, 179, 71, 0.15);
    margin-bottom: 2rem;
    display: inline-block;
    width: 100%;
    color: #5a3e1b;
}

    .portal-title span {
        font-size: 1.1rem;
        font-weight: 500;
        opacity: 0.85;
    }

/* ===== Icon Grid ===== */
.icon-fa {
    font-size: 3rem;
    padding: 1rem;
    color: #5a3e1b;
}

.icon-row {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
}

.icon-option {
    flex: 1 1 160px;
    padding: 1.5rem 0.75rem;
    border-radius: 0.75rem;
    transition: transform 0.25s ease, background 0.25s ease;
    cursor: pointer;
    background: rgba(255, 236, 208, 0.4);
    text-decoration: none;
}

    .icon-option:hover,
    .icon-option:focus-visible {
        transform: translateY(-4px);
        background: rgba(255, 179, 71, 0.2);
    }

    .icon-option p {
        font-size: 1.05rem;
        font-weight: 600;
        letter-spacing: 0.3px;
        color: #5a3e1b;
    }

/* Only style the 'coming soon' item */
.coming-soon {
    position: relative;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none; /* disables interaction ONLY for this one */
}

    .coming-soon .coming-soon-badge {
        position: absolute;
        top: 5px;
        right: 5px;
        background-color: #ffc107;
        color: #000;
        font-size: 0.7rem;
        font-weight: bold;
        padding: 0.2rem 0.4rem;
        border-radius: 0.25rem;
        text-transform: uppercase;
        box-shadow: 0 0 4px rgba(0,0,0,0.2);
    }


.logo-container {
    display: flex;
    justify-content: center;
}

.title-container {
    text-align: center;
}





