/* General Footer */
#footer {
  width: 100%;
  background-color: #1f2937; /* dark gray */
  color: #f9fafb; /* light text */
  font-family: 'Arial', sans-serif;
}

/* Top section: Links + About */
#container-1 {
  display: flex;
  flex-wrap: wrap; /* responsive */
  justify-content: space-between;
  padding: 40px 10%;
  align-items: center;
}

/* Links */
#links {
  flex: 1 1 250px; /* grow, shrink, min width */
  margin-right: 20px;
}

#links h3 {
  margin-bottom: 15px;
}

#links ul {
  list-style: none;
  padding: 0;
}

#links li {
  margin-bottom: 10px;
}

.link-footer {
  color: #f9fafb;
  text-decoration: none;
  transition: color 0.3s;
}

.link-footer:hover {
  color: #3b82f6; /* blue on hover */
}

/* About section */
#information {
  flex: 1 1 250px;
}

#information h3 {
  margin-bottom: 15px;
}

#information p {
  margin-bottom: 15px;
  line-height: 1.5;
}

#information img {
  width: 140px;
  height: 130px;
  border-radius: 50%;
  display: block;
  margin-top: 10px;
}

/* Bottom section: Disclaimer */
#container-2 {
  background-color: #111827; /* darker shade */
  text-align: center;
  padding: 15px 10%;
  font-size: 14px;
}

#disclaimer {
  margin: 0;
}

.experience{
  color: yellow;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: larger;
  font-weight: 600;
  line-height: 15px;
}

.experience:hover{
  color: red;
  padding: 10px;
}

/* Footer Layout Fix */
#container-1 {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

/* Left Links */
#links {
  flex: 1;
}

#links ul {
  padding: 0;
}

#links ul li {
  list-style: none;
  margin-bottom: 8px;
}

/* About Section */
#information {
  flex: 1;
  max-width: 400px;
}

#information p {
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Social Icons - MAIN FIX */
.social-icons {
  display: flex;
  gap: 20px; /* spacing between icons */
  margin-top: 10px;
}

.social-icons a {
  font-size: 28px; /* bigger size */
  color: #ffffff;
  transition: 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* Brand Colors on Hover (professional touch) */
.social-icons a:nth-child(1):hover {
  color: #E1306C; /* Instagram */
}

.social-icons a:nth-child(2):hover {
  color: #1877F2; /* Facebook */
}

.social-icons a:nth-child(3):hover {
  color: #FF0000; /* YouTube */
}

/* Bottom bar fix */
#container-2 {
  margin-top: 30px;
  text-align: center;
}