* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Georgia', serif; line-height: 1.6; color: #2d1b1b; background: linear-gradient(135deg, #fff0f5 0%, #ffe4e9 100%); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.navbar { background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%); padding: 1rem 0; box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3); position: sticky; top: 0; z-index: 100; }

.navbar .container { display: flex; justify-content: space-between; align-items: center; }

.logo h1 { color: #fff; font-size: 2rem; font-weight: bold; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); }

.nav-links { display: flex; list-style: none; gap: 2rem; }

.nav-links a { color: #fff; text-decoration: none; font-weight: 600; transition: all 0.3s ease; padding: 0.5rem 1rem; border-radius: 5px; }

.nav-links a:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }

.hero { background: linear-gradient(135deg, rgba(255, 105, 180, 0.9), rgba(255, 20, 147, 0.9)), url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=1600&q=80'); background-size: cover; background-position: center; background-attachment: fixed; padding: 170px 20px; text-align: center; color: #fff; }

.hero-content h2 { font-size: 4.5rem; margin-bottom: 1rem; text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3); animation: fadeInUp 1s ease; }

.hero-content p { font-size: 1.5rem; margin-bottom: 2rem; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); animation: fadeInUp 1.2s ease; }

.cta-button { display: inline-block; padding: 18px 45px; background: #fff; color: #ff1493; text-decoration: none; border-radius: 50px; font-weight: bold; font-size: 1.2rem; transition: all 0.3s ease; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); animation: fadeInUp 1.4s ease; }

.cta-button:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); background: #ffb6c1; }

.recipes-section { padding: 80px 20px; }

.section-title { text-align: center; font-size: 3.5rem; color: #ff1493; margin-bottom: 3rem; text-shadow: 2px 2px 4px rgba(255, 20, 147, 0.1); }

.recipe-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 35px; margin-top: 40px; }

.recipe-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 8px 25px rgba(255, 105, 180, 0.15); transition: all 0.3s ease; cursor: pointer; border: 3px solid #ffb6c1; }

.recipe-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(255, 105, 180, 0.25); border-color: #ff69b4; }

.recipe-card img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.3s ease; }

.recipe-card:hover img { transform: scale(1.1); }

.recipe-content { padding: 25px; }

.recipe-content h3 { color: #ff1493; font-size: 1.7rem; margin-bottom: 10px; }

.recipe-content p { color: #555; margin-bottom: 15px; line-height: 1.7; }

.recipe-meta { display: flex; gap: 20px; margin-bottom: 15px; color: #ff69b4; font-weight: 600; }

.view-recipe-btn { background: linear-gradient(135deg, #ff69b4, #ff1493); color: #fff; 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 15px rgba(255, 105, 180, 0.3); }

.recipe-details { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; background: #fff5f7; }

.recipe-details.active { max-height: 2000px; padding: 30px; }

.recipe-section { margin-bottom: 25px; }

.recipe-section h4 { color: #ff1493; font-size: 1.3rem; margin-bottom: 15px; border-bottom: 2px solid #ffb6c1; padding-bottom: 8px; }

.recipe-section ul, .recipe-section ol { margin-left: 25px; color: #444; }

.recipe-section li { margin-bottom: 10px; line-height: 1.8; }

footer { background: linear-gradient(135deg, #8b004b, #ff1493); color: #fff; padding: 50px 20px 20px; margin-top: 80px; }

.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: #ffb6c1; }

.footer-section ul { list-style: none; }

.footer-section a { color: #ffe4e9; text-decoration: none; transition: color 0.3s ease; }

.footer-section a:hover { color: #ffb6c1; }

.copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.2); color: #ffb6c1; }

@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; } }

