﻿/* MonochromeA Theme: Blue/White/Grey — All sections squared, only cards rounded */
/* --------------------------------------------------- */
/* ===========  RESET & BASE  =========== */
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient( 120deg, #f4f6f8 0%, /* Platinum white */
        #e7e9ec 60%, /* Very light cool gray */
        #d7dadf 100% /* Platinum, with a hint of silver */
        );
    color: #172542;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}
.tenant-theme, body, html {
    margin: 0 !important;
    padding: 0 !important;
}

/* All sections edge-to-edge, no border radius */
section, .tenant-navbar, footer, .footer {
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    position: relative;
    /* REMOVE the left/right/margin-left/margin-right rules! */
}


    /* Alternate section backgrounds for contrast */
    section:nth-of-type(even) {
        background: #f8f9fb;
    }

/* Max-width container for content (centers and pads) */
.section-wrapper,
.container,
.about-container,
.features-container,
.blog-preview-container,
.contact-form-inner,
.case-studies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px 48px 20px;
    box-sizing: border-box;
}

/* ===========  NAVBAR  =========== */
/* ===========  NAVBAR (TopMenuBar) =========== */
.tenant-navbar,
.tenant-navbar * {
    box-sizing: border-box;
}

.tenant-navbar {
    width: 100%;
    margin: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #e3e9f2;
    box-shadow: none !important;
    background: #fff;
    z-index: 10;
}


.tenant-navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    height: auto;
    min-height: 68px; /* or remove height property */
    padding: 0 30px;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
}
@media (max-width: 700px) {
    .tenant-navbar-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 10px;
    }

    .tenant-navbar-links {
        justify-content: flex-start;
    }
}

.tenant-navbar-logo img {
    height: 44px;
    border-radius: 14px; /* Only logo rounded */
    background: #fff;
    padding: 3px;
    box-shadow: none !important;
}

.tenant-navbar-links {
    display: flex;
    flex-wrap: wrap; /* <-- Allow items to wrap to a new line */
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
    border-radius: 0 !important;
    background: none !important;
}


    .tenant-navbar-links li a {
        color: #1373d1;
        font-weight: 500;
        font-size: 1.06rem;
        text-decoration: none;
        padding: 6px 18px 7px 18px;
        border-radius: 0 !important;
        transition: background 0.15s;
        background: none !important;
    }

        .tenant-navbar-links li a:hover {
            background: #e8f0fc;
        }

/* ===========  HERO SECTION  =========== */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    overflow: hidden; /* important for overlay! */
}

.hero-background {
    background-size: cover;
    background-position: center;
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 1; /* Full image, overlay will tint */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(32,38,50,0.53) 0%, /* dark gray overlay */
    rgba(32,38,50,0.48) 75%, rgba(32,38,50,0.41) 100% );
    z-index: 1;
    pointer-events: none;
}

.hero-text-container {
    position: relative;
    z-index: 2;
    margin-top: 3.5rem;
    margin-bottom: 2rem;
}

.hero-logo img {
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(50,110,210,0.07);
    background: #fff;
    padding: 6px;
    max-width: 280px;
    max-height: 160px;
    margin: 0 auto 2.2rem auto;
    display: block;
}

.hero-title {
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    font-size: 2.7rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.1rem;
}

.hero-subtext {
    font-size: 1.18rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 1.6rem;
}

.hero-button {
    background: #1373d1;
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 14px 36px;
    font-size: 1.09rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background 0.14s;
    margin-top: 1.2rem;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(80,130,220,0.05);
}

    .hero-button:hover {
        background: #0c5db2;
    }

/* ===========  HERO COMPACT  =========== */
.hero-compact-section {
    background: #f3f7fb;
    padding: 0;
    min-height: 280px;
    display: flex;
    align-items: center;
    text-align: center;
    border-radius: 0;
}

.hero-compact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 0;
}

.hero-compact-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1373d1;
    margin-bottom: 0.7rem;
}

.hero-compact-subtitle {
    color: #2561a7;
    font-size: 1.07rem;
    margin-bottom: 1.3rem;
}

.hero-compact-button {
    background: #1373d1;
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 10px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.7rem;
    transition: background 0.14s;
    box-shadow: 0 2px 10px rgba(80,130,220,0.04);
}

    .hero-compact-button:hover {
        background: #0c5db2;
    }

/* ===========  FEATURES SECTION  =========== */
.features-section {
    width: 100%;
    background: #fff;
    border-radius: 0;
    padding: 0;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px;
    box-sizing: border-box;
    gap: 36px;
}

.features-text {
    flex: 1 1 360px;
    min-width: 320px;
}

.features-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.0rem;
    color: #1373d1;
    font-weight: 700;
    margin-bottom: 1.3rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .features-list li {
        position: relative;
        padding-left: 2.6em;
        margin-bottom: 1.05rem;
        font-size: 1.09rem;
        color: #1d3557;
        font-weight: 500;
        background: transparent;
    }

        .features-list li::before {
            content: '';
            display: inline-block;
            width: 1.6em;
            height: 1.6em;
            background: url('/Images/icons/blue-check.png') no-repeat center center/contain;
            position: absolute;
            left: 0;
            top: 0.08em;
            filter: drop-shadow(0 0 0.5px #1373d1);
        }

.features-image-wrapper {
    flex: 1 1 340px;
    text-align: right;
    min-width: 240px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.features-image {
    max-width: 340px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    background: #f5f9fd;
    box-shadow: 0 2px 10px rgba(80,130,220,0.09);
    border: 1.5px solid #e2eaf6;
}

/* ===========  ABOUT SECTION  =========== */
.about-section {
    background: #fff;
    border-radius: 0;
    width: 100%;
    padding: 0;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 38px;
    padding: 48px 20px;
}

.about-image-wrapper {
    flex: 1 1 330px;
    min-width: 220px;
}

.about-image {
    width: 100%;
    max-width: 340px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(80,130,220,0.08);
}

.about-text {
    flex: 2 1 430px;
    min-width: 280px;
}

.about-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.55rem;
    color: #1373d1;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.about-body {
    color: #274063;
    font-size: 1.08rem;
    font-weight: 400;
}

/* ===========  CASE STUDIES SECTION  =========== */
.case-studies-section {
    background: #fff;
    border-radius: 0;
    padding: 0;
    width: 100%;
}

.case-studies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px;
    text-align: center;
}

