/*
Theme Name: SpiceBlendCalculator
Theme URI: https://spiceblendcalculator.com/
Author: Cedrick Reese
Description: Warm, bold theme for the Spice Blend Calculator — blend boldly with online spice tools!
Version: 1.0
License: GNU GPL v2 or later
Text Domain: spiceblendcalculator
*/

/* --- Main Styles --- */
body {
  background: #FFF7EC;
  font-family: 'Lato', Arial, sans-serif;
  color: #45220F;
  margin: 0;
  padding: 0;
}

a {
  color: #F7A53A;
  text-decoration: none;
}
a:hover { text-decoration: underline; }

.wrapper {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px 16px 16px;
  box-sizing: border-box;
}
.content {
  flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: 8px;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 2px 16px rgba(123, 63, 25, 0.09);
}

.sidebar {
  flex: 0 0 300px;
  margin-left: 28px;
  background: #F6C869;
  border-radius: 8px;
  padding: 24px 18px;
  box-shadow: 0 2px 12px rgba(123, 63, 25, 0.07);
}

header {
  background: #F7A53A;
  color: #45220F;
  border-bottom: 4px solid #7B3F19;
}

.site-title {
  font-family: 'Playfair Display', 'Merriweather', serif;
  font-size: 2.1rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #7B3F19;
  margin-bottom: 4px;
}

.site-description {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.08rem;
  color: #45220F;
  margin-bottom: 12px;
}

nav {
  display: flex;
  gap: 2rem;
  font-size: 1.08rem;
  padding-bottom: 10px;
}

footer {
  margin-top: 40px;
  background: #F7A53A;
  color: #45220F;
  text-align: center;
  padding: 22px 8px 12px 8px;
  border-top: 3px solid #7B3F19;
  font-size: 1.02rem;
  border-radius: 0 0 12px 12px;
}

.widget, .sidebar > div {
  background: #FFF7EC;
  border: 1.5px solid #F7A53A;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 16px 13px 11px 13px;
  box-shadow: 0 2px 8px rgba(246,200,105, 0.13);
}

.widget-title {
  color: #7B3F19;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.14rem;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

@media (max-width: 900px) {
  .wrapper { flex-direction: column; }
  .sidebar { margin: 32px 0 0 0; }
}

@media (max-width: 600px) {
  .wrapper { padding: 0 2px; }
  .content, .sidebar { padding: 14px 8px; border-radius: 0; }
  .site-title { font-size: 1.2rem; }
  nav { gap: 1rem; }
}

