body {
    background-color: #141933;
    margin: 0;
    min-height: 100vh;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 150px;
    font-weight: 700;
    color: #fbfcfc;
    margin: 0 0 22px;
    letter-spacing: 0;
    line-height: 1.1;
}

p {
    margin-left: 60px;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 450;
    color: #fbfcfc;
    line-height: 1.6;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fbfcfc;

    margin-left: 60px;
    margin-top: 20px;

    letter-spacing: -1px;
    line-height: 1.2;
}

br {
    margin-left: 60px;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 450;
    color: #fbfcfc;
    line-height: 1.6;
}

li {
    margin-left: 60px;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 450;
    color: #fbfcfc;
    line-height: 1.6;
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 96px;
    font-weight: 700;
    color: #0ee158;
    margin: 0;
    letter-spacing: 0;
    line-height: 1.2;
}

h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fbfcfc;

    margin-left: 60px;
    margin-top: 20px;

    letter-spacing: -1px;
    line-height: 1.2;
}

.dark-blue-page {
    background-color: #141933;
}

.my-image {
    width: 700px;
    height: auto;
    position: absolute;
    top: 20px;
    right: 20px;
}

.title {
    padding: 48px 5vw 0;
    width: min(1000px, 90vw);
    text-align: left;
}

.logo-image {
    display: block;
    width: 350px;
    height: auto;
    margin: 28px 0 0 auto;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: #00e158;
    top : 600px;
    right: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.key-contacts-grid {
    position: relative;
    min-height: 680px;
    margin: 30px 0 0;
}

.key-contact {
    position: absolute;
    width: 440px;
    margin: 0;
    color: #fbfcfc;
}

.emma-contact {
    top: 0;
    left: 19vw;
}

.lucy-contact {
    top: 0;
    left: 58vw;
}

.beccy-contact {
    top: 340px;
    left: 17vw;
}

.contact-image {
    display: block;
    width: 190px;
    height: 190px;
    margin: 0 0 26px;
    border-radius: 50%;
    object-fit: cover;
}

.key-contact h5 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #fbfcfc;
    line-height: 1.08;
    letter-spacing: 0;
}

.key-contact p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: #fbfcfc;
    line-height: 1.08;
    letter-spacing: 0;
}

.key-contact-logo {
    position: absolute;
    right: 30px;
    bottom: 22px;
    width: 470px;
    height: auto;
}

@media (max-width: 900px) {
    .key-contacts-grid {
        display: grid;
        gap: 48px;
        min-height: auto;
        margin: 30px 28px 50px;
    }

    .key-contact,
    .key-contact-logo {
        position: static;
    }

    .key-contact {
        width: 100%;
    }

    .contact-image {
        width: 170px;
        height: 170px;
    }

    .key-contact h5,
    .key-contact p {
        font-size: 28px;
    }

    .key-contact-logo {
        width: min(100%, 470px);
        justify-self: end;
    }
}


/* ── Cover Nav (full page navigation) ───────────────────── */
.cover-nav {
    padding: 40px 5vw 60px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.nav-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.nav-section-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    width: 100%;
    margin-bottom: 2px;
}

/* ── Entry Buttons ───────────────────────────────────────── */
.entry-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
}

.entry-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.entry-btn--primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.45);
    padding: 13px 28px;
    font-size: 1rem;
}

.entry-btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
}

.entry-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 700px) {
    .cover-nav { padding: 28px 5vw 48px; gap: 28px; }
    .entry-btn { font-size: 0.85rem; padding: 10px 16px; }
}

/* ── Logout button ───────────────────────────────────────── */
.entry-btn--logout {
    background: rgba(239, 68, 68, 0.15);
    border: 1.5px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
}
.entry-btn--logout:hover {
    background: rgba(239, 68, 68, 0.28);
    border-color: rgba(239, 68, 68, 0.6);
}

/* ── Greeting text ───────────────────────────────────────── */
.nav-greeting {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* ── Locked notice ───────────────────────────────────────── */
.locked-notice {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px dashed rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 14px 20px;
    line-height: 1.6;
}
.locked-notice a {
    color: #93c5fd;
    font-weight: 700;
    text-decoration: none;
    margin-left: 6px;
}
.locked-notice a:hover { text-decoration: underline; }
