/* === Footer Styles === */

.custom-footer {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url('images/wheat field.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Container for columns */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
}

/* Each column */
.footer-column {
  flex: 1;
  min-width: 200px;
}

/* Column headers */
.footer-column h4 {
  margin-bottom: 10px;
  font-weight: bold;
}

/* Text and links inside columns */
.footer-column a,
.footer-column p {
  color: #ddd;
  text-decoration: none;
  margin: 4px 0;
  display: block;
}

/* Hover effect for links */
.footer-column a:hover {
  text-decoration: underline;
  color: #ffcc00;
}

/* Bottom row (copyright/socials) */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
