/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/*
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fff5E7;
  border-bottom: 1px solid #ddd;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.hero {
  text-align: center;
  padding: 60px 20px;
}

.hero h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.hero button {
  padding: 12px 24px;
  font-size: 1em;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.illustration img {
  margin-top: 30px;
  max-width: 100%;
  height: auto;
}

.features {
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
}

.feature {
  text-align: center;
  max-width: 200px;
}

.feature img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.dashboard {
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
}

.sow-overview, .piglet-history {
  max-width: 300px;
}

.sow-overview h3, .piglet-history h3 {
  margin-bottom: 10px;
  font-size: 1.4em;
}
*/