@import url("https://fonts.bunny.net/css?family=inter:100,200,300,400,500,600|instrument-sans:400,500,600,700,800")

* {
    box-sizing: border-box;
}

:root {
    --forest-green: #1a5f3f;
    --henhouse-brand: #f77f00;
    --orange: #fbb264;
    --deep-navy: #1d3557;
    --off-white: #fdfaf6;
    --light-gray: #e8e8e8;
    --charcoal: #2b2d42;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    background-color: var(--forest-green);
    color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.container {
    text-align: left;
    max-width: 800px;
}

.help-container {
    text-align: left;
    max-width: 800px;
}

h1 {
    font-size: 3rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    color: var(--off-white);
    font-family: 'Instrument Sans', sans-serif;
}

.tagline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.coming-soon {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;

}

.cta {
    display: inline-block;
    background-color: var(--henhouse-brand);
    color: var(--off-white);
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 400;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--off-white);
    margin: 1rem 0;
}

table th {
    background-color: var(--light-gray);
    color: var(--forest-green);
    padding: 0.5rem;
    text-align: left;
}

table td {
    padding: 0.5rem;
    border: 1px solid var(--off-white);
}

.cta-container {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.header-top {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.logo-container {
    flex: 0 0 auto;
}

.title-container {
    flex: 1;
}

.cta:hover {
    background-color: var(--henhouse-brand);
    transform: translateY(-2px);
}

.footer {
    margin-top: 3rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

a {
    color: var(--orange);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#homepagelogo {
    max-width: 160px;
    margin-bottom: 1rem;
}

.social-icon {
    color: var(--henhouse-brand);
    fill: currentColor;
    transition: transform 0.2s, opacity 0.2s;
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.8;
    cursor: pointer;
}

.header-columns {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
}

.title-container {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .header-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logo-container {
        justify-content: center;
    }

    .title-container {
        justify-content: center;
    }
}

ul {
    padding-left: 1rem;
    margin: 1rem;
}

li {
    margin-bottom: 0.5rem;
    padding-left: 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }
}