/* Gauteng DJ - 980px Footer */
.gautengdj-footer 					 	 	{width: 				980px;
  															 max-width: 		100%;
  															 margin: 				20px auto 1;
  															 box-sizing: 		border-box;
  															 background: 		#656156;	 		 	 								/*171717*/
  															 color: 				#fff;
  															 font-family: 	Arial, Helvetica, sans-serif;
  															 border-top: 		4px solid #d4af37;}

.footer-inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap; /* prevents line breaks */
}

.gautengdj-footer * 						{box-sizing: 		border-box;}

.footer-content {
  display: grid;
  grid-template-columns: 150px 1.15fr 1fr 1.15fr;
  gap: 25px;
  padding: 35px 30px;
}

.footer-photo {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.footer-photo img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 2px solid #d4af37;
  border-radius: 5px;
  display: block;
}

.footer-column {
  border-left: 1px solid #444;
  padding-left: 25px;
}

.footer-column h3 {
  margin: 0 0 16px;
  color: #d4af37;
  font-size: 18px;
  letter-spacing: 1px;
}

.footer-column p {
  margin: 7px 0;
  color: #e9e9e9;
  font-size: 13px;
  line-height: 1.6;
}

.footer-highlight {
  font-weight: bold;
  font-size: 14px !important;
}

.registered {
  color: #d4af37 !important;
  font-weight: bold;
  margin-top: 18px !important;
}

.footer-column a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  margin: 9px 0;
}

.footer-column a:hover {
  color: #d4af37;
}

.footer-column .website {
  color: #d4af37;
  font-weight: bold;
  margin-top: 15px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-weight: bold;
  font-size: 17px;
  margin: 0;
}

.footer-social a:hover {
  background: #d4af37;
  color: #171717;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding: 15px 10px;
  text-align: center;
  color: #ccc;
  font-size: 12px;
}

@media (max-width: 760px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column {
    border-left: 0;
    border-top: 1px solid #444;
    padding: 22px 0 0;
  }

  .footer-photo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}
