@import "general.css";
@import "main-header.css";
@import "mousefollower.css";

/*
Museo Sans 300
font-family: "museo-sans", sans-serif;
font-weight: 300;
font-style: normal;
Museo Sans 700
font-family: "museo-sans", sans-serif;
font-weight: 700;
font-style: normal;
Museo Sans 900
font-family: "museo-sans", sans-serif;
font-weight: 900;
font-style: normal;
Museo Sans Display Light
font-family: "museo-sans-display", sans-serif;
font-weight: 400;
font-style: normal;
Museo Sans Display Black
font-family: "museo-sans-display", sans-serif;
font-weight: 800;
font-style: normal;
Museo Sans Display ExtraBlack
font-family: "museo-sans-display", sans-serif;
font-weight: 900;
font-style: normal;
*/

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 35px;
  font-weight: 700;
  font-size: 1rem;
  background-color: olive;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  select {
    padding: 28px 14px;
    font-size: 0.8rem;
  }
}

.membership-hover {
  border-color: olive;
  background-image: none;
  background-color: rgba(128, 128, 0, 0.1);
  transition: all 0.2s;
}

.container {
  max-width: var(--layout-width);
  margin: 0 auto;
  padding: 0 40px;

  @media (max-width: 767px) {
    padding: 0 20px;
  }
}

hr {
  border: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  margin: 3rem 0;
}

.secondary-nav-wrapper {
  background-color: var(--clr--second-nav-bg);
}

.membership-selected {
  transition: 0.3s all;
  background-image: none !important;
  background-color: olive !important;
  border-color: olive !important;
  color: white;
}

h1 {
  font-family: "museo-sans";
  font-weight: 900;
  font-size: 36px;
  text-transform: uppercase;

  span {
    color: var(--clr--primary);
    text-shadow: 0px 2px 2px rgba(255, 255, 255, 0.4);
  }
}

h2 {
  font-family: "museo-sans";
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;

  span {
    color: var(--clr--primary);
    text-shadow: 0px 2px 2px rgba(255, 255, 255, 0.4);
  }
}

.secondary-nav {
  max-width: var(--layout-width);
  margin: 0 auto;
  color: white;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  width: 100%;

  a {
    color: white;
    font-weight: bold;
  }

  .alert {
    text-align: center;
  }

  ul {
    display: inline-flex;
    gap: 1.5rem;
    list-style: none;

    li:nth-child(even) {
      opacity: 0.4;
      margin-left: -1rem;
      margin-right: -1rem;
      pointer-events: none;
    }

    a {
      font-size: 12px;
      text-decoration: none;
      padding-bottom: 3px;
      border-bottom: 2px solid rgba(255, 255, 255, 0.5);
      transition: 250ms border-bottom-color ease;

      &:hover {
        border-bottom-color: rgba(255, 255, 255, 1);
      }
    }
  }
}

:root {
  accent-color: olive;
}

:focus,
*:focus {
  outline: 2px solid transparent; /* Hide default outline */
}

/* Apply focus styles only when accessed by keyboard navigation */
:focus-visible,
button:focus-visible {
  outline: 2px solid olive; /* Custom focus color */
  outline-offset: 2px;
}
