/* WINK Footer Specific Styles */

/* Main Footer Container */
.wink-site-footer {
  background: #333;
  width: 100%;
  color: #fff;
  padding: 0;
  margin: 0;
}

/* Top Footer Section */
.wink-footer-top {
  padding: 40px 0;
}

/* Footer Grid Container */
.wink-footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-width: 100%;
}

/* Footer Column */
.wink-footer-section {
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

/* Section Heading */
.wink-footer-title {
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  margin: 0 0 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* List Container */
.wink-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* List Item */
.wink-nav-item {
  margin: 0 0 8px 0;
  display: block;
}

/* Navigation Link */
.wink-nav-link {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.wink-nav-link:hover {
  color: #4571C0;
}

/* Social Media Section */
.wink-social-section {
  display: flex;
  flex-direction: column;
}

.wink-social-icons {
  display: flex;
  gap: 15px;
}

.wink-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.wink-social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.wink-social-link i {
  font-size: 20px;
}

.wink-twitter-icon {
  color: #1da1f2;
}

.wink-linkedin-icon {
  color: #0077b5;
}

.wink-youtube-icon {
  color: #ff0000;
}

/* Bottom Footer Section */
.wink-footer-bottom {
  padding: 20px 0;
  background: #262626;
  text-align: center;
}

.wink-copyright,
.wink-footer-bottom a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}

.wink-footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .wink-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .wink-social-section {
    grid-column: span 3;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .wink-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .wink-social-section {
    grid-column: span 2;
  }
  
  .wink-nav-list {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .wink-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .wink-footer-section {
    margin-bottom: 25px;
  }
  
  .wink-nav-list {
    justify-content: center;
  }
  
  .wink-nav-item {
    margin: 0 8px 8px;
  }
  
  .wink-social-section {
    align-items: center;
  }
  
  .wink-social-icons {
    justify-content: center;
  }
}