* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe0b3 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(211, 84, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: white;
    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: white;
    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 Section */
.hero {
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.9), rgba(230, 126, 34, 0.9)),
                url('https://images.unsplash.com/photo-1565299585323-38d6b0865b47?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 20px;
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px 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: 15px 40px;
    background: white;
    color: #d35400;
    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: #fff5e6;
}

/* Recipes Section */
.recipes-section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #d35400;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(211, 84, 0, 0.1);
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.recipe-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(211, 84, 0, 0.2);
    border-color: #e67e22;
}

.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: #d35400;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.recipe-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.recipe-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #e67e22;
    font-weight: 600;
}

.view-recipe-btn {
    background: linear-gradient(135deg, #d35400, #e67e22);
    color: white;
    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(211, 84, 0, 0.3);
}

.recipe-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: #fff5e6;
}

.recipe-details.active {
    max-height: 2000px;
    padding: 30px;
}

.recipe-section {
    margin-bottom: 25px;
}

.recipe-section h4 {
    color: #d35400;
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #e67e22;
    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 */
footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    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: #e67e22;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e67e22;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
}

@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;
    }
}

