/* style.css */
/*
Theme Name: GDZIENAZLOT-Theme
Theme URI: https://jakubturek.pl/
Author: Kuba Turek
Author URI: https://jakubturek.pl/
Description: Motyw WordPress dla GDZIENAZLOT.PL
Version: 1.50
*/

    body { font-family: 'Roboto', sans-serif; }
    .font-display { font-family: 'Bebas Neue', sans-serif; }

    /* custom scrollbar */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #0f0f0f; }
    ::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }

    /* hero kicker line */
    .kicker::before {
      content: '';
      display: inline-block;
      width: 18px; height: 1.5px;
      background: #e84118;
      vertical-align: middle;
      margin-right: 10px;
    }

    /* card hover — border only, no transform */
    .event-card { transition: border-color 0.2s ease; }

    /* select arrow */
    .select-wrap { position: relative; }
    .select-wrap::after {
      content: '';
      position: absolute;
      right: 12px; top: 50%;
      transform: translateY(-50%);
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 5px solid #666;
      pointer-events: none;
    }

    /* nav link */
    .nav-link { transition: color 0.15s, background 0.15s; }

    /* card image zoom */
    .card-img-wrap img { transition: transform 0.4s ease; }
    .event-card:hover .card-img-wrap img { transform: scale(1.05); }


  .num-404 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(8rem, 28vw, 18rem);
    line-height: 0.85;
    letter-spacing: 0.04em;
    background: linear-gradient(180deg, #2a2a2a 0%, #161616 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    user-select: none;
    pointer-events: none;
  }

  .accent-line {
    display: inline-block;
    width: 18px; height: 1.5px;
    background: #e84118;
    vertical-align: middle;
    margin-right: 10px;
  }

  .quick-link {
    transition: border-color 0.15s, background 0.15s, color 0.15s;
  }
  .quick-link:hover {
    border-color: rgba(255,255,255,0.18);
    background: #1e1e1e;
  }