* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Trebuchet MS', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Top Bar */
.top-bar {
    background: #27ae60;
    padding: 1.3rem 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.75;
}

/* Hero */
.hero-banner {
    background: linear-gradient(to right, #27ae60, #2ecc71);
    padding: 160px 25px;
    text-align: center;
    color: white;
}

.hero-banner h2 {
    font-size: 3.3rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.hero-banner p {
    font-size: 1.4rem;
    margin-bottom: 2.3rem;
}

.cta {
    display: inline-block;
    background: white;
    color: #27ae60;
    padding: 16px 42px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta:hover {
    background: #f8f8f8;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Content */
.content-area {
    padding: 85px 25px;
    background: #fafafa;
}

.main-heading {
    text-align: center;
    font-size: 2.9rem;
    color: #27ae60;
    margin-bottom: 3.5rem;
    font-weight: 700;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.3rem;
}

.recipe-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.recipe-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.recipe-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.details {
    padding: 1.7rem;
}

.details h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 0.9rem;
}

.details p {
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.meta-info {
    display: flex;
    gap: 1.3rem;
    color: #27ae60;
    font-weight: 700;
}

/* Footer */
.footer-area {
    background: #16a085;
    color: white;
    padding: 3.5rem 25px 1.5rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-columns h3, .footer-columns h4 {
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-columns ul {
    list-style: none;
}

.footer-columns ul li {
    margin-bottom: 0.7rem;
}

.footer-columns a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-columns a:hover {
    color: white;
}

.footer-copy {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .hero-banner h2 {
        font-size: 2.2rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
}

