/* Front Page Specific Styles */

/* Logo Styles - Front page specific sizing */
.logo img {
    height: 32px;
    width: auto;
    max-width: 100%;
}

.left-section-logo-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

/* LEFT SECTION LOGO */
.left-section-logo {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.left-section-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 100%;
    display: block;
}

/* Left section bottom padding */
.left-section-bottom-padding {
    width: 100%;
    height: 48px;
    background-color: #040D81;
    flex: 0 0 auto;
    order: 2;
    margin: 0;
}

/* Main container - Mobile First */
.landing-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    height: 60vh;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    gap: 0;
    z-index: 15;
}

/* Desktop layout for landing container */
@media (min-width: 1024px) {
    .landing-container {
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end;
    }
}

/* Left blue section - Mobile First */
.left-section {
    background-color: #040D81;
    width: calc(100% - 32px);
    margin: 0 16px;
    padding: 24px;
    border-radius: 9.6px 9.6px 0 0;
    flex: 0 0 auto;
    order: 1;
    align-self: flex-start;
    position: relative;
}

/* Desktop layout for left section */
@media (min-width: 1024px) {
    .left-section {
        width: 50%;
        margin: 0 0 0 48px;
        padding: 48px;
        align-self: flex-start;
    }
}

/* Inverted corner elements - bottom left and right */
.corner-bottom-left,
.corner-bottom-right {
    position: absolute;
    bottom: 0;
    width: 19.2px;
    height: 19.2px;
    z-index: 1;
}

.corner-bottom-left {
    left: -19.2px;
    background: radial-gradient(circle at 0 0, transparent 19.2px, #040D81 19.2px);
}

.corner-bottom-right {
    right: -19.2px;
    background: radial-gradient(circle at 100% 0, transparent 19.2px, #040D81 19.2px);
}

/* Right content section */
.right-section {
    width: 60%;
    background-color: transparent;
    height: 100%;
    position: relative;
    padding: 0;
    margin: 0;
}

/* Logo section */
.logo-section {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 20%;
    display: flex;
    box-sizing: border-box;
}

.logo-section-left {
    width: 50%;
    background-color: #040D81;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 12px 12px 0;
}

.main-content-left:before {
    content: "";
    position: absolute;
    top: 0;
    right: -40px;
    height: 40px;
    width: 40px;
    background-color: #040D81;
    z-index: 15;
}

.main-content-left:after {
    content: "";
    position: absolute;
    top: 0;
    right: -40px;
    height: 40px;
    width: 40px;
    border-top-left-radius: 12px;
    background-color: #f4f4f4;
    z-index: 16;
}

.logo-section-right {
    width: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 32px;
    box-sizing: border-box;
    border-radius: 9.6px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9.6px;
}

/* Main content */
.main-content {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.main-content-left {
    background-color: #040D81;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    border-radius: 0 0 9.6px 0;
    left: 0;
}

.main-content-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 32px;
}

.main-title {
    text-align: center;
    color: #040D81;
    font-size: 38.4px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.title-line {
    display: block;
    position: relative;
    margin-bottom: 6.4px;
    font-size: 6.4rem;
    color: #f4f4f4;
}

/* Footer section */
.bottom-section {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 20%;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    border-radius: 12px;
}

.bottom-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    height: 40px;
    width: 40px;
    background-color: #040D81;
    z-index: 15;
}

.bottom-section:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    height: 40px;
    width: 40px;
    border-top-left-radius: 12px;
    background-color: #f4f4f4;
    z-index: 16;
}

.bottom-text {
    display: flex;
    flex-direction: column;
    gap: 3.2px;
    padding: 32px;
}

.bottom-text-line {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f4f4f4;
}

/* WordPress Content Section */
.wordpress-content-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #040D81;
    position: relative;
}

.wordpress-content-left {
    width: 40%;
    height: 100%;
    background-color: #040D81;
}

/* White logo overlay */
.white-logo-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 40px;
    padding-top: 8px;
    box-sizing: border-box;
    z-index: 20;
    transition: opacity 250ms ease, position 0s ease;
    transform: translateY(0);
}

/* WordPress content wrapper */
.wordpress-content-wrapper {
    margin: 96px;
    margin-left:176px;
    margin-right:176px;
    flex: 1;
    display: flex;
    flex-direction: column;
}


