/* Sticky Contact Bar at the Top */
.top-contact-bar {
  background-color: #f1f1f1;
  padding: 5px;
  text-align: center;
  font-family: Arial, sans-serif;
  z-index: 1000; /* Ensure it stays on top of everything */
  position: fixed; /* Fixed position to make it sticky */
  top: 0; /* Stick to the top of the page */
  width: 100%; /* Full width across the page */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add a slight shadow to separate it from the content */
}

.top-contact-bar a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.top-contact-bar a i {
  margin-right: 5px;
  font-size: 16px;
}

.top-contact-bar a:hover {
  color: #007BFF; /* Change color on hover */
}

.top-contact-bar i {
  vertical-align: middle;
}

.top-contact-bar span {
  margin-left: 5px;
}

/* Prevent Overlap with Logo */
header {
  margin-top: 80px; /* Adjust as needed to push the header down */
}

/* Responsive - Mobile View */
@media screen and (max-width: 768px) {
  .top-contact-bar a span {
    display: none; /* Hide platform names on smaller screens */
  }

  .top-contact-bar a i {
    margin-right: 0;
    font-size: 20px; /* Increase icon size for mobile */
  }

  .top-contact-bar a {
    margin: 0 10px;
  }
}

/* Additional adjustments for very small screens */
@media screen and (max-width: 480px) {
  .top-contact-bar {
    padding: 8px;
    font-size: 12px; /* Smaller text size */
  }

  header {
    margin-top:60px; /* Adjust if necessary */
  }
}
