
/* === SpoonCalc Custom Styling === */

/* === Footer Styling === */
.site-footer {
  background-color: #f8f4f0;
  color: #333333;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  padding: 30px 20px;
  text-align: center;
  border-top: 2px solid #c78f5a;
}

.site-footer a {
  color: #7c4d2d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #2e2e1f;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .site-footer {
    font-size: 14px;
    padding: 20px 10px;
  }
}

/* === Header Styling === */
.site-header {
  background-color: #ffffff;
  border-bottom: 2px solid #c78f5a;
  padding: 10px 0;
  font-family: 'Nunito', sans-serif;
}

.site-branding img {
  max-height: 50px;
}

.custom-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  font-size: 16px;
}

.custom-nav a {
  color: #7c4d2d;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.custom-nav a:hover {
  color: #2e2e1f;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .custom-nav {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    font-size: 14px;
  }
}
