/* style.css - Warm Food Blog Theme for recipesquestions.com */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap');

:root {
    --bg-main: #fffdfa; /* Warm Cream */
    --bg-card: #ffffff;
    --primary: #ea580c; /* Terracotta Orange */
    --secondary: #ca8a04; /* Honey Gold */
    --border-color: rgba(234, 88, 12, 0.08);
    --text-main: #292524; /* Warm Slate */
    --text-muted: #78716c;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.5rem 2rem;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--secondary);
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.container { max-width: 1200px; margin: 4rem auto; padding: 0 1.5rem; }

.hero {
    text-align: center;
    padding: 6rem 2rem;
    background: radial-gradient(circle at 50% 50%, rgba(234, 88, 12, 0.06) 0%, transparent 60%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    margin-bottom: 4rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero h1 span {
    color: var(--secondary);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

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

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(234, 88, 12, 0.02);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: 0 15px 35px rgba(234, 88, 12, 0.06);
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(234, 88, 12, 0.1);
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #c2410c;
    transform: translateY(-1px);
}

footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    background: #ffffff;
    margin-top: 6rem;
}
