/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: #333; background: #fafafa; line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== HEADER ===== */
.site-header {
    background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.08);
    position: sticky; top: 0; z-index: 100;
}
.header-top {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 20px;
}
.logo { font-size: 1.6rem; font-weight: 700; color: #e67e22; }
.logo span { color: #333; }
.social-links a {
    margin-left: 10px; color: #888; font-size: .9rem; transition: color .2s;
}
.social-links a:hover { color: #e67e22; }

/* ===== NAV ===== */
nav { background: #e67e22; }
nav ul {
    max-width: 1200px; margin: 0 auto;
    display: flex; flex-wrap: wrap; justify-content: center;
}
nav li a {
    display: block; padding: 12px 18px;
    color: #fff; font-weight: 500; font-size: .95rem;
    transition: background .2s;
}
nav li a:hover, nav li a.active { background: rgba(0,0,0,.15); }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: #fff; text-align: center; padding: 60px 20px;
}
.hero h1 { font-size: 2.2rem; margin-bottom: 12px; }
.hero p { font-size: 1.1rem; max-width: 650px; margin: 0 auto; opacity: .9; }

/* ===== SECTION ===== */
.section { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
.section-title {
    font-size: 1.5rem; color: #e67e22; margin-bottom: 24px;
    border-bottom: 3px solid #e67e22; display: inline-block; padding-bottom: 6px;
}

/* ===== RECIPE CARDS ===== */
.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.recipe-card {
    background: #fff; border-radius: 10px; overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.07); transition: transform .2s, box-shadow .2s;
}
.recipe-card:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.recipe-card .card-img {
    width: 100%; height: 200px; object-fit: cover;
    background: #f0e0c8;
}
.recipe-card .card-img-placeholder {
    width: 100%; height: 200px;
    background: linear-gradient(135deg, #f6d365, #fda085);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: rgba(255,255,255,.7);
}
.card-body { padding: 16px; }
.card-category {
    font-size: .75rem; text-transform: uppercase; color: #e67e22;
    font-weight: 600; margin-bottom: 6px;
}
.card-title { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; color: #222; }
.card-meta { display: flex; gap: 14px; font-size: .8rem; color: #999; }
.card-meta span { display: flex; align-items: center; gap: 4px; }

/* ===== FOOTER ===== */
footer {
    background: #2c2c2c; color: #ccc; padding: 40px 20px 20px;
}
.footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.footer-col h3 { color: #e67e22; margin-bottom: 14px; font-size: 1rem; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: #ccc; transition: color .2s; }
.footer-col a:hover { color: #e67e22; }
.footer-bottom {
    max-width: 1200px; margin: 30px auto 0; padding-top: 20px;
    border-top: 1px solid #444; text-align: center; font-size: .85rem; color: #888;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    max-width: 900px; margin: 0 auto; padding: 40px 20px;
}
.contact-section h1 {
    font-size: 2rem; color: #e67e22; margin-bottom: 8px;
}
.contact-section .subtitle {
    color: #777; margin-bottom: 30px; font-size: 1.05rem;
}
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
    margin-bottom: 40px;
}
.contact-card {
    background: #fff; border-radius: 10px; padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.contact-card h3 { color: #e67e22; margin-bottom: 14px; font-size: 1.1rem; }
.contact-card p { margin-bottom: 8px; color: #555; font-size: .95rem; }
.contact-card .label { font-weight: 600; color: #333; }

.contact-form {
    background: #fff; border-radius: 10px; padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.contact-form h2 { color: #333; margin-bottom: 20px; font-size: 1.3rem; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; color: #444; }
.form-group input, .form-group textarea {
    width: 100%; padding: 10px 14px; border: 1px solid #ddd;
    border-radius: 6px; font-size: .95rem; font-family: inherit;
    transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: #e67e22;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
    background: #e67e22; color: #fff; border: none;
    padding: 12px 32px; border-radius: 6px; font-size: 1rem;
    font-weight: 600; cursor: pointer; transition: background .2s;
}
.btn-submit:hover { background: #d35400; }

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
    width: 100%; height: 300px; border-radius: 10px;
    background: #e8e8e8; display: flex; align-items: center;
    justify-content: center; color: #999; font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.6rem; }
    nav li a { padding: 10px 12px; font-size: .85rem; }
}
@media (max-width: 480px) {
    .recipes-grid { grid-template-columns: 1fr; }
    .header-top { flex-direction: column; gap: 8px; }
}
