 body {
      margin: 0;
      font-family: sans-serif;
    }

    nav.menu {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
      background: linear-gradient(135deg, #fceabb, #f8b500);
      flex-wrap: wrap;
    }

    .menu-left {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .menu-left img {
      height: 50px;
    }

    .menu-left h1 {
      color: #FF9800;
      font-size: 1.5rem;
      margin: 0;
    }

    .menu-links {
      display: flex;
      gap: 15px;
    }

    .menu-links a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      padding: 8px 12px;
      border-radius: 4px;
      transition: background 0.3s;
    }

    .menu-links a:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .hamburger {
      font-size: 28px;
      color: white;
      cursor: pointer;
      display: none;
    }

    /* Mobilní verze */
    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }

      .menu-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
      }

      nav.menu.show .menu-links {
        display: flex;
      }

      .menu-links a {
        padding: 10px;
        background-color: rgba(255, 255, 255, 0.05);
      }
    }

    /* Linky nahoře */
    #fgt {
      padding: 8px 20px;
      background-color: #f8b500;
    }

    #fgt a {
      color: white;
      text-decoration: none;
      margin-right: 15px;
      font-weight: bold;
    }

    #fgt a:hover {
      text-decoration: underline;
    }
      
  