/* --- START LOGO --- */
.logo-menu {
  grid-row: 1 / 2;
  grid-column: 1 / 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 1728px;
  height: 80px;
  padding-top: 16px;
  margin: auto;
  margin-top: 0;
  z-index: 9999;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: height 0.3s ease;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.logo-tj {
  opacity: 1;
  transition: opacity 0.3s ease;
  padding-top: 8px; 
}

.logo-menu.scrolled {
  height: 70px;
}

.logo-menu.scrolled .logo-tj {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.logo img {
  width: 60px;
  height: auto;
  transition: width 0.3s ease;
}

.logo-menu.scrolled .logo img {
  width: 32px;
  transition: 0.3s ease;
}

.logo {
  grid-column: 1 / 4;
  grid-row: 1 / 2;
  align-self: center;
  display: flex;
  flex-direction: row;
  padding-left: 10%;
  padding-top: 8px;
  gap: 24px;
  line-height: 1.25rem;
}

.logo-name {
  font-size: 1.5rem;
  color: rgba(0, 0, 0, .7);
}

.logo-perex {
  font-size: 1.0875rem;
  color: rgba(0, 0, 0, .7);
}

.logo-menu a {
  grid-column: 3 / 4;
  align-self: center;
}
/* --- END LOGO --- */

/* --- START MENU --- */
.menu-v2_2 {
  grid-column: 3 / 5;
  grid-row: 1 / 2;
  align-self: center;
  justify-self: end;
  padding-right: 12%;
}

.menu-v2_2 ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  gap: 48px;
  padding-left: 0;
}

.menu-v2_2 a {
  color: var(--secondary-clr);
  font-weight: bold;
  text-decoration: none;
  margin: 0;
  width: fit-content;
}

@media (hover: hover) {
  .menu-v2_2 a:hover {
    color: var(--link-clr);
  }
}

#menu-reservation {
  color: var(--link-clr);
}

.only-back {
  font-size: 1rem;
}

#main-nav a {
    transition: color 0.3s ease;
}

#main-nav a.active {
    color: #4169e1;
    transition: 300ms ease;
}




/* --- START TO TOP BUTTON --- */
.to-top {
  position: fixed;
  background: none;
  border: none;
  right: 5%;
  bottom: 5%;
  width: 35px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  font-size: .75rem;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.to-top.visible {
  opacity: 1;
  visibility: visible;
}

#scroll-percentage {
  color: rgba(0, 0, 0, .33);
}

@media (hover: hover) {
  .to-top .button:hover {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
  }
}

.to-top .button:focus-visible {
  outline-offset: 10px;
}

/* --- END TO TOP BUTTON --- */









/* --- MOBILE SIZE --- */
@media (max-width: 1000px) {
  .body-no-scroll {
      overflow: hidden;
  }

  .menu-v2_2.only-back {
      top: unset;
      bottom: 14px;
      inset-block-start: unset;
  }


  .logo-menu {
    padding-top: 0;
    height: 88px;
  }

  .logo-menu.scrolled {
    height: 64px;
  }

  .menu-v2_2 {
    justify-self: end;
    padding-right: 32px;
  }

  #menu-reservation, #menu-kickoff {
    text-decoration: none !important;
    color: var(--primary-clr);
  }


  .only-back {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
    position: absolute;
    inset-block-start: 0px;
    font-size: .85rem;
  }

  .to-top {
    display: none;
  }

  .menu-v2_2 li a:active {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
  }

  .menu-v2_2 {
    position: fixed;
    bottom: 14px;
    left: 50%;
    transform: translatex(-50%);
    margin: auto;
    background-color: rgba(48, 60, 57, 0.9);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    color: white;
    border-radius: 40px;
    font-size: 1.125rem;
    line-height: 1;
    cursor: pointer;
    height: 16px;
    padding: 14px 24px;
  }

  .menu-v2_2 a {
    color: white;
    text-decoration: none;
    font-weight: 400;
  }

  .menu-v2_2 ul {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0;
    gap: 24px;
    list-style: none;
    margin: auto;
  }

  #main-nav a.active {
    color: white;
    font-weight: bold;
  }

}