/* Carla Kay Design System — Redwood City Kitchen Garden Edition */

:root {
  --bg: #1a1a2e;
  --text: #e8e8e8;
  --accent: #d4a574;
  --highlight: #8b5a3c;
  --card-bg: rgba(139, 90, 60, 0.08);
  --border-radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', 'Palatino Linotype', serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

h1 {
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2 {
  font-size: 1.8rem;
  color: var(--highlight);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.4rem;
  color: var(--accent);
  margin-top: 2rem;
}

p {
  font-size: 1.15rem;
  margin-bottom: 1.4rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dotted var(--highlight);
  transition: all 0.2s ease;
}

a:hover {
  background: rgba(212, 165, 116, 0.2);
  border-bottom-style: solid;
}

.highlight {
  background: rgba(212, 165, 116, 0.15);
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
}

.recipe-box {
  background: rgba(139, 90, 60, 0.1);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
}

.photo-frame {
  border: 3px solid var(--accent);
  padding: 1rem;
  margin: 2rem 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
}

.photo-frame img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  margin: 0 auto;
}

.signature {
  font-family: 'Brush Script MT', 'Lucida Calligraphy', cursive;
  font-size: 1.8rem;
  color: var(--accent);
  margin-top: 3rem;
  text-align: right;
}

.nav-links {
  text-align: center;
  margin: 2rem 0;
  padding: 1rem;
  background: rgba(139, 90, 60, 0.05);
  border-radius: var(--border-radius);
}

@media (max-width: 600px) {
  body {
    padding: 2rem 1.5rem;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
}
