
/* Default Logo Height */
.logo {
  height: 3rem; /* 48px */
}

/* Tablet Mode (max-width: 768px) */
@media (max-width: 768px) {
  .logo {
    height: 2.5rem; /* 40px for smaller screens */
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Ensures logo and menu are spaced out */
  }

  .menu {
    padding-top: 20px; /* Add extra space on top of the menu */
  }
}

.about-image {
  border-radius: 15px; /* Adjust the value to control the rounding */
}

.footer-container {
  border-top: 1px solid #2d2d2d;
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-text {
  color: #b0b0b0;
  margin-bottom: 0;
  text-align: left; /* Align text to the left */
  flex-grow: 1;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #facc15; /* Hover color for footer links */
}

.brand-link {
  color: #b0b0b0; /* Default color */
  transition: color 0.3s;
}

.brand-link:hover {
  color: #facc15; /* Brand color on hover */
}

