* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c1810;
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8d6 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #fff8f0;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-family: 'Georgia', serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff8f0;
    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, 248, 240, 0.2);
    transform: translateY(-2px);
}

.hero {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.9), rgba(160, 82, 45, 0.9)),
                url('https://images.unsplash.com/photo-1533777857889-4be7c70b33f7?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 170px 20px;
    text-align: center;
    color: #fff8f0;
}

.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;
    font-family: 'Georgia', serif;
}

.hero-content p {
    font-size: 1.4rem;
    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: #d2691e;
    color: #fff8f0;
    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: #cd853f;
}

.recipes-section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    color: #8b4513;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.1);
    font-family: 'Georgia', serif;
}

.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(139, 69, 19, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid #d2691e;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.25);
    border-color: #a0522d;
}

.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: #8b4513;
    font-size: 1.7rem;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

.recipe-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.recipe-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #a0522d;
    font-weight: 600;
}

.view-recipe-btn {
    background: linear-gradient(135deg, #8b4513, #a0522d);
    color: #fff8f0;
    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(139, 69, 19, 0.3);
}

.recipe-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: #fff8f0;
}

.recipe-details.active {
    max-height: 2000px;
    padding: 30px;
}

.recipe-section {
    margin-bottom: 25px;
}

.recipe-section h4 {
    color: #8b4513;
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #d2691e;
    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, #5c3317, #8b4513);
    color: #fff8f0;
    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: #d2691e;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ffe8d6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d2691e;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 248, 240, 0.2);
    color: #d2691e;
}

@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;
    }
}

