* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Trebuchet MS', 'Lucida Sans', sans-serif;
    line-height: 1.65;
    color: #2d4a2b;
    background: linear-gradient(to bottom, #f1f8e9 0%, #dcedc8 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, #558b2f 0%, #33691e 100%);
    padding: 1.2rem 0;
    box-shadow: 0 4px 15px rgba(85, 139, 47, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #f1f8e9;
    font-size: 2.3rem;
    font-weight: 800;
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #f1f8e9;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 5px;
}

.nav-links a:hover {
    background: rgba(241, 248, 233, 0.2);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #7cb342 0%, #558b2f 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #f1f8e9);
}

.hero-content h2 {
    font-size: 3.3rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    font-style: italic;
}

.hero-content p {
    font-size: 1.35rem;
    margin-bottom: 2.2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #f1f8e9;
    color: #33691e;
    padding: 16px 48px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background: white;
}

/* Recipes Section */
.recipes-section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.7rem;
    margin-bottom: 3rem;
    color: #558b2f;
    font-weight: 800;
    font-style: italic;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.recipe-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(85, 139, 47, 0.2);
    transition: all 0.3s;
}

.recipe-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(85, 139, 47, 0.3);
}

.recipe-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.recipe-content {
    padding: 1.8rem;
}

.recipe-content h3 {
    font-size: 1.55rem;
    margin-bottom: 0.6rem;
    color: #558b2f;
    font-weight: 700;
}

.recipe-content p {
    color: #5d6d5b;
    margin-bottom: 1rem;
}

.recipe-meta {
    display: flex;
    gap: 1.5rem;
    color: #7cb342;
    font-weight: 600;
}

.view-recipe-btn {
    margin-top: 1rem;
    padding: 12px 28px;
    background: linear-gradient(135deg, #7cb342 0%, #558b2f 100%);
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.view-recipe-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(124, 179, 66, 0.4);
}

.recipe-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background: #f1f8e9;
    border-radius: 12px;
    margin-top: 0;
}

.recipe-details.active {
    max-height: 2000px;
    transition: max-height 0.8s ease-in;
    padding: 2.2rem 1.8rem;
    margin-top: 1rem;
}

.recipe-section {
    margin-bottom: 2rem;
}

.recipe-section:last-child {
    margin-bottom: 0;
}

.recipe-section h4 {
    color: #558b2f;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
}

.recipe-section ul, .recipe-section ol {
    padding-left: 1.6rem;
    color: #3d5a3c;
}

.recipe-section li {
    margin-bottom: 0.85rem;
    line-height: 1.65;
}

.recipe-card {
    cursor: pointer;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #558b2f 0%, #33691e 100%);
    color: #f1f8e9;
    padding: 3.5rem 20px 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: white;
    font-weight: 800;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: #dcedc8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(241, 248, 233, 0.3);
    color: #dcedc8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .recipe-grid {
        grid-template-columns: 1fr;
    }
}

