/* Footer Base Styling */
.footer {
  background-image: url("images/bg1.png"); /* Set background image */
  background-size: cover; /* Ensures full coverage */
  background-position: center; /* Centers the background */
  background-repeat: no-repeat; /* Prevents tiling */
  background-attachment: fixed; /* ✅ Keeps image fixed while scrolling */
  padding: 40px 200px; /* Adds space inside */
  font-family: Arial, sans-serif;
  color: white; /* Adjust text color for contrast */
  position: relative;
}

/* Overlay (Optional: Adds dark tint for better readability) */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.13); /* Semi-transparent black overlay */
  z-index: 0;
}

/* Footer Container */
.footer-container {
  display: flex;
  justify-content: center; /* Aligns content to the left */
  max-width: 600px; /* Limits width */
  margin-left: 0;
  position: relative;
  z-index: 1; /* Ensures content is above the overlay */
}

/* Footer Column */
.footer-column {
  text-align: left;
  width: 100%;
}

/* Footer Headings */
.footer-column h3 {
  font-size: 16px;
  color: #f1f1f1; /* Lighter text for contrast */
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Decorative Dots */
.dots {
  color: #2b495c;
}

/* Footer Paragraphs */
.footer-column p {
  font-size: 14px;
  margin: 5px 0;
  display: flex;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* ✅ Thin, semi-transparent grey line */
  color: white;
}

/* Icons */
.fa-solid {
  margin-right: 10px;
  color: white;
}

/* Email Links */
.footer-column a {
  color: #f1f1f1;
  text-decoration: none;
}

.footer-column a:hover {
  color: red;
}

/* Remove the border from the last paragraph */
.footer-column p:last-child {
  border-bottom: none;
}

/* Footer Bottom Section */
.footer-bottom {
  background-color: #9b6437;
  text-align: left;
  padding: 20px 200px;
  color: white;
  font-size: 14px;
  margin-top: 0; /* Space between footer and bottom section */
}

/* Social Media Icons Container */
.social-icons {
  display: flex;
  justify-content: left; /* ✅ Centers icons horizontally */
  align-items: left; /* ✅ Ensures vertical alignment */
  margin-top: 15px;
  gap: 15px; /* ✅ Adds space between icons */
}

/* Social Media Icons */
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ccc;
  font-size: 20px;
  color: #ccc;
  transition: color 0.3s, background 0.3s;
  text-decoration: none;
}

/* Hover Effect */
.social-icons a:hover {
  background: rgb(255, 145, 0);
  color: white;
}
@media screen and (min-width: 50px) and (max-width: 650px) {
  .footer {
    padding: 40px 40px;
  }
  .footer-bottom {
    padding: 20px 20px;
  }
  .footer-bottom p {
    font-size: 12px;
    line-height: 1.2;
  }
}
