* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.top-nav {
    background: #ff6b6b;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.navigation {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navigation a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.navigation a:hover {
    opacity: 0.7;
}

/* Banner */
.banner {
    background: linear-gradient(rgba(255, 107, 107, 0.8), rgba(255, 107, 107, 0.8)),
                url('https://images.unsplash.com/photo-1498837167922-ddd27525d352?w=1600') center/cover;
    padding: 150px 20px;
    text-align: center;
    color: white;
}

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background: white;
    color: #ff6b6b;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

/* Recipes */
.recipes {
    padding: 80px 20px;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 1.5rem;
}

.card-body h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.card-body p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.tags {
    display: flex;
    gap: 1rem;
}

.tag {
    background: #ffe0e0;
    color: #ff6b6b;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 20px 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h3, .footer-col h4 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ff6b6b;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive */
@media (max-width: 768px) {
    .navigation {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .banner-content h1 {
        font-size: 2.2rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

