
/* Button Styles */
.nav-button {
    display: inline-block;
    padding: 5px 10px;
    background-color: #67a97b;
    color: white !important;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    height: 40px;
    line-height: 20px;
    box-sizing: border-box;
}

.nav-button:hover {
    background-color: #45a049;
    color: black !important;
}

/* Base Body Styles - CONSOLIDATED */
body {
    font-family: Arial, serif;
    background-color: #FFFFFF;
    min-width: 1024px;
    width: 100%;
}

/* Workscape Button Styles */
.workscape-button {
    background-color: #36302a;
    color: rgb(246, 243, 236);
    border-radius: 0;
    font-weight: light;
}

.workscape-button:hover {
    background-color: #544e47;
}

.workscape-subscribe-button {
    background-color: #b9a590;
    color: rgb(54, 48, 42);
    border-radius: 0;
    padding: 14px 90px;
}

.workscape-subscribe-button:hover {
    background-color: #ad967e;
}

/* Form Input Styles */
textarea:not(.no-this) {
    border: 2px solid #000;
    border-radius: 0;
    outline: none;
    padding: 10px !important;
}

input:not([type="checkbox"]):not([type="radio"]) {
    border: 2px solid #000;
    border-radius: 0;
    outline: none;
    padding: 10px !important;
}

input:not([type="checkbox"]):not([type="radio"]):focus, textarea:focus {
    box-shadow: 0 0 0 2px black;
}

/* Animation Styles */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fade-in.visible {
    opacity: 1;
}

/* Navigation Active State */
nav .active {
    color: rgb(20 83 45) !important;
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Button Disabled State */
button:disabled {
    background-color: #888888;
    color: linen !important;
    opacity: 1 !important;
}

/* Header Navigation */
.header-container {
    padding-bottom: 0.1rem;
    min-width: 1024px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    background-color: #FFFFFF;
    position: relative;
    overflow-x: auto;
}

.header-container .grid {
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-container img.logo {
    height: 80px;
    margin: auto;
    margin-bottom: 1px;
    animation: fade-in 0.5s ease-in;
}

/* Navigation Items */
.header-container ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
    animation: fade-in 0.5s ease-in;
}

.header-container ul li {
    list-style-type: none;
}

.header-container ul li a {
    font-family: Arial, serif;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #4a5568 !important;
    padding: 4px 2px !important;
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.header-container ul li a:hover {
    color: #1a1a1a;
}

.header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

/* Base navigation styling */
.navigation-container li {
    list-style: none;
}

.navigation-container a {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.navigation-container a:hover {
    color: #1a1a1a !important;
}

/* Active Link */
.navigation-container a.active {
    color: #065f46;
}

/* Navigation list styling */
.navigation-container ul li a {
    font-size: 22px !important;
    font-weight: 600 !important;
    padding: 4px 4px !important;
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.navigation-container ul li a:hover {
    color: #1a1a1a !important;
}

/* Fade-in animation */
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Utility classes for spacing */
.padding-top-5 {
    padding-top: 1.25rem;
}

.horizontal-spacing-8 > * + * {
    margin-left: 2rem;
}

/* Footer Container */
.footer {
    background-color: #ffffff;
    color: #333;
    padding: 40px 20px;
    font-size: 16px;
}

/* Main Footer Content */
.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* Footer Grid Layout */
.footer-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* Footer Section */
.footer-section {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-section {
        text-align: left;
    }
}

/* Footer Logo */
.footer-logo {
    height: 64px;
    margin-bottom: 5px;
    display: block;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    font-family: Arial, sans-serif;
    margin: 0;
}

/* Footer Headings */
.footer-heading {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: "MinervaModern", sans-serif;
    font-weight: 300;
}

/* Footer Links */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: Arial, sans-serif;
}

.footer-link {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    display: block;
    margin: 8px 0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #1a1a1a !important;
}

/* Footer Contact */
.footer-contact li {
    font-size: 15px;
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #4a4a4a;
    padding-top: 20px;
    font-size: 0.875rem;
    font-family: Arial, sans-serif;
    color: black;
}

/* Calculate Button */
.calculate-button {
    padding: 8px 12px;
    background-color: #67a97b;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 1in;
}

.calculate-button:hover {
    background-color: #45a049;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    body {
        min-width: 100%;
        width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: 100% !important;
        min-width: 100% !important;
        padding: 0 15px;
    }

    .header-container img.logo {
        height: 60px;
    }

    .header-container ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .grid-container {
        grid-template-columns: 1fr !important;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 2rem;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .workscape-button {
        width: 100%;
        margin: 10px 0;
        font-size: 16px;
    }

    .workscape-subscribe-button {
        width: 100%;
        padding: 12px 20px;
    }
}

/* Tablet Responsive Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    body {
        min-width: 100%;
        width: 100%;
    }

    .container {
        width: 100% !important;
        min-width: 100% !important;
        padding: 0 30px;
    }

    .grid-container {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.h3 {
    font-family: Arial;
    font-size: 12px;
    font-weight: normal;
}