h1 {
  font-family: 'Tektur', cursive;
  font-size: 48px;
  text-align: center;
  color: var(--WF-Text-Main);
  margin-bottom: 16px;
}

h2 {
  font-family: 'Tektur', cursive;
  font-size: 20px;
  text-align: center;
  color: var(--WF-Text-Muted);
  margin-bottom: 12px;
}

h3 {
  font-family: 'Pacifico', cursive;
  font-size: 18px;
  text-align: center;
  color: #5FA9EE;
  margin-top: 8px;
}

.s {
  width: 100%;
  height: 36px;
  line-height: 36px;

  text-align: center;
  font-weight: 600;
  font-size: 14px;

  background: linear-gradient(
    90deg,
    var(--WF-Accent),
    #5FA9EE
  );
  color: white;

  border-radius: 10px;
  margin: 24px auto 16px;
}

.contitem {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;

  max-width: 1200px;
  margin: 0 auto 24px;
}

.item {
  width: 180px;
  padding: 12px;

  text-align: center;

  background: var(--WF-Base-900);
  border: 1px solid var(--WF-Base-700);
  border-radius: 12px;

  transition: transform 0.2s ease, border-color 0.2s ease;
}

.item:hover {
  transform: translateY(-6px);
  border-color: var(--WF-Accent);
}

.item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.item h3 {
  margin-top: 10px;
  line-height: 1.3;
  height: 2.6em;          
  overflow: hidden;
  text-align: center;
}

.contitem a {
  text-decoration: none;
  color: inherit;
}

.season-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 24px 0 32px;
}

#current-season {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: var(--WF-Text-Main);
}

.season-selector button {
    background: none;
    border: none;
    font-size: 34px;
    font-weight: 300;
    cursor: pointer;
    color: var(--WF-Accent);
    padding: 0 4px;
    transition: transform 0.15s ease, opacity 0.15s ease, color 0.15s ease;
}

.season-selector button:hover:not(:disabled) {
    transform: scale(1.25);
    color: #5FA9EE;
}

.season-selector button:disabled {
    opacity: 0.25;
    cursor: default;
}



@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  .item {
    width: 150px;
  }

  .s {
    font-size: 13px;
  }

  footer {
    margin-top: 48px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h3 {
    font-size: 16px;
  }

  .item {
    width: 130px;
  }
}