/* Import Open Dyslexic font */
@font-face {
  font-family: 'OpenDyslexic';
  src: url('https://cdn.jsdelivr.net/gh/antijingoist/open-dyslexic/Fonts/OpenDyslexic-Regular.otf') format('opentype');
}

body {
  margin: 0;
  font-family: 'OpenDyslexic', sans-serif;
  background-color: #121212;
  color: #f0f0f0;
  position: relative;
  min-height: 100vh;
}

#vanta-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
}

header .logo {
  height: 40px;
  width: auto;
}

nav a {
  color: #f0f0f0;
  margin-left: 1rem;
  text-decoration: none;
}

main {
  padding: 1rem;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  bottom: 0;
  width: 100%;
}

.recipe {
  border: 1px solid #333;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
}

.recipe h2 {
  margin-top: 0;
}

.recipe img.recipe-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.recipe .ingredients {
  margin-bottom: 0.5rem;
}

.ingredient-group {
  border: 1px dashed #555;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}

.ingredient-group h4 {
  margin: 0.5rem 0;
}

.ingredient-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.ingredient-row input {
  padding: 0.3rem;
  border: 1px solid #333;
  background-color: #222;
  color: #f0f0f0;
}

.multiplier-controls {
  margin-top: 0.5rem;
}

.multiplier-controls button {
  margin-right: 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

#admin-form div {
  margin-bottom: 1rem;
}

#admin-form label {
  display: block;
  margin-bottom: 0.5rem;
}

#admin-form input[type="text"],
#admin-form textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #333;
  background-color: #222;
  color: #f0f0f0;
}

#existing-recipes .admin-recipe {
  border: 1px solid #333;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
}

.admin-recipe button {
  margin-right: 0.5rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
}