* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #e8dcc4;
    background-color: #1a1a1a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: #0a0a0a;
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #b8860b;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #d4af37;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #ffd700;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #2a2a2a 0%, #0a0a0a 100%);
    color: #e8dcc4;
    padding: 140px 20px;
    text-align: center;
    border-bottom: 5px solid #b8860b;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #c9b895;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #0a0a0a;
    padding: 18px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s;
    border: 2px solid #ffd700;
    letter-spacing: 1.5px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* Recipes Section */
.recipes-section {
    padding: 80px 20px;
    background-color: #1a1a1a;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3.5rem;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.recipe-card {
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid #3a3a3a;
}

.recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-color: #b8860b;
}

.recipe-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid #b8860b;
}

.recipe-content {
    padding: 2rem;
}

.recipe-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
    color: #d4af37;
}

.recipe-content p {
    color: #c9b895;
    margin-bottom: 1.2rem;
}

.recipe-meta {
    display: flex;
    gap: 2rem;
    color: #b8860b;
    font-weight: 600;
}

.view-recipe-btn {
    margin-top: 1.2rem;
    padding: 12px 25px;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #0a0a0a;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.view-recipe-btn:hover {
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    transform: scale(1.05);
}

.recipe-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background: #1a1a1a;
    border-radius: 8px;
    margin-top: 0;
}

.recipe-details.active {
    max-height: 2000px;
    transition: max-height 0.8s ease-in;
    padding: 2.5rem 2rem;
    margin-top: 1rem;
    border: 2px solid #3a3a3a;
}

.recipe-section {
    margin-bottom: 2rem;
}

.recipe-section:last-child {
    margin-bottom: 0;
}

.recipe-section h4 {
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.recipe-section ul, .recipe-section ol {
    padding-left: 1.8rem;
    color: #c9b895;
}

.recipe-section li {
    margin-bottom: 0.9rem;
    line-height: 1.7;
}

.recipe-card {
    cursor: pointer;
}

/* Footer */
footer {
    background: #0a0a0a;
    color: #c9b895;
    padding: 3.5rem 20px 1.5rem;
    border-top: 5px solid #b8860b;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1.2rem;
    color: #d4af37;
    font-size: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: #b8860b;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffd700;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #2a2a2a;
    color: #8b7355;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .recipe-grid {
        grid-template-columns: 1fr;
    }
}

