* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fefefe;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Navbar */
.navbar {
    background: #1a472a;
    padding: 1.5rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand h1 {
    color: #f8f9fa;
    font-size: 2.2rem;
    letter-spacing: 3px;
    font-weight: 300;
}

.tagline {
    color: #90c695;
    font-size: 0.9rem;
    font-style: italic;
}

.menu {
    display: flex;
    gap: 2.5rem;
}

.menu a {
    color: #f8f9fa;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.menu a:hover {
    color: #90c695;
}

/* Hero */
.hero-section {
    background: linear-gradient(rgba(26, 71, 42, 0.7), rgba(26, 71, 42, 0.7)), 
                url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?w=1600') center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-text button {
    background: #90c695;
    color: #1a472a;
    border: none;
    padding: 15px 45px;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 600;
}

.hero-text button:hover {
    background: #7ab57f;
    transform: translateY(-2px);
}

/* Recipes */
.recipe-section {
    padding: 70px 25px;
    background: #f8f9fa;
}

.recipe-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a472a;
    font-weight: 300;
}

.recipe-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.recipe-item {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.recipe-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.recipe-image {
    flex: 0 0 350px;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recipe-info h3 {
    font-size: 1.8rem;
    color: #1a472a;
    margin-bottom: 1rem;
    font-weight: 400;
}

.recipe-info p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.meta {
    display: flex;
    gap: 2rem;
    color: #90c695;
    font-weight: 600;
}

/* Footer */
footer {
    background: #1a472a;
    color: #f8f9fa;
    padding: 3rem 25px 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-grid h3, .footer-grid h4 {
    color: #90c695;
    margin-bottom: 1rem;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 0.7rem;
}

.footer-grid a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-grid a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d5a3d;
    color: #cbd5e0;
}

/* Responsive */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .recipe-item {
        flex-direction: column;
    }
    
    .recipe-image {
        flex: 0 0 250px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

