body,
html {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  font-size: larger;
}
/* Base Navbar Styling */
.navbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #333;
  padding: 5px 20px;
}

/* Buttons Container */
.nav-buttons {
  display: flex;
  gap: 15px; /* Space between buttons */
  padding-left: 40%; /* Push buttons to the right */
}

/* Button Styling */
.nav-btn {
  color: white;
  text-decoration: none;
  padding: 8px 15px;
  background-color: #555;
  border-radius: 5px;
  transition: background 0.3s;
}

.nav-btn:hover {
  background-color: #777;
}

/* Mobile Menu Button */
.menu-toggle {
  display: none; /* Hidden on desktop */
  font-size: 24px;
  color: white;
  cursor: pointer;
}
/* 📱 Responsive: Mobile Styles */
@media (max-width: 500px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .nav-buttons {
    flex-direction: column;
    gap: 10px;
    display: none; /* Hidden initially */
    padding-left: 0%;
  }

  .menu-toggle {
    display: block; /* Show on mobile */
  }

  /* Show menu when clicked */
  .nav-buttons.show {
    display: flex;
  }
}

/* Footer Styling */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333;
  padding: 10px 20px;
  gap: 15px;
}

/* GitHub Logo Styling */
.git-logo img {
  height: 30px; /* Adjust size as needed */
}

/* Footer Links */
.footer-link {
  color: white;
  text-decoration: none;
  padding: 8px 10px;
  background-color: #555;
  border-radius: 5px;
  transition: background 0.3s;
}

.footer-link:hover {
  background-color: #777;
}

/* 📱 Responsive: Center Everything on Mobile */
@media (max-width: 600px) {
  .footer {
    flex-direction: column;
    gap: 10px;
  }
}

.main-content {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  background-color: #5e5d5d;
  color: whitesmoke;
}

.project-image img {
  max-width: 100px;
  max-height: 200px;
  border-radius: 5%;
  margin: 10px;
}
.project-image img:hover {
  transform: scale(3) translateY(20%);
  transition: transform 0.5s;
}

.project-image {
  display: flex;
  flex-direction: row;
}

.title {
  font-size: 1.5rem;
  margin-top: 0%;
  color: blue;
}

.project-description {
  align-self: flex-start;
  margin-left: 2%;
  margin-top: 10%;
}

video {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

video:hover {
  transform: scale(1.6);
  transition: transform 0.5s;
}

/* 📱 Responsive: Center Everything on Mobile */
@media (max-width: 600px) {
  .title {
    font-size: 0.8rem;
  }

  .project-description {
    font-size: 0.8rem;
  }
}
