/* Centralized CSS for Inveriant website */

body {
    margin: 0;
    background-color: white;
    color: #333;
    font-family: 'CircularStd-Black', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.landing-page {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.landing-page img {
    max-width: 100%;
    width: 400px;
    height: auto;
    display: block;
    margin-bottom: 2px;
}

.content {
    max-width: 600px;
    width: 100%;
}

.tagline {
    margin-bottom: 60px;
}

.tagline h1 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: #333;
    margin: 0;
}

.tagline-spacing {
    margin-bottom: 0px;
}

.address {
    margin-top: 70px;
    margin-bottom: 60px;
}

.address p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 5px;
    color: #666;
}

.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: white;
    z-index: 999;
}

.copyright {
    position: fixed;
    bottom: 30px;
    left: 30px;
    text-align: left;
    margin-top: 40px;
    z-index: 1000;
}

.copyright p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
    color: #666;
}

.company-info {
    font-size: 13px !important;
    color: #999 !important;
}

.footer-links {
    position: fixed;
    bottom: 30px;
    right: 30px;
    text-align: center;
    z-index: 1000;
}

.links {
    font-size: 14px;
}

.links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #333;
}

.separator {
    margin: 0 20px;
    color: #ccc;
}

.contact-page,
.openings-page,
.thank-you-page {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'CircularStd-Black', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.contact-page h1,
.openings-page h1,
.thank-you-page h1 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
    font-weight: 400;
}

.contact-form,
.openings-form {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contact-form label,
.openings-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.contact-form input,
.contact-form textarea,
.openings-form input,
.openings-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    font-family: 'CircularStd-Black', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.contact-form button,
.openings-form button {
    width: 100%;
    padding: 14px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover,
.openings-form button:hover {
    background-color: #0056b3;
}

.back-link,
.openings-page a[style],
.contact-page a[style] {
    color: #666;
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
}

.single-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.6;
    font-family: 'CircularStd-Black', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-align: left;
}

.single-page h1 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
    font-weight: 400;
}

.single-page .content-body {
    font-size: 16px;
    color: #333;
}

.single-page .content-body h1,
.single-page .content-body h2,
.single-page .content-body h3,
.single-page .content-body h4,
.single-page .content-body h5,
.single-page .content-body h6 {
    color: #333;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

@media (max-width: 768px) {
    .landing-page img {
        width: 300px;
        margin-bottom: 2px;
    }

    .tagline {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .tagline h1 {
        font-size: 20px;
    }

    .address {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .copyright {
        bottom: 20px;
        left: 20px;
    }

    .footer-links {
        bottom: 20px;
        right: 20px;
    }

    .links {
        font-size: 13px;
    }

    .separator {
        margin: 0 15px;
    }
}