/* Footer Styling */
.footer {
    background-color: #000000;
    padding: 20px 15px;
    font-family: "IBM Plex Sans", serif;
}
  
/* Footer Container */
.footer-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

/* Footer Section */
.footer-section {
    flex: 1;
    text-align: center;
    margin-bottom: 20px;
}
    
/* Footer Section Headers */
.footer-section h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
    color: #FEFCFB;
}
    
/* Footer Text & Links */
.footer-section p,
.footer-section a {
    margin: 3px 0;
    font-size: 0.95em;
    color: #fff;
    text-decoration: none;
    font-weight: 100;
}
    
/* Ensure clickable area is limited to text */
.footer-section a {
    display: inline-block;
    padding: 2px 0;
}

/* Salon Info - Aligns content to the left */
.salon-info h3,
.salon-info p {
    text-align: left;
    color: #FEFCFB;
    font-weight: bold;
}

/* Salon Info Links */
.salon-info a { 
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

/* Socials */
.follow-us {
  text-align: center;
  font-size: 1.2em;
}
 
/* Social Icons - Flexbox for alignment */
  .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Social Media Icons */
.social-icons a,
.dev-social-icons a {
  font-size: 1.5em;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
  
/* Copyright Text */
.follow-us p{
  font-size: small;
  padding-top: 05px;
  text-align: center;
  color: #FEFCFB;
  font-weight: bold;
}

/* Developed By Section */
.developed-by {
  text-align: center; 
}

.developed-by h3{
  text-align: right; /* Align right for larger screens */
  text-decoration: none;  
}

/* Developer Social Icons */
.dev-social-icons{
  justify-content: end;
  display: flex;
  gap: 15px;
  margin: 10px 0;
}
  
/* Link Hover Effect */
.footer-section a:hover {
  color: #3498db; /* color for hover */
  transition: background 0.3s;
}
  
/* Social Icon Hover Effect */
.social-icons a:hover{
  color: #3498db;
  transition: background 0.3s;
}
 
/* Developer Link Hover Effect */
.developed-by a:hover {
  color: #3498db; 
  text-decoration: underline; 
  transform: translateZ(0); /* Forces hardware acceleration for rendering */
  transition: background 0.3s;
}
  
  
/* Responsive layout  */
@media (max-width: 768px) {
    .footer-container {
      display: block;
    }

    .salon-info h3, 
    .salon-info p,
    .follow-us p,
    .developed-by h3{
      text-align: center;
    }
   
    .dev-social-icons {
      justify-content: center;
    }
  }