:root {
    --warm-beige: #fdf5e6;
    --terracotta: #cc7744;
    --deep-olive: #556b2f;
    --golden-honey: #daa520;
    --soft-cream: #fffaf0;
    --dark-brown: #5d4037;
    --text-color: #4a3728;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
    background-color: var(--warm-beige);
    color: var(--text-color);
    line-height: 1.6;
}

.kitchen-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--golden-honey);
    padding-bottom: 1rem;
}

header h1 {
    font-size: 3rem;
    color: var(--dark-brown);
    margin: 0;
    font-style: italic;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--terracotta);
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-content {
    background: rgba(93, 64, 55, 0.7);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    max-width: 600px;
    border: 1px solid var(--golden-honey);
}

.hero h2 {
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.card {
    background-color: var(--soft-cream);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.recipe-teaser {
    text-align: center;
    margin-bottom: 3rem;
}

.recipe-teaser h2 {
    font-size: 2rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
}

.recipe-card {
    background-color: white;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    border-left: 8px solid var(--terracotta);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.recipe-text {
    text-align: left;
}

.recipe-text h3 {
    margin: 0 0 0.5rem 0;
    color: var(--terracotta);
}

button {
    background-color: var(--terracotta);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: background 0.3s;
    margin-top: 1rem;
}

button:hover {
    background-color: var(--dark-brown);
}

footer {
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #ddd;
}
