/* Header container */
.NavBar {
  background-color: #ed1b24;   /* HEADER BACKGROUND */
  padding: 10px 40px;      /* space inside header */
}

/* Flex layout for header (logo left, nav right) */
.headerhome-1 .row-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;  /* pushes logo left & nav right */
  gap: 40px;
}

/* Logo */
.logo-container img {
  width: 180px;        /* adjust as needed */
  height: auto;
  display: block;
}

/* Navigation list */
.rowhome {
  list-style: none;    /* remove bullets */
  display: flex;
  gap: 40px;           /* spacing between links */
  margin: 0;
  padding: 0;
}

/* Individual links */
.rowhome a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s ease;
}

.rowhome a:hover {
  opacity: 0.7;
}

/* Remove weird <p> spacing inside links */
.size-texts {
  margin: 0;
  padding: 0;
}

/* Responsive on mobile */
@media (max-width: 768px) {
  .headerhome-1 .row-1 {
    flex-direction: column;
    gap: 20px;
  }

  .rowhome {
    flex-direction: column;
    gap: 15px;
  }

  .logo-container img {
    width: 150px;
  }
}

.headerhome-1 {
  position: relative; /* anchor for absolute positioning */
}

/* Bottom-right attributions link */
.navbar-attributions {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 0.8rem;
  color: white;
  opacity: 0.75;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.navbar-attributions:hover {
  opacity: 1;
  text-decoration: underline;
}

