/* -------------------------
   Global Styles
-------------------------- */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f9cbd6;
  color: #3a3a3a;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

/* -------------------------
   Hero Section
-------------------------- */

.hero {
  background: #f9cbd6;
  padding: 3rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  color: #9e182b;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hero-text {
  max-width: 500px;
  margin: auto;
  color: #6b4b4f;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #9e182b;
  margin-bottom: 0.5rem;
}

/* -------------------------
   Layout Grid
-------------------------- */

.budget-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

/* -------------------------
   Card Style
-------------------------- */

.card {
  background: white;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card h2 {
  margin-bottom: 0.5rem;
  color: #9e182b;
}

.section-text {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: #777;
}

/* -------------------------
   Form Styling
-------------------------- */

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  color: #444;
}

input {
  width: 100%;
  padding: 0.6rem;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 0.9rem;
}

input:focus {
  outline: none;
  border-color: #f2afbc;
  box-shadow: 0 0 0 2px rgba(242, 175, 188, 0.2);
}

/* -------------------------
   Buttons
-------------------------- */

.button-group {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
}

button {
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  background: #9e182b;
  color: white;
  transition: 0.2s;
}

button:hover {
  background: #7d1322;
}

.secondary-btn {
  background: #f2afbc;
  color: #5c2e33;
}

.secondary-btn:hover {
  background: #e09aa7;
}

/* -------------------------
   Results Section
-------------------------- */

.summary-list {
  margin-top: 1rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid #eee;
}

.summary-value {
  font-weight: bold;
}

.status-box {
  margin-top: 1.5rem;
  background: #f9cbd6;
  padding: 1rem;
  border-radius: 8px;
}

.status-box h3 {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: #9e182b;
}

/* -------------------------
   Chart Placeholder
-------------------------- */

.chart-placeholder {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #f2e0d2;
  border-radius: 8px;
  text-align: center;
  font-size: 0.85rem;
  color: #6b6b6b;
}

/* -------------------------
   Responsive Layout
-------------------------- */

@media (max-width: 800px) {
  .budget-grid {
    grid-template-columns: 1fr;
  }
}
