body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}
header {
    text-align: center;
    padding: 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}
.header-icon {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 1rem;
}
.header-text {
    text-align: center;
    flex: 1;
}
h1 {
    color: #2c5e1a;
    margin-bottom: 0.1rem;
}
.subtitle {
    color: #666;
    font-size: 1.2rem;
}
.location {
    color: #666;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 0.25rem;
}
.content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 2rem;
}
.availability {
    background-color: #f0f7ed;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    border-left: 4px solid #2c5e1a;
}
.contact {
    text-align: center;
    margin-top: 2rem;
}
.email-link {
    color: #2c5e1a;
    text-decoration: none;
    font-weight: bold;
}
.email-link:hover {
    text-decoration: underline;
}

/* Style for inline contact form link */
.contact-link {
    color: #2c5e1a;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s;
}
.contact-link:hover {
    color: #1e4212;
    text-decoration: underline;
}
footer {
    text-align: center;
    padding: 2rem 0;
    color: #666;
    font-size: 0.9rem;
}
.chickens-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.contact-button {
    background-color: #2c5e1a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s;
}
.contact-button:hover {
    background-color: #1e4212;
}
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.submit-button {
    background-color: #2c5e1a;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}
.submit-button:hover {
    background-color: #1e4212;
}
/* Loading spinner */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #2c5e1a;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
} 