
/* 
.footer {
  position: relative;
  background: url('/images/footer_image.jpg') no-repeat center center/cover;
  padding: 60px 20px;
  color: white;
  overflow: hidden;
}

Dark overlay like your screenshot 
.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 20, 40, 0.85); /* dark blue shade 
  z-index: 1;
}

/* Content above overlay 
.footer-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Columns 
.footer-col {
  flex: 1;
}

/* Center column styling 
.footer-col.center h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-col h3 {
  margin-bottom: 10px;
}

/* Links 
.footer a {
  color: #00aaff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Tablet 
@media (min-width: 600px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop 
@media (min-width: 992px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

*/


/* body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
} */

/* FOOTER */
.footer {
  position: relative;
  background: url('/images/footer_image.jpg') no-repeat center center/cover;
  padding: 60px 20px;
  color: #fff;
}

/* DARK OVERLAY */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 50, 0.9);  /*dark blue overlay */
}

/* CONTENT */
.footer-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  text-align: center;
}

/* COLUMNS */
.footer-col {
  flex: 1;
}

/* HEADINGS */
.footer h2, .footer h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
}

.footer h2 {
  font-size: 28px;
}

.footer h3 {
  font-size: 22px;
}

/* TEXT */
.footer p {
  font-size: 14px;
  line-height: 1.7;
  margin: 5px 0;
}

/* LINKS */
.footer a {
  color: #00aaff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer {
    padding: 40px 15px;
  }

  .footer h2 {
    font-size: 24px;
  }

  .footer h3 {
    font-size: 20px;
  }
}