/* Modern light theme inspired by stango-cuisine-87daa9.webflow.io */
:root {
  --color-bg: #fff;
  --color-text: #181818;
  --color-accent: #f7c948;
  --color-accent-dark: #e6b800;
  --color-primary: #181818;
  --color-secondary: #f7c948;
  --color-muted: #f5f5f5;
  --color-border: #ececec;
  --font-heading: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Inter', 'Arial', sans-serif;
}
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 0;
}
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--color-accent-dark);
}
.button, button, input[type="submit"] {
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  border-radius: 32px;
  padding: 0.75em 2em;
  font-size: 1.1em;
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s, color 0.2s;
}
.button:hover, button:hover, input[type="submit"]:hover {
  background: var(--color-accent-dark);
  color: #fff;
}
nav {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 1em 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
footer {
  background: var(--color-muted);
  color: var(--color-primary);
  padding: 2em 0 1em 0;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 1em;
}
section {
  padding: 3em 0;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5em;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 2em;
  margin-bottom: 2em;
}
img {
  max-width: 100%;
  border-radius: 12px;
  display: block;
}
