html, body {
    height: 100%;
    margin: 0;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/images/ROC_Logo.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}
.glass-box {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    width: 95%;
    max-width: 800px;
    margin: 2rem auto;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    font-family: "Segoe UI", Roboto, Arial, sans-serif; /* ✅ SAME FONT FOR ALL TEXT */
}

/* ✅ Welcome Header = 2x Larger */
.glass-box h2 {
    font-size: 3.5rem;     /* 2x normal size */
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* ✅ Body Text uses same font but normal size */
.glass-box p {
    font-size: 2.5rem;
    line-height: 1.6;
}
.glass-box a {
    color: #6fd3ff;                 /* Soft bright cyan (high contrast, not harsh) */
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(111, 211, 255, 0.5);
    transition: color 0.2s ease, border-color 0.2s ease, text-shadow 0.2s ease;
}

.glass-box a:hover,
.glass-box a:focus {
    color: #ffffff;
    border-bottom-color: #ffffff;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

/* Mobile tap clarity */
.glass-box a:active {
    opacity: 0.85;
}

/* ✅ Mobile tuning */
@media (max-width: 600px) {
    .glass-box h2 {
        font-size: 2rem;
    }
}
