/* site.css */

/* 1. Proxima Nova Regular */
@font-face {
    font-family: "Proxima Nova";
    src: url("/fonts/proximanova_regular.woff2") format("woff2"), url("/fonts/proximanova_regular.woff") format("woff"), url("/fonts/proximanova_regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* 2. Proxima Nova Bold */
@font-face {
    font-family: "Proxima Nova";
    src: url("/fonts/proximanova_bold.woff2") format("woff2"), url("/fonts/proximanova_bold.woff") format("woff"), url("/fonts/proximanova_bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* 3. Proxima Nova Black (if you have it) */
@font-face {
    font-family: "Proxima Nova";
    src: url("/fonts/proximanova_black.woff2") format("woff2"), url("/fonts/proximanova_black.woff") format("woff"), url("/fonts/proximanova_black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: "Proxima Nova", Arial, sans-serif !important;
    margin: 0;
    background-color: #f9f9f9;
    color: #333;
    margin-bottom: 60px;
}

header {
    color: #fff;
    padding: 1rem;
    text-align: center;
}

h1,
header h1 {
    margin: 0 !important;
    font-size: 2.5rem !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 900 !important;
    color: #225b2b !important;
    line-height: 2.6rem;
}

h2, h3, h4 {
    font-weight: 900;
    font-family: 'Montserrat', sans-serif !important;
    line-height: 1.2;
}

html {
  font-size: 14px;
}

body {
    overflow-x: hidden;
}


@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1650px !important;
    }
}

@media (min-width: 768px) {
    html {
       font-size: 16px;
    }
}

#page-content {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

/* make the wrapper inside also a flex column that can grow */
.content-wrapper {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

/* ensure the <main> itself is a flex column that fills its parent */
main[role="main"] {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

/* a helper to push anything to the bottom of its flex container */
.push-to-bottom {
    margin-top: auto;
}

#cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f9fbef;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index: 10000;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.spinner_load {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    background-color: #000;
    opacity: 0.6;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    filter: alpha(opacity=60);
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.cta-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1rem;
}

.cta-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    flex: 1 1 300px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-5px);
}

.cta-box h2 {
    margin-top: 0;
    color: #0a8f08;
}

.cta-box p {
    color: #555;
}

.cta-box a {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #0a8f08;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

a:hover {
    opacity:.8 !important;
}   
.pricing-section, .eligibility-section, .testimonials-section, .newsletter-section {
    padding: 2rem 1rem;
    max-width: 800px;
    margin: auto;
}

.pricing-section h2, .eligibility-section h2, .testimonials-section h2, .newsletter-section h2 {
    text-align: center;
    color: #0a8f08;
}

.highlight-featured {
    background-color: #e6f0e6;
    padding: 2rem 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.highlight-featured img {
    width: 200px;
    height: auto;
    border-radius: 8px;
}

.highlight-featured-text {
    flex: 1;
}

.highlight-featured-text blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #0a8f08;
    margin: 0 0 1rem;
}

.highlight-featured-text .author {
    font-weight: bold;
    font-size: 1.1rem;
    color: #0a8f08;
}

.newsletter-modal {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 1rem;
    max-width: 400px;
    margin: 2rem auto;
    text-align: center;
}

.newsletter-modal input[type="email"] {
    width: 80%;
    padding: 0.5rem;
    margin-top: 1rem;
}

.newsletter-modal button {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #0a8f08;
    color: #fff;
    border: none;
    border-radius: 4px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

@media (max-width: 600px) {
    h1,
    header h1 {
        font-size: 2rem !important;
    }
}
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 1rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

/* the card */
.login-card {
    width: 100%;
    max-width: 360px;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 2rem;
}

/* title */
.login-card h2 {
    margin: 0 0 1.5rem;
    font-size: 1.5rem;
    text-align: center;
    color: #333;
}

/* labels & inputs */
.login-card label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: #555;
}

.login-card input {
    width: 100%;
    padding: 0.65rem 0.75rem;
    margin-bottom: 0.25rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    font-size: 1rem;
}

    /* only inputs with a real validation error get red */
    .login-card input.input-validation-error {
        border-color: #e74c3c;
    }

/* show the built-in validation messages */
.login-card .field-error {
    display: block;
    margin: 0 0 0.75rem 0;
    font-size: 0.875rem;
    color: #e74c3c;
}

/* submit button */
.login-card button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 0.25rem;
    background: #007bff;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

    .login-card button:hover {
        opacity: 0.95;
    }

/* bottom links */
.login-card .links {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.login-card .links a {
    color: #007bff;
    text-decoration: none;
}

.login-card .links a:hover {
    text-decoration: underline;
}
/* ————— Global mobile centering & no-bleed fix ————— */
@media only screen and (max-width: 768px) {
    /* 1) Remove side-padding on your main wrappers */
    .content-wrapper,
    .container,
    .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 90vw !important; /* use viewport units so it never overflows */
        max-width: 100% !important; /* cancel any desktop max-widths */
    }

    /* 2) Ensure every <section> and direct child is also centered */
    section,
    .content-wrapper > * {
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
    }

    /* 3) Kill horizontal scroll if anything still pokes out */
    html, body {
        overflow-x: hidden !important;
    }
}
html, body {
    overflow-x: hidden !important;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #f9fbef;
    padding-top: 70px;
    color: #111;
    display: flex;
    flex-direction: column;
}

#page-content {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    margin-top: -50px !important;
}

footer {
    flex-shrink: 0;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0rem 1rem;
}

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
}

footer {
    background-color: #193e24;
    color: #fff;
    padding: 2rem 1rem;
}

    footer a {
        color: #ccc;
        text-decoration: underline;
    }

.navbar .dropdown:hover .dropdown-menu {
    display: block;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 0rem 1rem;
    }

    nav .navbar .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

        .navbar-collapse.collapse.show {
            display: block !important;
        }

    .navbar-nav {
        flex-direction: column !important;
        width: 100% !important;
    }

    .navbar-collapse .nav-link,
    .navbar-collapse .dropdown-toggle {
        padding: 0.5rem 1rem !important;
        width: 100% !important;
        text-align: left !important;
    }

    .navbar-collapse.collapse.show .dropdown-menu {
        display: block !important;
        position: static !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .navbar-collapse.collapse.show .dropdown-toggle::after {
        display: none !important;
    }

    .navbar-collapse.collapse.show .dropdown-item {
        padding: 0rem 1rem 0.4rem 2.5rem !important;
        width: 100% !important;
        text-align: left !important;
    }

    .align-items-center {
        align-items: flex-start !important;
    }

    #videoWrapper {
        position: relative;
        width: 100% !important;
        /* Use padding-bottom to enforce aspect ratio (56.25% = 16/9) */
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden; /* hide any overflow to prevent overlap */
    }

        #videoWrapper iframe#vimeoIframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100% !important;
            height: 100% !important;
        }
        /* 2. Resize the play button overlay for smaller screens */
        #videoWrapper #playButtonOverlay {
            width: 70px; /* smaller diameter for mobile */
            height: 70px;
            /* Ensure the overlay is centered within the container */
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

    nav.navbar .navbar-collapse.show .navbar-nav > .nav-item > a.nav-link:not(.dropdown-toggle),
    nav.navbar .navbar-collapse.show .navbar-nav .dropdown-menu > li > a.dropdown-item {
        text-decoration: underline !important;
    }

    .nav-link,
    .dropdown-menu li a {
        font-size: 16px !important;
    }
}
footer a:hover i {
    color: #d6e688 !important;
    transform: scale(1.2);
    transition: transform 0.3s ease, color 0.3s ease;
}

footer a[onclick]:hover {
    background-color: #d6e688 !important;
    color: #0d3a24 !important;
}

@media (max-width: 980px) {
    footer > div {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 1.2rem;
    }

    footer > div > div {
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem;
    }

    footer div[style*="font-style: italic"] {
        font-size: 36px !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    footer img {
        margin: 0 auto;
        display: block;
    }

    footer div[style*="text-align: left"] {
        text-align: center !important;
    }

    footer a {
        display: inline-block;
        margin: 0.2rem 0.4rem;
    }
}
