@charset "UTF-8";

@font-face {
    font-family: "MBCorpo Title";
    src: url("../fonts/MBFonts/MBCorpoATitleCond-Regular-Web.woff2") format("woff2"), url("../fonts/MBFonts/MBCorpoATitleCond-Regular-Web.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "MBCorpo Text";
    src: url("../fonts/MBFonts/MBCorpoSText-Regular-Web.woff2") format("woff2"), url("../fonts/MBFonts/MBCorpoSText-Regular-Web.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: MBCorpo Text, sans-serif;
    background-color: #000000;
    min-height: 100vh;
}

a {
    text-decoration: none;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 96px;
    z-index: 50;
}

/* Left Navigation */
.left-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.66;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 1;
}

.nav-link.active {
    opacity: 1;
    pointer-events: none;
}

/* Centered Logo */
.logo-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.mb-star {
    width: 38px;
    height: 38px;
}

/* Right Navigation */
.right-nav {
    display: flex;
    align-items: center;
}

.icon-link {
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

.icon-link:hover {
    opacity: 0.8;
}

.nav-icon {
    width: 30px;
    height: 30px;
}

.login-group {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.login-group .nav-icon {
    margin-right: 10px;
}

.nav-link-text {
    color: #ffffff;
    font-size: 14px;
    transition: color 0.3s;
    margin-left: 30px;
}

.login-group .nav-link-text {
    margin-left: 0;
}

.nav-link-text:hover {
    color: #0088c6;
}

/* Hero Banner */
#hero-banner {
    position: relative;
    height: 1000px;
    background-image: url('../Images/V4/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: absolute;
    top: calc(50% - 150px);
    left: 96px;
    width: 33.333%;
}

    .hero-content h2 {
        color: #ffffff;
        font-size: 60px;
        line-height: 1.2;
        font-weight: 400;
        margin: 0 0 16px 0;
        font-family: MBCorpo Title, sans-serif;
    }

.hero-content .subtitle {
    color: #ffffff;
    font-size: 18px;
    margin: 36px 0;
}

.btn-primary {
    width: 384px;
    height: 48px;
    /*color: rgba(255, 255, 255, 0.75);*/
    color: #ffffff;
    font-size: 18px;
    background-color: #0079d6;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: color 0.3s;
}

.btn-primary:hover {
    color: #ffffff;
    background-color: #006abc;
}

.hero-content .info-text {
    color: #ffffff;
    font-size: 16px;
    margin-top: 16px;
}

/* Brand Logos */
#brand-logos {
    background-color: #000000;
    width: 100%;
}

#brand-logos img {
    display: block;
    max-width: 1920px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-top: 8px;
}

/* Footer */
#footer {
    background-color: #000000;
    margin-top: 0;
    padding-top: 0;
}

.footer-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    height: 128px;
    padding: 0 96px;
}

.footer-links {
    display: flex;
    align-items: center;
    width: 100%;
    height: 112px;
    border-top: 1px solid #6a6a6a;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 24px;
}

.footer-links a {
    color: #ffffff;
    font-size: 18px;
    opacity: 0.66;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

/* Login Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.modal-content {
    background-color: #ffffff;
    width: 675px;
}

.modal-header {
    background-color: #000000;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.modal-header p {
    color: #ffffff;
    font-size: 18px;
    margin: 0;
}

.close-btn {
    position: absolute;
    right: 16px;
    background: transparent;
    color: #ffffff;
    font-size: 24px;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.3s;
    width: 24px;
    height: 24px;
    line-height: 24px;
}

.close-btn:hover {
    color: #0088c6;
}

.modal-body {
    padding: 40px 32px;
}

    .modal-body h3 {
        font-size: 36px;
        color: #000000;
        text-align: center;
        margin: 24px 0;
        font-family: MBCorpo Title, sans-serif;
        font-weight: 400;
    }

.input-field {
    width: 100%;
    height: 56px;
    border: 1px solid #6a6a6a;
    border-radius: 4px;
    background-color: #f4f4f4;
    padding: 0 16px;
    margin-bottom: 20px;
    font-size: 16px;
}

.input-field:focus {
    outline: 2px solid #0088c6;
}

.info-message {
    font-size: 16px;
    color: #000000;
    text-align: left;
    width: 75%;
    margin-top: 20px;
}

.link-small {
    display: block;
    font-size: 14px;
    color: #0088c6;
    margin-top: 16px;
}

.link-small:hover {
    text-decoration: underline;
}

.link-large {
    display: block;
    font-size: 16px;
    color: #0088c6;
    margin-top: 16px;
}

.link-large:hover {
    text-decoration: underline;
}

.btn-submit {
    height: 48px;
    padding: 0 32px;
    color: #ffffff;
    font-size: 16px;
    background-color: #0078d6;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    margin: 32px 0;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #005a9e;
}

.modal-footer {
    background-color: #000000;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 48px;
}

.modal-footer a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.modal-footer a:hover {
    color: #0088c6;
}