/* Footer */
.footer {
    color: var(--default-color);
    font-size: 14px;
    position: relative;
    background-image: url('../pics/Info\ Footer\ \ \(2\)[1].png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    font-family: "Manrope", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    height: 850px;
    font-style: normal;
    color: white;
}


.fot-btn {
    transition: background-color 0.3s ease;
    /* Smooth transition */
    background-color: var(--accent-color);
    color: #fdfdfd;
    padding: 1rem 2rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
    text-decoration: none;
}

.fot-btn:hover {
    background-color: black !important;
    /* Change to black on hover */
    color: white;
    /* Optional: change text color to white on hover */
}

.footer .footer-about .logo img {
    max-height: 200px;
    margin-left: 70px;
    margin-top: -20px;
    width: 250px;

}

.footer-contact {
    margin-top: -40px;
}

.footer .footer-about p {
    font-size: 16px;
    margin-left: 70px;
    color: white;
}

.footer .social-links a {
    padding: 20px;
    padding-top: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, white, transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, white, transparent 20%);
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 21px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    margin-top: 60px;

}

.footer .footer-links {
    margin-bottom: 30px;
    margin-left: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;

    margin: 0;

}

.footer .footer-links ul li a {
    padding: 10px 0;
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    color: white;
}

.footer .footer-contact p {
    margin-bottom: 5px;

}

.footer .copyright-text p {
    padding: 25px 0;
    padding-top: 150px;
    text-align: center;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    color: rgb(255, 255, 255);

}

.footer .credits {
    margin-top: 8px;
    font-size: 13px;

}

.contact-footer-links {
    margin-left: 80px;
}

.footer-contact,
footer .footer-links ul li a:hover {
    color: var(--accent-color);
}

.contact-footer-links a {
    color: #ffffff;

    text-decoration: none;
}

.contact-footer-links h4 {
    color: #ffffff;

    text-decoration: none;
}

/* Mobile adjustments (everything left aligned) */
@media (max-width: 768px) {
    .footer {
      height: auto;
      padding: 20px 10px;
      text-align: left; /* Changed to left alignment */
      background-position: center;
    }
    
    .footer .footer-about .logo img {
      max-height: 150px;
      width: 200px;
      margin-left: 50px; /* Reduced left margin */
      margin-top: -20px;
      display: block;
    }
    
    .footer .footer-about p {
      margin: 0 10px 10px 10px; /* Consistent left margin */
      font-size: 14px;
      max-width: 90%;
      text-align: left;
    }
    
    .footer-contact {
      margin-top: 20px;
      text-align: left;
    }
    
    .footer .footer-links {
      margin: 20px 10px;
      text-align: left;
    }
    
    .footer .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: left;
    }
    
    .footer .footer-links ul li {
      margin-bottom: 10px;
    }
    
    .contact-footer-links {
      margin: 20px 10px;
      text-align: left;
    }
    
    .fot-btn {
      padding: 0.8rem 1.5rem;
      font-size: 14px;
    }
    
 
    
    .footer .copyright-text p {
      padding: 20px 0;
      padding-top: 50px;
      font-size: 12px;
      text-align: center;
      border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }
    
    .footer .social-links a {
      padding: 15px;
      width: 25px;
      height: 25px;
      font-size: 14px;
    }
  }