.case-studies-title {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #1373d1;
    font-size: 2.0rem;
    margin-bottom: 1.3rem;
}

.case-studies-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 1.5rem;
}

.case-study-card {
    background: #f5f7fa;
    border-radius: 12px;
    padding: 1.35rem 1.7rem;
    min-width: 270px;
    max-width: 330px;
    color: #205192;
    font-size: 1.08rem;
    box-shadow: 0 1px 8px rgba(30,60,120,0.06);
    text-align: left;
}

/* ===========  BLOG PREVIEW  =========== */
.blog-preview-section {
    background: #f8f9fb;
    border-radius: 0;
    width: 100%;
    padding: 0;
}

.blog-preview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px;
}

.blog-preview-title {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #1373d1;
    font-size: 2.0rem;
    text-align: center;
    margin-bottom: 2.2rem;
}

.blog-preview-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.blog-post-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(30,60,120,0.07);
    padding: 1.8rem 1.4rem 1.4rem 1.4rem;
    max-width: 320px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.blog-post-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.9rem;
}

.blog-post-title {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #1373d1;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 0.6rem 0;
}

.blog-post-excerpt {
    font-size: 0.97rem;
    color: #274063;
    margin-bottom: 1.2rem;
}

.blog-post-link {
    color: #1373d1;
    font-size: 0.98rem;
    font-weight: 500;
    text-decoration: underline;
    margin-top: auto;
}

    .blog-post-link:hover {
        color: #0c5db2;
    }

/* ===========  CONTACT SECTION  =========== */
.contact-section {
    background: #fff;
    border-radius: 0;
    width: 100%;
    padding: 0;
}

.contact-form-inner {
    max-width: 620px;
    margin: 0 auto;
    padding: 48px 20px 52px 20px;
}

.contact-title {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #1373d1;
    font-size: 2.0rem;
    margin-bottom: 0.7rem;
    text-align: center;
}

.contact-body {
    color: #205192;
    text-align: center;
    font-size: 1.06rem;
    margin-bottom: 2.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form-field label {
    font-size: 1.05rem;
    color: #274063;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1.2px solid #dbe7f7;
    background: #fff;
    font-size: 1rem;
    color: #204068;
    font-family: 'Inter', Arial, sans-serif;
    margin-bottom: 0;
}

.contact-form textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-button {
    background: #1373d1;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 26px;
    font-size: 1.07rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    align-self: flex-end;
    transition: background 0.13s;
}

    .contact-button:hover {
        background: #0c5db2;
    }

.contact-success, .contact-error {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0.8rem 0;
    text-align: center;
}

.contact-success {
    color: #25aa51;
}

.contact-error {
    color: #d43d3d;
}

/* ===========  FOOTER  =========== */
footer, .footer {
    width: 100%;
    background: #f8f9fb;
    color: #1373d1;
    border-radius: 0;
    text-align: center;
    padding: 40px 0 25px 0;
    margin: 0;
    border-top: 1px solid #e3e9f2;
}

    .footer h2 {
        color: #1373d1;
        font-size: 1.19rem;
        font-weight: 600;
        margin-bottom: 0.8rem;
        letter-spacing: 0.01em;
    }

    .footer p {
        color: #2561a7;
        font-size: 1.02rem;
        margin: 0;
        font-weight: 400;
    }

/* ===========  RESPONSIVE  =========== */
@media (max-width: 900px) {
    .features-container,
    .about-container,
    .case-studies-grid,
    .blog-preview-grid {
        flex-direction: column;
        gap: 18px;
        padding: 32px 10px;
    }

    .tenant-navbar-container {
        flex-direction: column;
        height: auto;
        padding: 10px 10px;
        gap: 10px;
        align-items: center;
    }
}

@media (max-width: 700px) {
    .section-wrapper,
    .container,
    .about-container,
    .features-container,
    .blog-preview-container,
    .case-studies-container,
    .contact-form-inner {
        padding: 32px 6px 32px 6px;
    }

    .hero-title, .features-title, .case-studies-title, .about-title, .blog-preview-title, .contact-title {
        font-size: 1.22rem !important;
    }

    .hero-section, .about-section, .features-section, .case-studies-section, .blog-preview-section, .contact-section, .footer, footer {
        padding: 0;
    }
}
.tenant-theme,
.tenant-theme.min-h-screen,
.tenant-theme.p-6 {
    padding: 0 !important;
    margin: 0 !important;
}
/* Remove margin/padding from the main wrapper on tenant sites */

/* Fix: Remove ONLY top margin from the parent .container when rendering tenant site */
.container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.hero-section .hero-title,
.hero-section .hero-subtext,
.hero-section .hero-button {
    color: #fff !important;
}

/* ==== END MonochromeA Theme ==== */
