/* =========================
   Global layout
========================= */

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

body {
    font-family: 'Ainslie Norm', sans-serif;
	font-weight: 400;
	font-style: normal;
    background: #ffffff;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* =========================
   Banner
========================= */

.lu-banner {
    padding: 30px 0;
    background: #ffffff;
}

.lu-banner img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* =========================
   Full-height red section
========================= */

.lu-message {
    background-color: #e30613; /* LU red */
    flex: 1;                  /* ⬅️ takes remaining height */
    display: flex;
    align-items: center;      /* vertical centering */
}

.message-content {
    max-width: 1080px;
    color: #ffffff;
}

.message-content h1 {
    font-family: 'Lemongrass Caps';
    font-size: 4.9rem;
    margin-bottom: 20px;
}

.message-content p {
	font-family: 'Ainslie Norm', sans-serif;
    font-size: 2.2rem;
    line-height: 1.4;
}

/* =========================
   Responsive tweaks
========================= */

@media (max-width: 768px) {
    .message-content h1 {
        font-size: 1.8rem;
    }

    .message-content p {
        font-size: 1rem;
    }
}
