* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.6;
    color: #212121;
    background: linear-gradient(135deg, #fafafa 0%, #eeeeee 50%, #e0e0e0 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: linear-gradient(to right, #424242 0%, #212121 100%);
    padding: 1.2rem 0;
    box-shadow: 0 2px 12px rgba(66, 66, 66, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: white;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #fafafa;
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #fff;
}

.hero {
    background: linear-gradient(135deg, #616161 0%, #424242 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    border-bottom: 1px solid #212121;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 200;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 14px 40px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 300;
    font-size: 1rem;
    transition: all 0.3s;
    border: 1px solid white;
    letter-spacing: 2px;
}

.cta-button:hover {
    background: white;
    color: #424242;
}

.recipes-section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    color: #424242;
    font-weight: 200;
    letter-spacing: 3px;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.recipe-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(66, 66, 66, 0.15);
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
    cursor: pointer;
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(66, 66, 66, 0.2);
}

.recipe-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.recipe-content {
    padding: 2rem;
}

.recipe-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #424242;
    font-weight: 400;
}

.recipe-content p {
    color: #616161;
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.recipe-meta {
    display: flex;
    gap: 2rem;
    color: #757575;
    font-weight: 300;
    font-size: 0.9rem;
}

.view-recipe-btn {
    margin-top: 1.2rem;
    padding: 10px 28px;
    background: transparent;
    color: #424242;
    border: 1px solid #424242;
    border-radius: 0;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.view-recipe-btn:hover {
    background: #424242;
    color: white;
}

.recipe-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background: #fafafa;
    border-radius: 0;
    margin-top: 0;
}

.recipe-details.active {
    max-height: 2000px;
    transition: max-height 0.8s ease-in;
    padding: 2rem;
    margin-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.recipe-section {
    margin-bottom: 1.5rem;
}

.recipe-section h4 {
    color: #424242;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.recipe-section ul, .recipe-section ol {
    padding-left: 1.5rem;
    color: #616161;
}

.recipe-section li {
    margin-bottom: 0.8rem;
    font-weight: 300;
}

footer {
    background: linear-gradient(to right, #424242 0%, #212121 100%);
    color: #fafafa;
    padding: 3rem 20px 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: white;
    font-weight: 300;
    letter-spacing: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 300;
}

.footer-section a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(250, 250, 250, 0.2);
    font-weight: 300;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .recipe-grid {
        grid-template-columns: 1fr;
    }
}

