/* Header */
header {
  font-weight: 700;
  background-color: #232323;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  padding: 1.7rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}

.header-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.socials a {
  color: #d1d1d1;
  transition: color 100ms;
}

.socials a:hover {
  color: #ffffff;
}

.nav-open-btn {
  display: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.nav-close-btn {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 3rem;
}

.nav-mobile {
  padding: 1.7rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position:absolute;
  top: 0;
  left: -200px;
  min-height: 100vh;
  color: #ffffff;
  background-color: #232323;
  transition: left 200ms;
}

.nav-mobile p {
  margin-bottom: 1rem;
}

#nav-close-btn {
  margin-bottom: 2rem;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.links {
  color: #d1d1d1;
  transition: color 200ms, text-decoration 200ms;
}

.links:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
  text-decoration-thickness: 0.1rem;
}

.shop-btn {
  padding: 0.1rem 1rem;
  border-radius: 0.3rem;
  background-color: #ffffff;
  color: #232323;
  font-weight: 700;
  grid-column: 12 / span 1;
  transition: transform 100ms;
}

.shop-btn:hover {
  transform: scale(1.03);
}

@media (max-width: 960px) {
  .nav-desktop,
  .socials-desktop {
    display: none;
  }

  .nav-open-btn {
    display: block;
  }

}

/* Main */
main {
  margin-top: 75px;
}
.landing-logo {
  display: block;
  max-width: 80%;
  margin: 0 auto 50px auto;
}

/* About Section */
#about {
  max-width: 1200px;
  margin: 0 auto 50px auto;
  padding: 0 20px;
}

#about  h2 {
  text-align: center;
  margin-bottom: 50px;
}

#about span {
  font-weight: bold;
  font-style: italic;
}

.about-content {
  line-height: 2;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.about-content p {
  margin-bottom: 40px;
}

.owners {
  max-width: 40%;
  margin-left: 20px;
}

.btn {
  background-color: #232323;
  color: #ffffff;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
}

/* Games Section */
#games {
  background-color: #232323;
  color: #d1d1d1;
  padding: 30px 0;
  text-align: center;
}

#games a {
  max-width: 300px;
  margin: 20px 30px;
}

.games-list {
  max-width: 1200px;
  margin:0 auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.game-logo {
  max-width: 100%;
  margin: 10px 20px;
  transition: transform 200ms linear;
}

.game-logo:hover {
  transform: scale(1.1);
  cursor: pointer;
}

/* Events Section */
#events {
  max-width: 1000px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.event-calendar {
  max-width: 90%;
}

/* Footer */
footer {
  padding: 20px;
  background-color: #232323;
  color: #ffffff;
  line-height: 2;
  font-size: 0.9rem;
}

.footer-logo {
  max-width: 100%;
}

.top-section {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-bottom: 30px;
}

.contacts > p:nth-child(1) {
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: underline;
}

.bottom-section {
  font-size: 0.8rem;
  text-align: center;
}