* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e8f4f8;
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(13, 71, 161, 0.4);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #e8f4f8;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #e8f4f8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links a:hover {
    background: rgba(232, 244, 248, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.9), rgba(25, 118, 210, 0.9)),
                url('https://images.unsplash.com/photo-1544025162-d76694265947?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 180px 20px;
    text-align: center;
    color: #e8f4f8;
}

.hero-content h2 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: #42a5f5;
    color: #1a1f2e;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(66, 165, 245, 0.4);
    animation: fadeInUp 1.4s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(66, 165, 245, 0.6);
    background: #64b5f6;
}

/* Recipes Section */
.recipes-section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    color: #42a5f5;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 8px rgba(66, 165, 245, 0.3);
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.recipe-card {
    background: linear-gradient(135deg, #263238 0%, #37474f 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #1976d2;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(66, 165, 245, 0.4);
    border-color: #42a5f5;
}

.recipe-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(0.9);
}

.recipe-card:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

.recipe-content {
    padding: 25px;
}

.recipe-content h3 {
    color: #64b5f6;
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.recipe-content p {
    color: #b0bec5;
    margin-bottom: 15px;
    line-height: 1.7;
}

.recipe-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #42a5f5;
    font-weight: 600;
}

.view-recipe-btn {
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    color: #e8f4f8;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
}

.view-recipe-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(66, 165, 245, 0.5);
}

.recipe-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: #1a1f2e;
}

.recipe-details.active {
    max-height: 2000px;
    padding: 30px;
}

.recipe-section {
    margin-bottom: 25px;
}

.recipe-section h4 {
    color: #42a5f5;
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #1976d2;
    padding-bottom: 8px;
}

.recipe-section ul, .recipe-section ol {
    margin-left: 25px;
    color: #b0bec5;
}

.recipe-section li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0a0e1a, #1a1f2e);
    color: #e8f4f8;
    padding: 50px 20px 20px;
    margin-top: 80px;
    border-top: 2px solid #1976d2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 15px;
    color: #42a5f5;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #b0bec5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #42a5f5;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(232, 244, 248, 0.1);
    color: #64b5f6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .recipe-grid {
        grid-template-columns: 1fr;
    }
}

