/* =============================
   FOOTER.CSS - Save as: static/css/footer.css
============================= */

/* =============================
   Footer Section
============================= */
.footer-section {
  background-color: rgb(13, 64, 8);
  color: rgb(254, 234, 165);
  padding: 50px 0 0 0;
  margin-top: 50px;
  width: 100%;
}

.footer-content {
  padding-bottom: 30px;
}

.footer-block {
  padding: 15px;
}

.footer-block h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: rgb(254, 234, 165);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-block p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(254, 234, 165, 0.9);
}

/* =============================
   Footer Links
============================= */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgb(254, 234, 165);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

/* =============================
   Footer Contact
============================= */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 12px;
  font-size: 15px;
  color: rgba(254, 234, 165, 0.9);
}

/* =============================
   Footer QR Code
============================= */
.footer-qr {
  text-align: center;
}

.footer-qr img {
  max-width: 150px;
  border-radius: 10px;
  margin: 0 auto 15px;
  background-color: #fff;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-qr p {
  font-size: 13px;
  margin-top: 10px;
  color: rgba(254, 234, 165, 0.9);
}

/* =============================
   Footer Bottom
============================= */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(254, 234, 165, 0.3);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(254, 234, 165, 0.8);
}

/* =============================
   Responsive Design
============================= */
@media (max-width: 768px) {
  .footer-section {
    padding: 40px 0 0 0;
    margin-top: 40px;
  }

  .footer-block {
    text-align: center;
  }

  .footer-block h3 {
    font-size: 20px;
  }

  .footer-links a:hover {
    transform: none;
  }
  
  .footer-qr img {
    max-width: 120px;
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding: 30px 0 0 0;
    margin-top: 30px;
  }

  .footer-block h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-block p {
    font-size: 13px;
  }

  .footer-links a,
  .footer-contact li {
    font-size: 14px;
  }

  .footer-bottom p {
    font-size: 12px;
    padding: 0 10px;
  }
}