/* Resets margin and padding for all elements */
* {
  margin:0px;
  padding:0px;
}

/* Smooth scrolling behavior for the whole page */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 65px;

    /*scroll bar design vertical.*/
    scrollbar-width: thin; /* Can be "auto", "thin", or "none" */
    scrollbar-color: #555 #333; /* Thumb and track color */
}

/*General styling for body*/
body {
    margin: 0;
    padding: 0;
    background-color: #000000;
}

#top-page-skills{
  font-size: 65px;
  color: #F5F5F7;
}

.bg-custom{
  /*CSS rule for the custom background color TAILWIND*/
  background-color: #000000;
}

.projects{
  background-color: #101010;
  padding-bottom: 15px;
}

#top-page-projects{
  font-size: 65px;
  color: #F5F5F7;
  text-align: center;
  padding: 20px 0 5px 0;
}

/* Footer Styling */
footer {
  margin-top: 15px;
  text-align: center;
  color: #F5F5F7;
  background-color: #222222;
  padding: 25px 15px;
  font-size: 0.9em;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  width: 60px;
  margin: auto;
  padding-bottom: 10px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 15px 0;
}

.footer-links a {
  color: #F5F5F7;
  text-decoration: underline;
  transition: opacity 0.3s ease;
  position: relative;
  padding: 0 10px;
}

.footer-links a:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: -10px;
  color: #F5F5F7;
  text-decoration: none;
}

.footer-links a:hover {
  opacity: 0.7;
}

/* Mobile Responsiveness */
@media screen and (max-width: 600px) {
  footer {
    font-size: 0.8em;
    padding: 20px 10px;
  }
  
  .footer-links {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .footer-logo {
    width: 50px;
    padding-bottom: 10px;
  }
  
  .footer-links a {
    padding: 0 8px;
  }
  
  .footer-links a:not(:last-child)::after {
    right: -8px;
  }
}

.useless-button {
  margin-top: 15px;
  padding: 8px 16px;
  background-color: #333;
  color: #F5F5F7;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.useless-button:hover {
  background-color: #444;
  transform: scale(1.05);
}

.useless-button:active {
  transform: scale(0.95);
}