
:root {
    --primary-color: #02862af6;
    --secondary-color: #f1c40f;
    --accent-color: #e67e22;
    --text-color: #2c3e50;
    --light-bg: #f9f9f9;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color:#02862af6;
    color: var(--text-color);
    line-height: 1.6;
}

header {
    background-color: #f4f4f4;

    color: white;
    padding: 2rem;
}

nav {
    background-color: #f4f4f4;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.farm-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.farm-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.farm-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.certification-icons {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-content {
    padding: 1.5rem;
}

.price {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: bold;
}

footer {
    background-color: var(--text-color);
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

.opening-hours {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.map-container {
    height: 300px;
    background: #ddd;
    border-radius: 10px;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .farm-header {
        grid-template-columns: 1fr;
    }
}