* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

:root {
    --LogoColour: #F6318C;
    --HeaderColour: #00246B;
    --BackgroudColour: #f4f7fc;
    --NavBarTextColour: white;
    --NavBarHoverLoadColour: #FF3EA5;
    --MainBlockColour: #030637;
    --HeadingBackgroundColour: #F11A7B;
}

body {
    min-height: 100vh;
    width: 100%;
    background-color: var(--BackgroudColour);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat",
        sans-serif,
        'Segoe UI',
        Tahoma,
        Geneva,
        Verdana,
        sans-serif !important;
}

header {
    display: flex;
    width: 100%;
    background-color: var(--HeaderColour);
    border-bottom: 2px solid rgba(246, 49, 140, 0.25);
    overflow-x: hidden;
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 64px;
}

header nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

header h1 {
    color: var(--LogoColour);
    display: flex;
    font-size: 26px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    align-items: center;
    justify-content: flex-start;
    letter-spacing: -0.5px;
    margin: 0;
}

header h1 a {
    color: var(--LogoColour);
    text-decoration: none;
}

header nav ul {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    height: 100%;
    list-style: none;
}

header nav ul li {
    color: var(--NavBarTextColour);
    display: flex;
    align-items: center;
    height: 100%;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    list-style-type: none;
    padding: 0;
    border-radius: 0;
}

header nav ul li a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 0 13px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

header nav ul li a::after {
    position: absolute;
    content: '';
    width: 0%;
    height: 2px;
    border-radius: 2px;
    left: 13px;
    right: 13px;
    bottom: 0;
    background: var(--NavBarHoverLoadColour);
    transition: width 0.25s ease;
}

header nav ul li a:hover {
    color: #ffffff;
}

header nav ul li a:hover::after {
    width: calc(100% - 26px);
}

header .DropMenu {
    display: none;
}

.MenuItems {
    display: none;
}

header nav ul #ActivePage {
    background-color: transparent;
}

header nav ul #ActivePage a {
    color: #ffffff !important;
}

header nav ul #ActivePage a::after {
    width: calc(100% - 26px) !important;
    background: var(--NavBarHoverLoadColour);
}

footer {
    margin-top: auto;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--HeaderColour);
    width: 100%;
    padding: 0;
    border-top: 2px solid rgba(246, 49, 140, 0.25);
}

footer .FooterContentContainer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    padding: 40px 40px 28px;
    gap: 40px;
    color: white;
}

footer .FooterBrand {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1.4;
}

footer .FooterBrandName {
    font-size: 22px;
    font-weight: 800;
    color: var(--LogoColour);
    letter-spacing: -0.5px;
    font-family: "Montserrat", sans-serif;
}

footer .FooterTagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    max-width: 220px;
}

footer .FooterCol {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

footer .FooterColTitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2px;
}

footer .FooterColLinks {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

footer .FooterColLinks a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    width: fit-content;
}

footer .FooterColLinks a:hover {
    color: #ffffff;
}

footer .SocialMediaLinks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer .SocialLink {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    width: fit-content;
}

footer .SocialLink:hover {
    color: #ffffff;
}

footer .SocialLink i {
    font-size: 18px;
}

footer .FooterBottom {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    align-self: center;
}

footer #FooterCopyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

footer #FooterContactus {
    display: none;
}

footer #FooterFollowUs {
    display: none;
}

footer p a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

footer #inpDevDiv p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0;
    width: 100% !important;
}

footer #inpDevDiv a {
    color: rgba(246, 49, 140, 0.75) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

footer #inpDevDiv a:hover {
    color: var(--LogoColour) !important;
}

header #check:checked ~ ul {
    left: 0;
}

.SocialMediaLinks {
    text-align: center;
}

.InstagramLogo {
    align-items: center;
    text-align: center;
    width: 4vh;
    height: 4vh;
}


/* ============================================================
   Media Queries
   ============================================================ */

@media (max-width: 850px) {
    main {
        margin-top: 10vh !important;
    }

    header {
        position: fixed;
        width: 100%;
        height: 60px;
        top: 0;
        z-index: 999;
        padding: 0 15px;
    }

    header h1 {
        font-size: 1.6rem;
    }

    header nav ul {
        display: flex;
        flex-direction: column;
        position: fixed;
        flex-wrap: nowrap;
        width: 100vw;
        height: auto;
        top: 60px;
        left: -100vw;
        right: auto;
        align-items: stretch;
        justify-content: flex-start;
        text-align: left;
        background-color: #00194f;
        border-bottom: 2px solid rgba(246, 49, 140, 0.3);
        border-radius: 0;
        transition: left 0.3s ease;
        padding: 8px 0;
        gap: 0;
    }

    header nav ul li {
        box-sizing: border-box;
        border-radius: 0;
        padding: 0;
        display: block;
        height: auto;
        font-size: 15px;
    }

    header nav ul li a {
        color: rgba(255, 255, 255, 0.8);
        padding: 13px 24px;
        display: block;
        height: auto;
        border-left: 3px solid transparent;
        transition: background 0.15s, color 0.15s;
    }

    header nav ul li a:hover {
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
        border-left-color: var(--NavBarHoverLoadColour);
    }

    header nav ul li a::after {
        display: none;
    }

    header nav ul #ActivePage {
        background-color: transparent;
    }

    header nav ul #ActivePage a {
        color: #ffffff !important;
        border-left: 3px solid var(--NavBarHoverLoadColour);
        background: rgba(246, 49, 140, 0.08);
    }

    header nav ul #ActivePage a::after {
        display: none;
    }

    header .MenuItems {
        display: inline-flex;
        color: white;
        align-items: center;
        justify-content: center;
    }

    header #check {
        display: none;
    }

    header #MenuButton {
        margin-right: 0;
        margin-left: 7px;
        font-size: 20px;
    }

    .mainbody {
        margin-top: 60px !important;
    }

    footer {
        height: auto;
    }

    footer .FooterContentContainer {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        padding: 32px 24px 24px;
    }

    footer .FooterBrand {
        flex: unset;
        width: 100%;
    }

    footer .FooterTagline {
        max-width: 100%;
    }

    footer .FooterBottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        align-items: center;
        padding: 16px 24px;
    }

    footer #inpDevDiv {
        margin-top: 0;
        font-weight: 600;
    }
}

@media (min-width: 0px) and (max-width: 510px) {
    body {
        width: 100vw;
    }

    header {
        min-width: 100%;
        height: 60px;
    }

    footer {
        width: 100%;
    }

    footer .FooterContentContainer {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 20px 20px;
        gap: 24px;
    }

    footer .FooterBottom {
        flex-direction: column;
        gap: 6px;
        align-items: center;
        padding: 14px 20px;
    }

    .maindiv {
        margin-top: 60px;
    }
}

@media (min-width: 511px) and (max-width: 754px) {
    /* page-specific styles go in their own CSS files */
}


/* html {
    scroll-behavior: smooth;
    animation: softReveal 0.3s ease-out forwards;
}

@keyframes softReveal {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */
