/* Stedfast Baptist Church Building Fund Styles */

/* Custom styles to complement Tailwind CSS */

body {
  font-family: "Inter", sans-serif;
  background-color: #f8f9fa;
  color: #343a40;
}

/* Hero section with local background image */
.hero-section {
  background-image: url('./img/stedfast.webp');
  background-size: cover;
  background-position: top !important;
  background-repeat: no-repeat;
}

/* Animation for number counters */
.numbers {
  transition: all 0.3s ease;
}

/* Custom button hover effects */
.btn-primary {
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Custom styles for donation buttons */
.donate-btn {
  transition: all 0.3s ease;
}

.donate-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.numbers {
  color: #d12222;
  font-weight: bold;
  font-size: 1.5em;
}

/* Responsive text adjustments */
@media (max-width: 768px) {
  .hero-section h2 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }
}

/* Custom card hover effects */
.impact-card {
  transition: all 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.container {
  display: block;
}

.calculator-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}
h1 {
  font-size: 28px;
  margin-bottom: 20px;
}
.goal-info {
  font-size: 16px;
  margin-bottom: 20px;
  color: #7f8c8d;
}
.progress-container {
  margin: 20px 0;
}
.progress-bar {
  width: 100%;
  background-color: #ecf0f1;
  border-radius: 5px;
  overflow: hidden;
  height: 20px;
  display: flex;
}
.progress-segment {
  height: 100%;
  transition: width 0.5s ease;
}
.progress-text {
  font-size: 14px;
  margin-top: 10px;
  color: #2c3e50;
}
.input-container {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
input[type="number"] {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #bdc3c7;
  border-radius: 5px;
  width: 150px;
}
button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #3498db;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
button:hover {
  background-color: #2980b9;
}
.history {
  margin-top: 20px;
  text-align: left;
  max-height: 150px;
  overflow-y: auto;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 5px;
}
.history p {
  margin: 5px 0;
  font-size: 14px;
  color: #7f8c8d;
  display: flex;
  align-items: center;
}
.color-swatch {
  width: 15px;
  height: 15px;
  margin-right: 10px;
  border: 1px solid #ddd;
  display: inline-block;
}
.chart-container {
  margin-top: 20px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .calculator-container {
    padding: 15px;
  }
  h1 {
    font-size: 20px;
  }
  .input-container {
    flex-direction: column;
  }
  input[type="number"],
  button {
    width: 100%;
  }
}
