
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

body {
    background-color: #f4f4f9;
    color: #333;
}

.logo {
    width: 150px;
    margin: 0 auto 20px auto;
    display: block;
}

.hero {
    background-color: #7bc16e;
    padding: 100px 60px;
    text-align: center;
    color: white;
    background-image: url('hero-background.webp');
    background-size: cover;
    background-position: center;
    height: 600px;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4em;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero p.subheading {
    font-size: 1.8em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

.progress-bar-container {
    margin: 40px 0;
    position: relative;
}

.progress-bar-container .progress-text {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2em;
}

.progress-bar {
    width: 80%;
    background-color: #f0f0f0;
    height: 25px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.progress {
    height: 100%;
    background-color: #4CAF50;
    transition: width 0.5s ease-in-out;
}

.button {
    background-color: #ff6347;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 1.4em;
    border-radius: 10px;
    margin-top: 50px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button:hover {
    background-color: #ff4500;
    transform: scale(1.05);
}

.todays-salad, .recent-salads {
    padding: 60px;
    text-align: center;
}

.salad-info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.salad-img {
    width: 350px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    margin-right: 40px;
}

.salad-description h3 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.salad-description p {
    font-size: 1.2em;
    color: #555;
}

.local-section {
    background-color: #eef5eb;
    padding: 60px;
    text-align: center;
}

.local-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.local-section p {
    font-size: 1.2em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.featured-farmer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.featured-farmer img {
    width: 300px;
    border-radius: 50%;
    margin-right: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.featured-farmer-info {
    text-align: left;
}

.featured-farmer-info h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #333;
}

.featured-farmer-info p {
    font-size: 1.1em;
    color: #777;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 50px;
    font-size: 1.1em;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }
    
    .hero p.subheading {
        font-size: 1.2em;
    }
    
    .salad-info {
        flex-direction: column;
        margin-top: 20px;
    }
    
    .salad-img {
        margin: 0 0 20px 0;
        width: 250px;
    }
    
    .local-section h2 {
        font-size: 2em;
    }
    
    .featured-farmer {
        flex-direction: column;
    }
    
    .featured-farmer img {
        margin: 0 0 20px 0;
    }
}
