/*
Theme Name: Dmila Mahl
Theme URI: https://dmila-mahl.de
Author: Liudmila Petrova
Description: Легкая, быстрая тема для кулинарного сайта с интеграцией калькулятора.
Version: 1.0
Text Domain: dmila-mahl
*/

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #222;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #2c3e2f;
    color: white;
    padding: 20px 0;
    text-align: center;
}

h1, h2, h3 {
    font-weight: normal;
}

.rezepte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

article {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

article:hover {
    transform: translateY(-3px);
}

article img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

article h2 {
    padding: 15px 15px 5px;
    margin: 0;
    font-size: 1.4rem;
}

article a {
    text-decoration: none;
    color: #2c3e2f;
}

.naehrwerte-hinweis {
    background: #f0f0f0;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    color: #555;
}