/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f9f9f9; /* Light background for better contrast */
    color: #333; /* Neutral text color */
}

/* Header Styling */
.header {
    position: relative;
    height: 300px;
    background-image: url('images/header.jpg');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.header-container {
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.6); /* Semi-transparent background */
    padding: 15px;
    border-radius: 10px;
}

.logo {
    max-width: 120px;
    margin-right: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-left: 20px;
}

.header-content h1 {
    margin: 0;
    font-size: 2rem;
    color: #333;
}

.address-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}

.address {
    display: flex;
    align-items: center;
    gap: 8px;
}

.address .icon {
    width: 20px;
}

.address p {
    margin: 0;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-links a:hover img {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .address-social {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        margin-top: 10px;
    }
}

/* About Section */
.about-farm {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 900px;
    text-align: center;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Text Content */
.text-content {
    text-align: left;
    font-size: 1.1em;
}

.text-content ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.text-content li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.text-content .img {
    max-width: 200px; /* Ensure the image does not exceed 300px in width */
    width: 100%; /* Allow responsiveness */
    height: auto; /* Maintain the aspect ratio */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.image-gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Call-to-Action Section */
.cta {
    Background: rgba(255, 255, 255, 0.8);
    padding: 40px 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 900px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 12px 20px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #388E3C;
}

/* Bio Section Styling */
.bio-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2em auto;
    max-width: 800px; /* Set a max width for the content */
    gap: 1.5em;
}

.bio-container img.bio-image {
    max-width: 300px; /* Ensure the image does not exceed 300px in width */
    width: 100%; /* Allow responsiveness */
    height: auto; /* Maintain the aspect ratio */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

.bio-container .bio-text {
    text-align: justify;
    font-size: 1.1em;
    line-height: 1.8;
    color: #555; /* Softer text color for better readability */
    padding: 0 1em;
}

@media (min-width: 768px) {
    .bio-container {
        flex-direction: row; /* Align text and image side by side */
        gap: 2em;
    }

    .bio-container .bio-text {
        flex: 1; /* Allow the text to take up available space */
    }
}

/* Footer Styles */
footer {
    text-align: center;
    background: #333;
    color: white;
    padding: 1em 0;
    font-size: 0.9em;
    margin-top: 2em;
}

footer nav {
    margin-bottom: 1em;
}

footer nav a {
    color: #ddd;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer nav a:hover {
    color: white;
}

footer p {
    margin: 0.5em 0;
}

footer p em {
    color: #ff0000; /* Highlight 'Closed for the season' in red */
    font-style: italic;
}

